1.04 - Use track titles for Chapter titles

master
RandomNinjaAtk 2 years ago committed by GitHub
parent 5dd646d073
commit 3128c41583
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,7 +2,7 @@
export LC_ALL=C.UTF-8 export LC_ALL=C.UTF-8
export LANG=C.UTF-8 export LANG=C.UTF-8
TITLESHORT="APP" TITLESHORT="APP"
ScriptVersion="1.03" ScriptVersion="1.04"
SECONDS=0 SECONDS=0
set -e set -e
@ -42,23 +42,24 @@ if [ $(find "$1" -type f -iname "*.mp3" | wc -l) -gt 0 ]; then
chapterNumber=$(( $chapterNumber + 1)) chapterNumber=$(( $chapterNumber + 1))
if [ -z "$ffmpegMetadata" ]; then if [ -z "$ffmpegMetadata" ]; then
ffmpegMetadata=$(ffmpeg -i "$i" -f ffmetadata -v quiet -) ffmpegMetadata=$(ffmpeg -i "$i" -f ffmetadata -v quiet -)
echo "$ffmpegMetadata" >> $chapterFile echo "$ffmpegMetadata" >> "$chapterFile"
echo "" >> $chapterFile echo "" >> "$chapterFile"
fi fi
#echo "start :: $start" #echo "start :: $start"
echo "[CHAPTER]" >> $chapterFile echo "[CHAPTER]" >> "$chapterFile"
echo "TIMEBASE=1/1000" >> $chapterFile echo "TIMEBASE=1/1000" >> "$chapterFile"
echo "START=$start" >> $chapterFile echo "START=$start" >> "$chapterFile"
seconds=$(ffprobe -i "$i" -show_format -v quiet | sed -n 's/duration=//p' | cut -d "." -f1) seconds=$(ffprobe -i "$i" -show_format -v quiet | sed -n 's/duration=//p' | cut -d "." -f1)
seconds=$(( $seconds * 1000 )) seconds=$(( $seconds * 1000 ))
end=$(( $start + $seconds - 1 )) end=$(( $start + $seconds - 1 ))
title=$(ffprobe -i "$i" -show_format -v quiet | sed -n 's/TAG:title=//p' | cut -d "." -f1)
#echo "seconds :: $seconds" #echo "seconds :: $seconds"
#echo "end :: $end" #echo "end :: $end"
echo "END=$end" >> $chapterFile echo "END=$end" >> "$chapterFile"
echo "title=Part \#$chapterNumber" >> $chapterFile echo "title=$title" >> "$chapterFile"
echo "" >> $chapterFile echo "" >> "$chapterFile"
start=$(( $end + 1 )) start=$(( $end + 1 ))
echo "file '$i'" >> $fileList echo "file '$i'" >> "$fileList"
done done
IFS="$OLDIFS" IFS="$OLDIFS"
ffmpeg -f concat -safe 0 -i "$fileList" -i "$chapterFile" -map_metadata 1 -vn -acodec aac "$1/output.mp4" ffmpeg -f concat -safe 0 -i "$fileList" -i "$chapterFile" -map_metadata 1 -vn -acodec aac "$1/output.mp4"

Loading…
Cancel
Save