chore(user/mp3s_to_mkv.sh):cleanup comment
[BK-2020-03.git] / user / mp3s_to_mkv.sh
index b7fd29e33da7fc2080d8f9c0467902a91e86586b..b788edbfd880396d880032c7994d3704b0865b0a 100755 (executable)
@@ -4,7 +4,7 @@
 # Example: mp3s_to_mkv.sh ./dir_source ./dir_output 48k
 # Depends: GNU Coreutils 8.32 (date), ffmpeg, ffprobe
 # Ref/Attrib: [1] FFmpeg Formats Documentation https://ffmpeg.org/ffmpeg-formats.html#toc-Metadata-2
-# Version: 0.1.1
+# Version: 0.1.2
 
 # plumbing
 opus_bitrate="$3"; # e.g. "48k"
@@ -114,7 +114,7 @@ ffmpeg_convert() {
     pushd "$dir_in" || die "FATAL:Directory error:$(pwd)";
 
     # Concatenate mp3 files into a single WAV file
-    # Convert WAV to 48 kbps opus mkv file
+    # Convert WAV to opus mkv file
     ffmpeg -nostdin -f concat -safe 0 -i "$file_flist" -c:a pcm_s24le -rf64 auto -f wav - | \
         ffmpeg -i - -i "$file_chapters" \
                -map_metadata 1 -map_chapters 1 \