Convert video frames into ASCII images and display them like a video.
The project must be open with these files, but you can untrack them if you don't want to commit them to git.
git update-index --assume-unchanged .\.vs\Video2Acsii\v16\.suo
git update-index --assume-unchanged .\.vs\Video2Acsii\v16\Browse.VC.db
Follow the instructions from the website of the library here.
- Create a folder named
frames
in the project root directory. - Put all the video frames image files (
BMP
file format) into./frames
. - These images should be named with their index (From
0000.bmp
to9999.bmp
)
[Important!] The width of the images must be a multiple of 4. (64*40
is recommended for resolution of the images.)
- Create a folder named
audios
in the project root directory. - Put the background music WAV file into
./audios
and name withbgm.wav
.
- Change the value of
totalFrames
in line 62 ofSource.asm