-
-
Save orivej/1557694fa39ef16c2dc7e207b9c16f9b to your computer and use it in GitHub Desktop.
"java -jar mplay.jar" alternative for The Inner World
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
#!/usr/bin/env bash | |
# The Inner World runs: | |
# java -jar mplay.jar media/movies/MOV_000.m4v media/Audio/MOV/MOV_000_EN.mp3 media/Data/Subtitles/MOV_000_EN.srt | |
# To replace "java" with "mpv", save this script as "java" near "TheInnerWorld.jar" and run | |
# chmod +x java | |
# PATH=$(pwd):$PATH $(which java) -jar TheInnerWorld.jar | |
v="$3" a="$4" s="$5" | |
exec mpv -fs "$v" --audio-file "$a" --sub-file "$s" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment