Copy audio codec instead of encoding audio (#653)
Co-authored-by: Luke Smith <luke@lukesmith.xyz>
This commit is contained in:
parent
e1a4273e11
commit
211cc0de65
1 changed files with 6 additions and 4 deletions
|
@ -27,10 +27,12 @@ total="$(wc -l < "$2")"
|
||||||
while read -r x;
|
while read -r x;
|
||||||
do
|
do
|
||||||
end="$(echo "$x" | cut -d' ' -f1)"
|
end="$(echo "$x" | cut -d' ' -f1)"
|
||||||
|
|
||||||
[ -n "$start" ] &&
|
[ -n "$start" ] &&
|
||||||
echo "From $start to $end; $track $title"
|
echo "From $start to $end; $track $title"
|
||||||
file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext"
|
file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext"
|
||||||
[ -n "$start" ] && echo "Splitting \"$title\"..." && ffmpeg -nostdin -y -loglevel -8 -i "$inputaudio" -ss "$start" -to "$end" -vn "$file" &&
|
[ -n "$start" ] && echo "Splitting \"$title\"..." &&
|
||||||
|
ffmpeg -nostdin -y -loglevel -8 -i "$inputaudio" -ss "$start" -to "$end" -vn -c copy "$file" &&
|
||||||
echo "Tagging \"$title\"..." && tag -a "$author" -A "$booktitle" -t "$title" -n "$track" -N "$total" -d "$year" "$file"
|
echo "Tagging \"$title\"..." && tag -a "$author" -A "$booktitle" -t "$title" -n "$track" -N "$total" -d "$year" "$file"
|
||||||
title="$(echo "$x" | cut -d' ' -f 2-)"
|
title="$(echo "$x" | cut -d' ' -f 2-)"
|
||||||
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 -cf UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")"
|
||||||
|
@ -40,5 +42,5 @@ done < "$2"
|
||||||
# The last track must be done outside the loop.
|
# The last track must be done outside the loop.
|
||||||
echo "From $start to the end: $title"
|
echo "From $start to the end: $title"
|
||||||
file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext"
|
file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext"
|
||||||
echo "Splitting \"$title\"..." && ffmpeg -nostdin -y -loglevel -8 -i "$inputaudio" -ss "$start" -vn "$file" &&
|
echo "Splitting \"$title\"..." && ffmpeg -nostdin -y -loglevel -8 -i "$inputaudio" -ss "$start" -vn -c copy "$file" &&
|
||||||
echo "Tagging \"$title\"..." && tag -a "$author" -A "$booktitle" -t "$title" -n "$track" -N "$total" -d "$year" "$file"
|
echo "Tagging \"$title\"..." && tag -a "$author" -A "$booktitle" -t "$title" -n "$track" -N "$total" -d "$year" "$file"
|
Loading…
Reference in a new issue