Script to convert DV video to reasonable mp4.

This commit is contained in:
Markus Birth 2016-03-07 22:55:46 +01:00
parent f76c376484
commit f83dcbf8d7

2
dv2mp4.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
ffmpeg -i "$1" -vcodec libx264 -acodec libmp3lame -crf 18 -ar 44100 -q:a 2 -vf yadif -profile:v high -level 4.0 "$1.mp4"