├── .gitignore ├── BeatDetector ├── Detector │ ├── BeatDetector.cpp │ ├── BeatDetector.h │ ├── README.txt │ ├── TimeStamp.cpp │ ├── TimeStamp.h │ ├── beat.cpp │ ├── beat.h │ ├── beatGroup.cpp │ ├── beatGroup.h │ └── fmodex.dll └── FMOD │ ├── fmodex.dll │ ├── fmodexL.dll │ ├── fmodexL64.dll │ ├── inc │ ├── fmod.h │ ├── fmod.hpp │ ├── fmod_codec.h │ ├── fmod_dsp.h │ ├── fmod_errors.h │ ├── fmod_memoryinfo.h │ └── fmod_output.h │ └── lib │ ├── fmodex64_vc.lib │ └── fmodex_vc.lib ├── README.md ├── fmodex.dll ├── fmodex_vc.lib ├── generated.html ├── src ├── animations │ ├── CSSprop.cpp │ ├── CSSprop.h │ ├── CSSpropList.cpp │ ├── CSSpropList.h │ ├── animation.cpp │ ├── animation.h │ ├── animationCSS.cpp │ └── animationCSS.h ├── helperFunctions.cpp ├── helperFunctions.h ├── main.cpp ├── range.h ├── style.cpp ├── style.h ├── transitionSet.h ├── video.cpp ├── video.h ├── word.cpp └── word.h ├── video-generator.sln ├── video-generator.vcxproj └── video-generator.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /BeatDetector/Detector/BeatDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/BeatDetector.cpp -------------------------------------------------------------------------------- /BeatDetector/Detector/BeatDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/BeatDetector.h -------------------------------------------------------------------------------- /BeatDetector/Detector/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/README.txt -------------------------------------------------------------------------------- /BeatDetector/Detector/TimeStamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/TimeStamp.cpp -------------------------------------------------------------------------------- /BeatDetector/Detector/TimeStamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/TimeStamp.h -------------------------------------------------------------------------------- /BeatDetector/Detector/beat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BeatDetector/Detector/beat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/beat.h -------------------------------------------------------------------------------- /BeatDetector/Detector/beatGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/beatGroup.cpp -------------------------------------------------------------------------------- /BeatDetector/Detector/beatGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/beatGroup.h -------------------------------------------------------------------------------- /BeatDetector/Detector/fmodex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/Detector/fmodex.dll -------------------------------------------------------------------------------- /BeatDetector/FMOD/fmodex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/fmodex.dll -------------------------------------------------------------------------------- /BeatDetector/FMOD/fmodexL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/fmodexL.dll -------------------------------------------------------------------------------- /BeatDetector/FMOD/fmodexL64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/fmodexL64.dll -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod.hpp -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod_codec.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod_dsp.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod_errors.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod_memoryinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod_memoryinfo.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/inc/fmod_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/inc/fmod_output.h -------------------------------------------------------------------------------- /BeatDetector/FMOD/lib/fmodex64_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/lib/fmodex64_vc.lib -------------------------------------------------------------------------------- /BeatDetector/FMOD/lib/fmodex_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/BeatDetector/FMOD/lib/fmodex_vc.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/README.md -------------------------------------------------------------------------------- /fmodex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/fmodex.dll -------------------------------------------------------------------------------- /fmodex_vc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/fmodex_vc.lib -------------------------------------------------------------------------------- /generated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/generated.html -------------------------------------------------------------------------------- /src/animations/CSSprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/CSSprop.cpp -------------------------------------------------------------------------------- /src/animations/CSSprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/CSSprop.h -------------------------------------------------------------------------------- /src/animations/CSSpropList.cpp: -------------------------------------------------------------------------------- 1 | #include "CSSpropList.h" 2 | -------------------------------------------------------------------------------- /src/animations/CSSpropList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/CSSpropList.h -------------------------------------------------------------------------------- /src/animations/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/animation.cpp -------------------------------------------------------------------------------- /src/animations/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/animation.h -------------------------------------------------------------------------------- /src/animations/animationCSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/animationCSS.cpp -------------------------------------------------------------------------------- /src/animations/animationCSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/animations/animationCSS.h -------------------------------------------------------------------------------- /src/helperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/helperFunctions.cpp -------------------------------------------------------------------------------- /src/helperFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/helperFunctions.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/range.h -------------------------------------------------------------------------------- /src/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/style.cpp -------------------------------------------------------------------------------- /src/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/style.h -------------------------------------------------------------------------------- /src/transitionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/transitionSet.h -------------------------------------------------------------------------------- /src/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/video.cpp -------------------------------------------------------------------------------- /src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/video.h -------------------------------------------------------------------------------- /src/word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/word.cpp -------------------------------------------------------------------------------- /src/word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/src/word.h -------------------------------------------------------------------------------- /video-generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/video-generator.sln -------------------------------------------------------------------------------- /video-generator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/video-generator.vcxproj -------------------------------------------------------------------------------- /video-generator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FireFragment/video-generator/HEAD/video-generator.vcxproj.filters --------------------------------------------------------------------------------