Ffmpeg notes: Difference between revisions
Jump to navigation
Jump to search
(Created page with "ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV. <pre> ffmpeg -i ./foo.mp4 -c:v libx264 -crf 24 -pix_fmt yuv420p -tune film -c:a aac -b:a 19...") |
mNo edit summary |
||
Line 1: | Line 1: | ||
ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV. | ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV. | ||
[https://superuser.com/questions/895335/how-to-convert-an-mp4-to-mp4-using-ffmpeg| Superuser.com source link] | |||
<pre> | <pre> | ||
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 | 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 |
Revision as of 17:26, 20 December 2021
ffmpeg when dealing with mp4 that skips and stutters in playback. Seen in MythTV.
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