Created
December 28, 2015 15:25
-
-
Save frengky/b952587bebe602706fba to your computer and use it in GitHub Desktop.
Bash script wrapper for mkvmerge, which make easy to merge video/movie file and the .srt subtitle into one file.
This file contains 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/sh | |
SELF=$(basename $0) | |
if [ "$#" -ne 2 ]; then | |
echo -e "\nUsage: $SELF [video-file] [subtitle-file]\n" | |
exit 1 | |
fi | |
SRC_FILE="$1" | |
SRT_FILE="$2" | |
TITLE="$(echo "$1" | sed 's/\.[^\.]*$//')" | |
DST_FILE="$TITLE.sub.mkv" | |
DST_LANG=ind | |
echo -e "Video\t\t: $SRC_FILE" | |
echo -e "Subtitle\t: $SRT_FILE" | |
echo -e "Lang\t\t: $DST_LANG" | |
mkvmerge \ | |
-o "$DST_FILE" \ | |
--title "$TITLE" \ | |
--default-language "$DST_LANG" \ | |
--no-subtitles \ | |
"$SRC_FILE" "$SRT_FILE" | |
RETVAL=$? | |
if [ $RETVAL -ne 0 ]; then | |
echo -e "\nFAILED!" | |
else | |
echo -e "\n" | |
mediainfo "$DST_FILE" | |
echo -e "\n\nSUCCESS: $DST_FILE" | |
fi | |
exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment