Ffmpeg notes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 6: | Line 6: | ||
</pre> | </pre> | ||
[https://www.reddit.com/r/ffmpeg/comments/cq9bbv/repairing_avi_file_brokenmissing_index/ | reddit link with more | [https://www.reddit.com/r/ffmpeg/comments/cq9bbv/repairing_avi_file_brokenmissing_index/| reddit link with more details] | ||
<pre> | <pre> | ||
ffmpeg -i 'input' -map 0 -c copy 'output.mkv' | ffmpeg -i 'input' -map 0 -c copy 'output.mkv' | ||
</pre> | </pre> | ||
[[Category:ffmpeg]] | [[Category:ffmpeg]] |
Revision as of 13:30, 23 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
ffmpeg -i 'input' -map 0 -c copy 'output.mkv'