Created
          June 5, 2017 02:07 
        
      - 
      
 - 
        
Save iandunn/32c5c098aaed8a0d76b453ec89f15b27 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
iandunn created this gist
Jun 5, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # Alias to convert a stereo recording to mono # # $1 - The input filename function qtmono { basename=$(basename "$1") filename="${basename%.*}" extension="${basename##*.}" ffmpeg -i $1 -codec:v copy -af pan="mono: c0=FL" $filename-mono.$extension }