Differences
This shows you the differences between two versions of the page.
howto:fix_mp4_video_to_whatsapp [2024/03/14 13:48] – created yehuda | howto:fix_mp4_video_to_whatsapp [2024/03/14 14:07] (current) – yehuda | ||
---|---|---|---|
Line 2: | Line 2: | ||
< | < | ||
- | ffmpeg -i ###broken.mp4 -c:v libx264 -profile:v baseline -level 3.0 -pix_fmt yuv420p -ac 2 ###working.mp4 | + | ffmpeg -i FILES.mp4 \ |
+ | -c:v libx264 -profile:v baseline | ||
+ | -vcodec libx265 -crf 28 \ | ||
+ | | ||
+ | |||
+ | |||
+ | ffmpeg -i FILES.mp4 \ | ||
+ | -c:v libx265 | ||
+ | | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Concat videos to single ===== | ||
+ | |||
+ | < | ||
+ | for f in *.mp4; do echo "file ' | ||
+ | ffmpeg -safe 0 -f concat -i list.txt -c copy output.mp4 | ||
</ | </ |