Skip to content

Instantly share code, notes, and snippets.

@orivej
Last active January 9, 2018 17:58
Show Gist options
  • Save orivej/1557694fa39ef16c2dc7e207b9c16f9b to your computer and use it in GitHub Desktop.
Save orivej/1557694fa39ef16c2dc7e207b9c16f9b to your computer and use it in GitHub Desktop.
"java -jar mplay.jar" alternative for The Inner World
#!/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