commit e0776c64378a5f723755dff47968e1e6c5abc1ea parent 6f13a07f2a69a4637e48d63eab58e5bbdd24c49e Author: pyratebeard <root@pyratebeard.net> Date: Mon, 28 Nov 2022 16:51:21 +0000 updates Diffstat:
M | linux/ffmpeg.md | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/linux/ffmpeg.md b/linux/ffmpeg.md @@ -41,3 +41,9 @@ ffmpeg -i input.mp3 -vn -codec:a copy -map_metadata -1 output.mp3 ``` ffmpeg -i input.mp4 -ss 00:00:10 -to 01:23:14 -async 1 -c copy output.mp4 ``` + +## firefox corrupt file +firefox complains about videos recorded with `ffmpeg`, saying they are corrupt. apparently using the following options fixes this (mentioned by seninha in #nixers irc) +``` +-vf format=yuv420p +```