Original Question:
Now to the question. I've had this software idea (part of the reason i'm learning c++). It'll have checkboxes or buttons that when checked or clicked will bring out a demo video or what that function will do. There will be multiple checkboxes and/or buttons and each will show a video of what was checked or clicked will do.
Is this possible. If you need more details, please ask.
|
My interpretation of you second post:
you [can] click on a button that says 'drift 1' [...] and if [it is chosen], [the program will] form a set of codes for it.
|
My interpretation of you third post:
[Absolutely not a video editing software,][...] depending on which [demo video,] you select, it'll generate [...] code for [the video file] and [embed] it [into] the project[,] so you don't have to code [a media player or video editor].
|
Hmm, the goal of "your program" is ambiguous, but if your question was referring to:
whether or not it is possible to show a demonstration of a video
and
if it was possible load the video file into memory?
Yes that would be possible.
To show a video demonstration from your program, you will have to use some kind of media-library; a video file does not play itself.
Loading a video file into memory is more simpler. All you would need to do is read the file as binary and store it as a character array.
Since your asking this question and stated that you're learning c++ (still learning), I would recommend that you break this project into smaller modules first and learning/working with one functionality at a time.
Consider making simple individual programs that implement a single function at a time.
---
The button clicking and check boxes are another thing...