update sub_extract_convert

This commit is contained in:
Lukáš Kucharczyk 2022-07-09 21:18:29 +02:00
parent 82dafd7e90
commit f646e81c11
No known key found for this signature in database
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# usage: $scriptname $files $output_sub_format
output_sub_format=${@: -1}
for i in $@
for i in "$@"
do
if [ ! -e "$i" ];
then
@ -9,16 +9,16 @@ do
continue
fi
index=$(ffprobe -v 8 -show_streams -select_streams s "$i" | grep index | cut --delimiter="=" -f 2)
if [ -z $index ];
if [ -z "$index" ];
then
echo "No subtitle streams found."
exit
fi
ffprobe -v 8 -show_streams -select_streams "$i"
filename=${i%.*}
mkvextract "$i" tracks $index:"${filename}.en.ass"
if [ ! -z $1 ];
mkvextract "$i" tracks "$index":"${filename}.en.ass"
if [ -n "$1" ];
then
subtitleedit /convert "${filename}.en.ass" $output_sub_format 2>/dev/null | grep --color=none ass
subtitleedit /convert "${filename}.en.ass" "$output_sub_format" 2>/dev/null | grep --color=none ass
fi
done