├── .gitignore ├── CMT.ipynb ├── LICENSE ├── README.md ├── dataset └── .gitkeep ├── exp └── .gitkeep ├── inference └── .gitkeep ├── logs └── .gitkeep ├── py3_requirements.txt ├── src ├── dictionary_mix.py ├── gen_midi_conditional.py ├── match.py ├── midi2mp3.py ├── midi2numpy_mix.py ├── model.py ├── numpy2midi_mix.py ├── pianoroll2midi.py ├── train.py ├── utils.py └── video2npz │ ├── dictionary_mix.py │ ├── metadata2numpy_mix.py │ ├── optical_flow.py │ ├── resize_video.py │ ├── resize_videos.sh │ ├── stat_mix.py │ ├── video2metadata.py │ ├── video2npz.sh │ └── visbeat3 │ ├── LICENSE │ ├── LICENSE.pdf │ ├── MANIFEST.in │ ├── README.md │ ├── VisBeatAssets │ └── VideoSources │ │ └── wzk_vlog_beat_enhance1_track1238 │ │ ├── Data │ │ ├── Backups │ │ │ └── VideoSource.json │ │ └── Features │ │ │ └── video │ │ │ └── directogram_powers │ │ │ └── wzk_vlog_beat_enhance1_track1238_maxheight_360.pkl │ │ └── VideoSource.json │ ├── bin │ └── dancefer │ ├── build │ ├── lib │ │ └── visbeat3 │ │ │ ├── ADefines.py │ │ │ ├── AFileManager.py │ │ │ ├── AFuncDict.py │ │ │ ├── AImports.py │ │ │ ├── AObject.py │ │ │ ├── AParamDict.py │ │ │ ├── Audio.py │ │ │ ├── AudioClip.py │ │ │ ├── Event.py │ │ │ ├── EventList.py │ │ │ ├── Image.py │ │ │ ├── Image_CV.py │ │ │ ├── SourceLocationParser.py │ │ │ ├── TimeSignal.py │ │ │ ├── TimeSignal1D.py │ │ │ ├── VBMIDI.py │ │ │ ├── VBObject.py │ │ │ ├── Video.py │ │ │ ├── VideoClip.py │ │ │ ├── VideoSource.py │ │ │ ├── Video_CV.py │ │ │ ├── VisBeatDefines.py │ │ │ ├── VisBeatExampleVideo.py │ │ │ ├── VisBeatImports.py │ │ │ ├── VisualBeat.py │ │ │ ├── Warp.py │ │ │ ├── __init__.py │ │ │ ├── _dancefer_examples.py │ │ │ ├── _dancify_examples.py │ │ │ ├── _mediafiles.py │ │ │ ├── _music_examples.py │ │ │ ├── assets │ │ │ ├── audio │ │ │ │ └── hit.wav │ │ │ └── images │ │ │ │ └── VisBeatWatermark.png │ │ │ ├── command_line.py │ │ │ ├── fileui │ │ │ ├── __init__.py │ │ │ └── uipath.py │ │ │ └── vbgui │ │ │ ├── BeatGUI.py │ │ │ └── __init__.py │ └── scripts-3.7 │ │ └── dancefer │ ├── dist │ └── visbeat3-0.0.8-py3.7.egg │ ├── setup.cfg │ ├── setup.py │ ├── test.py │ ├── visbeat3.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt │ └── visbeat3 │ ├── ADefines.py │ ├── AFileManager.py │ ├── AFuncDict.py │ ├── AImports.py │ ├── AObject.py │ ├── AParamDict.py │ ├── Audio.py │ ├── AudioClip.py │ ├── Event.py │ ├── EventList.py │ ├── Image.py │ ├── Image_CV.py │ ├── SourceLocationParser.py │ ├── TimeSignal.py │ ├── TimeSignal1D.py │ ├── VBMIDI.py │ ├── VBObject.py │ ├── Video.py │ ├── VideoClip.py │ ├── VideoSource.py │ ├── Video_CV.py │ ├── VisBeatDefines.py │ ├── VisBeatExampleVideo.py │ ├── VisBeatImports.py │ ├── VisualBeat.py │ ├── Warp.py │ ├── __init__.py │ ├── _dancefer_examples.py │ ├── _dancify_examples.py │ ├── _mediafiles.py │ ├── _music_examples.py │ ├── assets │ ├── audio │ │ └── hit.wav │ └── images │ │ └── VisBeatWatermark.png │ ├── command_line.py │ ├── fileui │ ├── __init__.py │ └── uipath.py │ └── vbgui │ ├── BeatGUI.py │ └── __init__.py └── videos └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/.gitignore -------------------------------------------------------------------------------- /CMT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/CMT.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/README.md -------------------------------------------------------------------------------- /dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py3_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/py3_requirements.txt -------------------------------------------------------------------------------- /src/dictionary_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/dictionary_mix.py -------------------------------------------------------------------------------- /src/gen_midi_conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/gen_midi_conditional.py -------------------------------------------------------------------------------- /src/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/match.py -------------------------------------------------------------------------------- /src/midi2mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/midi2mp3.py -------------------------------------------------------------------------------- /src/midi2numpy_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/midi2numpy_mix.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/model.py -------------------------------------------------------------------------------- /src/numpy2midi_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/numpy2midi_mix.py -------------------------------------------------------------------------------- /src/pianoroll2midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/pianoroll2midi.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/video2npz/dictionary_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/dictionary_mix.py -------------------------------------------------------------------------------- /src/video2npz/metadata2numpy_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/metadata2numpy_mix.py -------------------------------------------------------------------------------- /src/video2npz/optical_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/optical_flow.py -------------------------------------------------------------------------------- /src/video2npz/resize_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/resize_video.py -------------------------------------------------------------------------------- /src/video2npz/resize_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/resize_videos.sh -------------------------------------------------------------------------------- /src/video2npz/stat_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/stat_mix.py -------------------------------------------------------------------------------- /src/video2npz/video2metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/video2metadata.py -------------------------------------------------------------------------------- /src/video2npz/video2npz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/video2npz.sh -------------------------------------------------------------------------------- /src/video2npz/visbeat3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/LICENSE -------------------------------------------------------------------------------- /src/video2npz/visbeat3/LICENSE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/LICENSE.pdf -------------------------------------------------------------------------------- /src/video2npz/visbeat3/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/MANIFEST.in -------------------------------------------------------------------------------- /src/video2npz/visbeat3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/README.md -------------------------------------------------------------------------------- /src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/Data/Backups/VideoSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/Data/Backups/VideoSource.json -------------------------------------------------------------------------------- /src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/Data/Features/video/directogram_powers/wzk_vlog_beat_enhance1_track1238_maxheight_360.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/Data/Features/video/directogram_powers/wzk_vlog_beat_enhance1_track1238_maxheight_360.pkl -------------------------------------------------------------------------------- /src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/VideoSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/VisBeatAssets/VideoSources/wzk_vlog_beat_enhance1_track1238/VideoSource.json -------------------------------------------------------------------------------- /src/video2npz/visbeat3/bin/dancefer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/bin/dancefer -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/ADefines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/ADefines.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AFileManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AFileManager.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AFuncDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AFuncDict.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AImports.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AObject.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AParamDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AParamDict.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Audio.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/AudioClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/AudioClip.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Event.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/EventList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/EventList.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Image.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Image_CV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Image_CV.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/SourceLocationParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/SourceLocationParser.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/TimeSignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/TimeSignal.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/TimeSignal1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/TimeSignal1D.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VBMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VBMIDI.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VBObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VBObject.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Video.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VideoClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VideoClip.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VideoSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VideoSource.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Video_CV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Video_CV.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VisBeatDefines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VisBeatDefines.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VisBeatExampleVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VisBeatExampleVideo.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VisBeatImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VisBeatImports.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/VisualBeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/VisualBeat.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/Warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/Warp.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/__init__.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/_dancefer_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/_dancefer_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/_dancify_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/_dancify_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/_mediafiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/_mediafiles.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/_music_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/_music_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/assets/audio/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/assets/audio/hit.wav -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/assets/images/VisBeatWatermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/assets/images/VisBeatWatermark.png -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/command_line.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/fileui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/fileui/__init__.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/fileui/uipath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/fileui/uipath.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/vbgui/BeatGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/lib/visbeat3/vbgui/BeatGUI.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/lib/visbeat3/vbgui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/video2npz/visbeat3/build/scripts-3.7/dancefer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/build/scripts-3.7/dancefer -------------------------------------------------------------------------------- /src/video2npz/visbeat3/dist/visbeat3-0.0.8-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/dist/visbeat3-0.0.8-py3.7.egg -------------------------------------------------------------------------------- /src/video2npz/visbeat3/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/setup.cfg -------------------------------------------------------------------------------- /src/video2npz/visbeat3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/setup.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/test.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3.egg-info/requires.txt -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | visbeat3 2 | -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/ADefines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/ADefines.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AFileManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AFileManager.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AFuncDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AFuncDict.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AImports.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AObject.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AParamDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AParamDict.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Audio.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/AudioClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/AudioClip.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Event.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/EventList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/EventList.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Image.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Image_CV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Image_CV.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/SourceLocationParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/SourceLocationParser.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/TimeSignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/TimeSignal.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/TimeSignal1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/TimeSignal1D.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VBMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VBMIDI.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VBObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VBObject.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Video.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VideoClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VideoClip.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VideoSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VideoSource.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Video_CV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Video_CV.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VisBeatDefines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VisBeatDefines.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VisBeatExampleVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VisBeatExampleVideo.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VisBeatImports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VisBeatImports.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/VisualBeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/VisualBeat.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/Warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/Warp.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/__init__.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/_dancefer_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/_dancefer_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/_dancify_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/_dancify_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/_mediafiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/_mediafiles.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/_music_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/_music_examples.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/assets/audio/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/assets/audio/hit.wav -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/assets/images/VisBeatWatermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/assets/images/VisBeatWatermark.png -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/command_line.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/fileui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/fileui/__init__.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/fileui/uipath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/fileui/uipath.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/vbgui/BeatGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzk1015/video-bgm-generation/HEAD/src/video2npz/visbeat3/visbeat3/vbgui/BeatGUI.py -------------------------------------------------------------------------------- /src/video2npz/visbeat3/visbeat3/vbgui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /videos/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------