diff options
| author | Hylke Hellinga <hylke.hellinga@gmail.com> | 2023-09-03 09:20:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-03 07:20:13 +0000 |
| commit | c550a7c6e54fba8d4cf6024b2ffcf2a475367bd3 (patch) | |
| tree | 43e43cbe2dc44da059d8d598b26c8831903e4a71 /.local/bin | |
| parent | 86f05abcce1fd270032975775adb40040c746cfe (diff) | |
| download | eibhear-c550a7c6e54fba8d4cf6024b2ffcf2a475367bd3.tar.gz eibhear-c550a7c6e54fba8d4cf6024b2ffcf2a475367bd3.tar.zst eibhear-c550a7c6e54fba8d4cf6024b2ffcf2a475367bd3.zip | |
Fixed Booksplit for termux (#1358)
Co-authored-by: Simbaclaws <h.hellinga@inner-join.nl>
Diffstat (limited to '.local/bin')
| -rwxr-xr-x | .local/bin/booksplit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/booksplit b/.local/bin/booksplit index a6845f7..079d85f 100755 --- a/.local/bin/booksplit +++ b/.local/bin/booksplit @@ -12,7 +12,7 @@ inputaudio="$1" ext="${1##*.}" # Get a safe file name from the book. -escbook="$(echo "$booktitle" | iconv -cf UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" +escbook="$(echo "$booktitle" | iconv -c -f UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" ! mkdir -p "$escbook" && echo "Do you have write access in this directory?" && @@ -31,7 +31,7 @@ do cmd="$cmd -metadata artist=\"$author\" -metadata title=\"$title\" -metadata album=\"$booktitle\" -metadata year=\"$year\" -metadata track=\"$track\" -metadata total=\"$total\" -ss \"$start\" -to \"$end\" -vn -c:a copy \"$file\" " fi title="$(echo "$x" | cut -d' ' -f2-)" - esctitle="$(echo "$title" | iconv -cf UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" + esctitle="$(echo "$title" | iconv -c -f UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" track="$((track+1))" start="$end" done < "$2" |
