Created
December 6, 2017 21:46
-
-
Save DroidFreak32/f83070eac06baee68d3120f2a4f3b2b6 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
for i in T*.mkv #Scan all mkv files | |
do | |
echo $i > filename.txt | |
i="${i%.mkv}" #Remove the extension | |
pipe.py filename.txt | freearc-10bit -i - -vn -acodec libopus -af "channelmap=channel_layout=5.1" -b:a 96k -f ogg - > "../openc/Encoded_$i.ogg" | |
done | |
#exit && screen -X quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment