FFMpeg convert to H.264
ffmpeg -fflags +genpts -i 1.webm -r 24 1.mp4
These notes document the trouble resolution of various items pertaining to Linux or it's applications. This blog also notes alternative open source applications and how they work.
ffmpeg -fflags +genpts -i 1.webm -r 24 1.mp4
ffmpeg -i input.avi -c:v libx264 -preset slow -crf 20 -c:a aac -b:a 160k -vf format=yuv420p -movflags +faststart output.mp4
ReplyDeletefor i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done (batch processing)
ReplyDelete