Add helper scripts

This commit is contained in:
Augusto Gunsch 2021-11-02 16:33:23 -03:00
parent 64c13e2974
commit 9a3cff1cfa
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
3 changed files with 108 additions and 34 deletions

25
local/bin/dlsubs Executable file
View File

@ -0,0 +1,25 @@
#!/bin/sh
LANG=pob
usage() {
echo "usage: dlsubs <files>"
exit 1
}
[ -z "$1" ] && usage
for arg in "$@"; do
case "$arg" in
*.mkv|*.mp4 )
if [ ! -f "$arg" ]; then
echo "$arg is not a file"
usage
fi ;;
*) echo "$arg is neither a .mkv nor a .mp4 file"; usage ;;
esac
done
for input in "$@"; do
subdl --lang=$LANG "$input"
done

View File

@ -4,46 +4,56 @@ set -e
FSUBRC=~/.config/fsubrc FSUBRC=~/.config/fsubrc
usage() { usage() {
echo "usage: fsub <file>" echo "usage: fsub <files>"
echo "fsub expects $FSUBRC to have a blacklist of words" echo "fsub expects $FSUBRC to have a blacklist of words"
exit 1 exit 1
} }
[ -z $1 ] && usage [ -z "$1" ] && usage
[ -f $1 ] || usage
[ -z $2 ] || usage
[ -f $FSUBRC ] || touch $FSUBRC
cp $1 $1.bak for arg in "$@"; do
awk ' case "$arg" in
BEGIN { *.srt )
n = 1 if [ ! -f "$arg" ]; then
i = 0 echo "$arg is not a file"
while(getline < "'$FSUBRC'") { usage
blacklist[i] = $0 fi ;;
i++ *) echo "$arg is not a .srt file"; usage ;;
esac
done
[ -f "$FSUBRC" ] || touch $FSUBRC
for arg in "$@"; do
awk '
BEGIN {
n = 1
i = 0
while(getline < "'$FSUBRC'") {
blacklist[i] = $0
i++
}
} }
} /^[[:digit:]]+[[:space:]]*$/ {
/^[[:digit:]]+[[:space:]]*$/ { getline
getline time = $0
time = $0
linen = 0 linen = 0
while(getline) { while(getline) {
lines[linen] = $0 lines[linen] = $0
linen++ linen++
if($0 ~ /^[[:space:]]*$/) break if($0 ~ /^[[:space:]]*$/) break
} }
for(j = 0; j < i; j++) for(j = 0; j < i; j++)
for(k = 0; k < linen; k++) for(k = 0; k < linen; k++)
if(lines[k] ~ blacklist[j]) next if(lines[k] ~ blacklist[j]) next
print n print n
n++ n++
print time print time
for(j = 0; j < linen; j++) for(j = 0; j < linen; j++)
print lines[j] print lines[j]
}' $1 | sed 's/\r//' > /tmp/fsub }' "$arg" | sed 's/\r//' > /tmp/fsub
mv /tmp/fsub $1 mv /tmp/fsub "$arg"
rm $1.bak done

39
local/bin/tomp4 Executable file
View File

@ -0,0 +1,39 @@
#!/bin/sh
set -e
usage() {
echo "usage: tomp4 <files>"
exit 1
}
[ -z "$1" ] && usage
for arg in "$@"; do
case "$arg" in
*.mkv )
if [ ! -f "$arg" ]; then
echo "$arg is not a file"
usage
fi ;;
*) echo "$arg is not a .mkv file"; usage ;;
esac
done
for input in "$@"; do
base=${input%.mkv}
output="$base.mp4"
tmp="$base.tmp.mp4"
if [ ! -f "$output" ]; then
ffmpeg -i "$input" "$tmp"
if [ $? -ne 0 ]; then
rm "$tmp"
exit 1
fi
mv "$tmp" "$output"
else
"Skipping $input"
fi
done