booksplit (1707B)
1 #!/bin/sh 2 3 # Requires ffmpeg 4 5 [ ! -f "$2" ] && printf "The first file should be the audio, the second should be the timecodes.\\n" && exit 6 7 echo "Enter the album/book title:"; read -r booktitle 8 echo "Enter the artist/author:"; read -r author 9 echo "Enter the publication year:"; read -r year 10 11 inputaudio="$1" 12 ext="${1##*.}" 13 14 # Get a safe file name from the book. 15 escbook="$(echo "$booktitle" | iconv -c -f UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" 16 17 ! mkdir -p "$escbook" && 18 echo "Do you have write access in this directory?" && 19 exit 1 20 21 # Get the total number of tracks from the number of lines. 22 total="$(wc -l < "$2")" 23 24 cmd="ffmpeg -i \"$inputaudio\" -nostdin -y" 25 26 while read -r x; 27 do 28 end="$(echo "$x" | cut -d' ' -f1)" 29 file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext" 30 if [ -n "$start" ]; then 31 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\" " 32 fi 33 title="$(echo "$x" | cut -d' ' -f2-)" 34 esctitle="$(echo "$title" | iconv -c -f UTF-8 -t ASCII//TRANSLIT | tr -d '[:punct:]' | tr '[:upper:]' '[:lower:]' | tr ' ' '-' | sed "s/-\+/-/g;s/\(^-\|-\$\)//g")" 35 track="$((track+1))" 36 start="$end" 37 done < "$2" 38 39 # Last track must be added out of the loop. 40 file="$escbook/$(printf "%.2d" "$track")-$esctitle.$ext" 41 cmd="$cmd -metadata artist=\"$author\" -metadata title=\"$title\" -metadata album=\"$booktitle\" -metadata year=\"$year\" -metadata track=\"$track\" -ss \"$start\" -vn -c copy \"$file\"" 42 43 eval "$cmd"