ffmpeg -i "$1" -c:v libx264 -profile:v high -crf 22 -strict experimental -c:a aac -q:a 6 "$1.mp4"
Convert to MP3
ffmpeg -i "$1" "$1.mp3"
Convert to MPEG
ffmpeg -i "$1" -qscale:v 1 "$1.mpg"
The last one is useful for appending videos together before final conversion.
No comments:
Post a Comment