Convert SVCD to reasonable mp4.

This commit is contained in:
Markus Birth 2016-03-07 22:56:28 +01:00
parent 0318810510
commit 4435e60065

6
svcd2mp4.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
while [ -f "$1" ]; do
ffmpeg -i "$1" -vcodec libx264 -acodec libmp3lame -crf 18 -ar 44100 -q:a 2 -profile:v high -level 4.0 -vf scale=768:576:flags=lanczos "$1.mp4"
shift
done