Skip to content

Instantly share code, notes, and snippets.

@DroidFreak32
Created December 6, 2017 21:46
Show Gist options
  • Save DroidFreak32/f83070eac06baee68d3120f2a4f3b2b6 to your computer and use it in GitHub Desktop.
Save DroidFreak32/f83070eac06baee68d3120f2a4f3b2b6 to your computer and use it in GitHub Desktop.
#!/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