Created
July 6, 2012 15:56
-
-
Save halfbyte/3061036 to your computer and use it in GitHub Desktop.
ploppcast conversion
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
input = ARGV[0] | |
output = ARGV[1] | |
unless input && output | |
puts "usage IN OUT" and exit | |
end | |
system "ffmpeg -i '#{input}' -map 0:0 -vn -acodec copy #{output}-1.m4a -map 0:1 -vn -acodec copy #{output}-2.m4a" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment