This script takes a music file and a directory of videos (clips) then creates a music video.
The script is pypi available. You can install via pip.
python3 -m pip install mvmake
mvmake --music ./my_new_song.wav --clips ./path/to/clips my_music_video.mp4
$ mvmake --help
usage: mvmake [-h] --music MUSIC --clips CLIPS [--extensions EXTENSIONS]
[--method [{onset,beat,union}]] [--width WIDTH]
[--height HEIGHT]
output
Snap some clips to music. This script takes an audio file and a directory
where video clips are located then tries to match the given clips to the given
audio.
positional arguments:
output The name of the output file.
optional arguments:
-h, --help show this help message and exit
--music MUSIC Path to the music file.
--clips CLIPS Path to the directory containing the clips. All the
clips will be read from the directory recursively.
--extensions EXTENSIONS
The enabled extensions of the clips. Files with other
extensions will not be used. (default: ['mp4', 'avi',
'mov'])
--method [{onset,beat,union}]
Select to what to snap the clips. Currently there are
three methods supported: onset (snap clips to the
starting of each note), beat (snap clips to each
beat), union (snap clips to both of these) (default:
onset)
--width WIDTH The width of the output. If given without height, the
clips aspect ratio will be kept. (default: None)
--height HEIGHT The height of the output. If given without width, the
clips aspect ratio will be kept. (default: None)
This sample is constructed from DigEx - Fall In Love and clips from Beeple-Crap - übersketch.
The default onset detection method was used. (--method onset
)
output6_low.mp4
Song: DigEx - Fall In Love [NCS Release]
Music provided by NoCopyrightSounds
Free Download/Stream: http://NCS.io/FallInLove
Watch: http://youtu.be/
VJ Loops: Beeple-Crap - übersketch
https://www.beeple-crap.com/vjloops
This sample is constructed from Beave - Talk and clips from Beeple-Crap - four.color.process.
The beat detection method was used. (--method beat
)
output7_low.mp4
Song: Beave - Talk [NCS Release]
Music provided by NoCopyrightSounds
Free Download/Stream: https://ncs.io/Talk
Watch: https://youtu.be/uZi8_rnqgHg
VJ Loops: Beeple-Crap - four.color.process
https://www.beeple-crap.com/vjloops
Learn about the latest improvements.
Read through our contributing guidelines to learn about our submission process, coding rules and more.
Want to report a bug, contribute some code, or improve documentation? Excellent! Read up on our guidelines for contributing and then check out one of our issues labeled as help wanted or good first issue.
The project is licensed under MIT License. Read more here.
This project is based on the following packages, check them out!