New Script: batch-convert.sh

This commit is contained in:
mollusk 2017-09-04 00:32:40 -07:00
parent c7e00879a2
commit 5017bfda66

4
batch-convert.sh Executable file
View File

@ -0,0 +1,4 @@
find . -maxdepth 1 -name "*.mov" -print0 |
sed 's/\.mov\x00/\x00/g' |
xargs -r0 -I FILENAME ffmpeg -i FILENAME.mov -vcodec copy -acodec copy FILENAME.mp4