Created
May 6, 2015 14:41
-
-
Save Vamoss/2e1e7f2cdcba838883da to your computer and use it in GitHub Desktop.
FFFMPEG Commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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