feat(user/split_audiobook.sh):Split audiobooks by chapter
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 20 Jan 2024 18:43:36 +0000 (18:43 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 20 Jan 2024 18:43:36 +0000 (18:43 +0000)
user/split_audiobook.sh [new file with mode: 0644]

diff --git a/user/split_audiobook.sh b/user/split_audiobook.sh
new file mode 100644 (file)
index 0000000..8838efe
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/bash
+# Desc: Split an audio file by chapter
+# Depends: ffmpeg, jq
+# Ref/Attrib: [1] Hasan Arous. MIT license. https://unix.stackexchange.com/a/612124
+#             [2] John Smith. https://unix.stackexchange.com/a/712600
+
+in="$1";
+out="$2";
+splits="";
+n=0;
+while read start end title; do
+    newTitle="$(echo "$title" | sed "s/ /_/g")";
+    newTitle="$(printf "%02d..%s" "$n" "$newTitle")";
+    splits="$splits -c copy -ss $start -to $end $out/$newTitle.m4b";
+    ((n++));
+done <<< $(ffprobe -i "$in" -print_format json -show_chapters \
+  | jq -r '.chapters[] | .start_time + " " + .end_time + " " + (.tags.title | sub(" "; "_"))');
+ffmpeg -i "$in" $splits;
+
+# Author: Steven Baltakatei Sandoval
+# License: GPLv3+