ffmpeg -i VIDEO.m2ts -map 0:<stream> -acodec <pcm_s24le|libmp3lame> audio.<wav|mp3>
Last active
January 14, 2020 11:50
-
-
Save wallace11/a608365b3c68d6ef52e9cca05be39b45 to your computer and use it in GitHub Desktop.
Fixing to be 10fps
ffmpeg -i INPUT.flv -r 10 -vf "mpdecimate,setpts=N/(10*TB)" OUTPUT.mp4
N
→ The count of the input frame for video or the number of consumed samples, not including the current frame for audio, starting from 0.
TB
→ The timebase of the input timestamps.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment