Ffmpeg notes

From I Will Fear No Evil
Revision as of 14:30, 23 December 2021 by Chubbard (talk | contribs)
Jump to navigation Jump to search

ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV.

Superuser.com source link

ffmpeg -i ./foo.mp4 -c:v libx264 -crf 24 -pix_fmt yuv420p -tune film -c:a aac -b:a 192k -ar 44100 -vol 300 -strict -2 -speed fastest ./bar.mp4

reddit link with more details

ffmpeg -i 'input' -map 0 -c copy 'output.mkv'