Skip to content

Instantly share code, notes, and snippets.

@Vamoss
Created May 6, 2015 14:41
Show Gist options
  • Save Vamoss/2e1e7f2cdcba838883da to your computer and use it in GitHub Desktop.
Save Vamoss/2e1e7f2cdcba838883da to your computer and use it in GitHub Desktop.
FFFMPEG Commands
REM converting multiple FLV to MP4 using FFMPEG on Windows CMD
for %1 in (*.flv) do ffmpeg -i %1 -vcodec h264 -acodec ac3 -qscale 0 %~n1.mp4
REM converting FLV to MP4 using FFMPEG on Windows CMD
ffmpeg -i input.flv -vcodec h264 -acodec ac3 -qscale 0 output.mp4
REM crop mp4
ffmpeg -i input.flv -vcodec h264 -acodec ac3 -qscale 0 -filter:v "crop=450:340:0:0" output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment