Created
December 21, 2017 00:19
-
-
Save josefnpat/0144ce3aaaac473a1c0eadccc2a12f25 to your computer and use it in GitHub Desktop.
Convert video for PS4
This file contains hidden or 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
# Copy video, convert audio: | |
./bin/ffmpeg/bin/ffmpeg.exe -i $1 -c:v copy -c:a libmp3lame $2 | |
# Convert video and audio: | |
./bin/ffmpeg/bin/ffmpeg.exe -i $1 -crf 22 $2.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment