From 4698f7728ada9c98e2f3159bb8eacdb84f928186 Mon Sep 17 00:00:00 2001 From: Nicko98 <39709875+Nicko98@users.noreply.github.com> Date: Mon, 1 Mar 2021 04:31:39 +0100 Subject: [PATCH] Call AAXtoMP3 Interactively This script interactively asks you for the options to call AAXtoMP3 with. --- interactiveAAXtoMP3 | 110 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 interactiveAAXtoMP3 diff --git a/interactiveAAXtoMP3 b/interactiveAAXtoMP3 new file mode 100644 index 0000000..e5a44a9 --- /dev/null +++ b/interactiveAAXtoMP3 @@ -0,0 +1,110 @@ +#!/usr/bin/env bash + +# ===Note for contributors======================================================================================================================== + +# This script interactively asks the user for the options to call AAXtoMP3 with. This first version does not include all options of AAXtoMP3 +# since I tried to keep the dialog short, but I added an --advanced option, which is unused right now, but might be used in the future to add +# more options which only show up if explicitely wanted. +# If you want to add functionality please consider, whether the functionality you add might belong to the advanced options. + +# ===Variables==================================================================================================================================== + +# Usage synopsis +usage=$'\nUsage: interactiveAAXtoMP3 [--advanced] [--help]\n' +# Help mesaage +help=$'\nUsage: interactiveAAXtoMP3 [--advanced] [--help]\n +--advanced More options +--help Print this message\n' +summery="" # This will contain a summery of the options allready set. +call="./AAXtoMP3" # This will contain the call for AAXtoMP3. +isnum='^[0-9]+$' # This is needed to check whether a variable is a number. +advanced=0 # Toggles Advanced options on or off. + +# ===Options====================================================================================================================================== + +while true; do + case "$1" in + # Advanced options. + -a | --advanced ) advanced=1; shift ;; + # Command synopsis. + -h | --help ) echo -e "$help"; exit ;; + # Anything else stops command line processing. + * ) echo -e "$usage"; exit ;; + esac +done + +# ===Get options for AAXtoMP3===================================================================================================================== + +# ===Codec=== +while true; do + clear; + read -p "codec (mp3/m4a/m4b/flac/aac/opus): " codec + if [[ "$codec" = "mp3" ]]; then summery="$summery""codec: $codec"; call="$call -e:mp3"; break + elif [[ "$codec" = "m4a" ]]; then summery="$summery""codec: $codec"; call="$call -e:m4a"; break + elif [[ "$codec" = "m4b" ]]; then summery="$summery""codec: $codec"; call="$call -e:m4b"; break + elif [[ "$codec" = "flac" ]]; then summery="$summery""codec: $codec"; call="$call --flac"; break + elif [[ "$codec" = "aac" ]]; then summery="$summery""codec: $codec"; call="$call --aac"; break + elif [[ "$codec" = "opus" ]]; then summery="$summery""codec: $codec"; call="$call --opus"; break + fi +done + +# ===Compression=== +while true; do + clear; echo -e "$summery" + if [[ "$codec" = "mp3" ]]; then maxlevel=9 + elif [[ "$codec" = "flac" ]]; then maxlevel=12 + elif [[ "$codec" = "opus" ]]; then maxlevel=10 + else break + fi + read -p "compression level (0-$maxlevel): " compression + if [[ ${compression} =~ $isnum ]] && [[ "$((${compression} > -1))" == "1" ]] && [[ "$((${compression} < ${maxlevel}+1))" == "1" ]]; then + summery="$summery""\ncompression level: $compression" + call="$call --level $compression" + break + fi +done + +# ===Chapters=== +while true; do + clear; echo -e "$summery" + read -p "chapters (yes/no/chapternumber to continue with): " chapters + if [[ ${chapters} =~ $isnum ]]; then summery="$summery""\nchapters: $chapters"; call="$call -c --continue ${chapters}"; break + elif [[ "$chapters" = "yes" ]] ; then summery="$summery""\nchapters: $chapters"; call="$call -c"; break + elif [[ "$chapters" = "no" ]] ; then summery="$summery""\nchapters: $chapters"; call="$call -s"; break + fi +done + +# ===Authcode=== +if ! [ -r .authcode ] || [ -r ~/.authcode ]; then + clear; echo -e "$summery" + read -p "Authcode: " authcode + summery="$summery""\nauthcode: $authcode" + call="$call -A $authcode" +fi + +# ===Loglevel=== +while true; do + clear; echo -e "$summery" + read -p "loglevel (0/1/2/3): " loglevel + if [[ ${loglevel} =~ $isnum ]] && [[ "$((${loglevel} > -1))" == "1" ]] && [[ "$((${loglevel} < 4))" == "1" ]]; then + summery="$summery""\nloglevel: $loglevel" + call="$call -l $loglevel" + break + fi +done + +# ===File=== +clear; echo -e "$summery" +read -p "aax-file: " file +summery="$summery""\naax-file: $file" +call="$call $(echo $file | sed "s;~;$HOME;")" + +# ===Summerize chosen options and call AAXtoMP3=================================================================================================== + +# ===Summery=== +clear; echo -e "$summery\n" +echo -e "$call\n" +# ----- + +# ===Call AAXtoMP3=== +$call