- Add SPEC file,
- Add bash_completion, - Migrate album_convert, album_merge & album_name_fix commands.
This commit is contained in:
@@ -1,103 +1,138 @@
|
||||
#!/bin/bash
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
#
|
||||
# Album Convert
|
||||
#
|
||||
# Copyright (C) 2016-2026 Arnaud G. GIBERT
|
||||
# mailto:arnaud@rx3.net
|
||||
#
|
||||
# This is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Includes
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
. /usr/global/lib/music.bash
|
||||
: "${RX3_LIB_DIR:=/usr/lib/rx3}"
|
||||
. "${RX3_LIB_DIR}/music_tools.bash"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# System Constants
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
AC_NAME="album_convert"
|
||||
AC_VERSION="$Name: album_convert-1_0_0-1 $"
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g NAME="album_convert"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-r | --resample] [-d | --downsampled_tag] <source_dir> <target_dir>"
|
||||
|
||||
declare -g RESAMPLE="FALSE"
|
||||
declare -g DSTAG="FLASE"
|
||||
declare -g SOURCE_DIR=""
|
||||
declare -g TARGET_DIR=""
|
||||
|
||||
declare -g MODE="DEFAULT"
|
||||
declare -g VERBOSE="FALSE"
|
||||
declare -g DRY_RUN="FALSE"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Print Version
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Version Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function version_print()
|
||||
ac_version_print()
|
||||
{
|
||||
echo ${AC_VERSION} | sed -e 's/.*: //' -e 's/-/ /' -e 's/_/\./g' -e 's/\$$//'
|
||||
version_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Prin Help
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Help Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function help_print()
|
||||
ac_help_print()
|
||||
{
|
||||
echo "${AC_NAME} [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-r | --resample] [-d | --downsampled_tag] <source_dir> <target_dir> [<target_format>]"
|
||||
ac_version_print
|
||||
help_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Arg Parse
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function args_parse()
|
||||
ac_args_parse()
|
||||
{
|
||||
mode="default"
|
||||
verbose="false"
|
||||
resample="false"
|
||||
dstag="flase"
|
||||
source_dir=""
|
||||
target_dir=""
|
||||
|
||||
tmp_args=$(getopt -o ThVvrd --long test,help,version,verbose,resample,downsampled_tag -n "${AC_NAME}" -- "$@")
|
||||
tmp_args=$(getopt -o ThVvrd --long test,help,version,verbose,resample,downsampled_tag -n "${NAME}" -- "$@")
|
||||
|
||||
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
|
||||
|
||||
# Note the quotes around `$TEMP': they are essential!
|
||||
eval set -- "${tmp_args}"
|
||||
|
||||
while true ; do
|
||||
while true
|
||||
do
|
||||
case "$1" in
|
||||
# Options
|
||||
|
||||
# Mode switches
|
||||
-T|--test) mode="test"; shift;;
|
||||
-h|--help) mode="exit"; help_print; shift;;
|
||||
-V|--version) mode="exit"; version_print; shift;;
|
||||
-T|--test) MODE="TEST"; shift;;
|
||||
-h|--help) MODE="EXIT"; ac_help_print; shift;;
|
||||
-V|--version) MODE="EXIT"; ac_version_print; shift;;
|
||||
|
||||
# Global options
|
||||
-v|--verbose) verbose="true"; shift;;
|
||||
-r|--resample) resample="true"; shift;;
|
||||
-d|--downsampled_tag) dstag="true"; shift;;
|
||||
-v|--verbose) VERBOSE="TRUE"; shift;;
|
||||
-r|--resample) RESAMPLE="TRUE"; shift;;
|
||||
-d|--downsampled_tag) DSTAG="TRUE"; shift;;
|
||||
|
||||
#
|
||||
--) shift; break;;
|
||||
--) shift; break;;
|
||||
*) echo "args_parse internal error [$1] !"; exit 1;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [[ "${mode}" != "exit" ]]
|
||||
if [[ "${MODE}" != "EXIT" ]]
|
||||
then
|
||||
if [[ "${#}" != "2" ]]
|
||||
then
|
||||
if [[ "${#}" -lt "2" ]]
|
||||
then
|
||||
echo "Not enough args!"
|
||||
echo_error "Not enough args!"
|
||||
else
|
||||
echo "Too many args!"
|
||||
echo_error "Too many args!"
|
||||
fi
|
||||
|
||||
mode="exit"
|
||||
help_print
|
||||
MODE="EXIT"
|
||||
ac_help_print
|
||||
else
|
||||
source_dir="$1"
|
||||
target_dir="$2"
|
||||
SOURCE_DIR="$1"
|
||||
TARGET_DIR="$2"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
@@ -106,80 +141,84 @@ function args_parse()
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
args_parse "$@"
|
||||
ac_args_parse "$@"
|
||||
|
||||
if [[ "${mode}" == "exit" ]]
|
||||
|
||||
|
||||
if [[ "${MODE}" == "EXIT" ]]
|
||||
then
|
||||
exit 0
|
||||
else
|
||||
if [[ "${mode}" == "test" ]]
|
||||
if [[ "${MODE}" == "TEST" ]]
|
||||
then
|
||||
dry_run=true
|
||||
else
|
||||
dry_run=false
|
||||
DRY_RUN="TRUE"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ "${resample}" == "true" ]]
|
||||
if [[ "${RESAMPLE}" == "TRUE" ]]
|
||||
then
|
||||
resample_flags="-af \"aresample=out_sample_fmt=s16:out_sample_rate=44100\""
|
||||
resample_flags="-af aresample=out_sample_fmt=s16:out_sample_rate=44100"
|
||||
else
|
||||
resample_flags=""
|
||||
fi
|
||||
|
||||
|
||||
|
||||
echo "mode: [${mode}] verbose: [${verbose}] resample : [${resample}] downsampled_tag : [${dstag}] source_dir: [${source_dir}] target_dir: [${target_dir}]" 1>&2
|
||||
echo_error "${NAME}: Mode: [${MODE}] Verbose: [${VERBOSE}] Resample : [${RESAMPLE}] DownSampled_Tag : [${DSTAG}] Source_Dir: [${SOURCE_DIR}] Target_Dir: [${TARGET_DIR}]"
|
||||
|
||||
if [[ ! -d "${target_dir}" ]]
|
||||
if [[ ! -d "${TARGET_DIR}" ]]
|
||||
then
|
||||
echo "Target directory doesn't exit !"
|
||||
echo_error "Target directory doesn't exit !"
|
||||
exit -1
|
||||
fi
|
||||
|
||||
for file in "${source_dir}"/*@(.flac|.ogg|.mp3|.m4a|.ape|.wav)
|
||||
for file in "${SOURCE_DIR}"/*@(.flac|.ogg|.mp3|.m4a|.ape|.wav)
|
||||
do
|
||||
id="$(basename "${file}" | sed -e "s/-.*//")"
|
||||
target_file="${target_dir}/${prefix}$(basename "${file}" | sed -e 's/\.[^.]*$//').flac"
|
||||
target_file="${TARGET_DIR}/$(basename "${file}" | sed -e 's/\.[^.]*$//').flac"
|
||||
|
||||
cmd="ffmpeg -i \"${file}\" -compression_level 12 ${resample_flags} \"${target_file}\""
|
||||
exec_cmd "${cmd}"
|
||||
cmd_exec ffmpeg -i "${file}" -compression_level 12 ${resample_flags} "${target_file}"
|
||||
done
|
||||
|
||||
if [[ ${resample} == "true" ]]
|
||||
set -x
|
||||
if [[ "${RESAMPLE}" == "TRUE" ]]
|
||||
then
|
||||
for file in "${target_dir}"/*.flac
|
||||
for file in "${TARGET_DIR}"/*.flac
|
||||
do
|
||||
if [[ "${dstag}" == "true" ]]
|
||||
if [[ "${DSTAG}" == "TRUE" ]]
|
||||
then
|
||||
tag="DESCRIPTION"
|
||||
|
||||
value="$(tag_read "${file}" "${tag}")"
|
||||
value="$(mt_tag_read "${file}" "${tag}")"
|
||||
|
||||
if [[ "$( echo "${value}" | grep "Downsampled")" == "" ]]
|
||||
then
|
||||
value="${value}\nDownsampled"
|
||||
tag_delete "${file}" "${tag}"
|
||||
tag_write "${file}" "${tag}" "${value}"
|
||||
mt_tag_delete "${file}" "${tag}"
|
||||
mt_tag_write "${file}" "${tag}" "${value}"
|
||||
fi
|
||||
fi
|
||||
|
||||
for tag in "ALBUM" "TITLE"
|
||||
do
|
||||
value="$(tag_read "${file}" "${tag}")"
|
||||
value="$(mt_tag_read "${file}" "${tag}")"
|
||||
new_value="$(echo ${value} | sed -e 's/ - HD$//')"
|
||||
|
||||
if [[ "${value}" != "${new_value}" ]]
|
||||
then
|
||||
tag_delete "${file}" "${tag}"
|
||||
tag_write "${file}" "${tag}" "${new_value}"
|
||||
mt_tag_delete "${file}" "${tag}"
|
||||
mt_tag_write "${file}" "${tag}" "${new_value}"
|
||||
fi
|
||||
done
|
||||
|
||||
cmd="mv \"${file}\" \"${file/-hd.flac/.flac}\""
|
||||
exec_cmd "${cmd}"
|
||||
if [[ "${file}" != "${file/-hd.flac/.flac}" ]]
|
||||
then
|
||||
cmd_exec mv "${file}" "${file/-hd.flac/.flac}"
|
||||
else
|
||||
echo_error "No '-hd' renmaming needed..."
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
132
bin/album_merge
132
bin/album_merge
@@ -1,79 +1,113 @@
|
||||
#!/bin/bash
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
#
|
||||
# Album Convert
|
||||
#
|
||||
# Copyright (C) 2016-2026 Arnaud G. GIBERT
|
||||
# mailto:arnaud@rx3.net
|
||||
#
|
||||
# This is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Includes
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
. /usr/global/lib/music.bash
|
||||
: "${RX3_LIB_DIR:=/usr/lib/rx3}"
|
||||
. "${RX3_LIB_DIR}/music_tools.bash"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# System Constants
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
AM_NAME="album_merge"
|
||||
AM_VERSION="$Name: album_merge-1_0_0-1 $"
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g NAME="album_merge"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <album_name> <prefix>"
|
||||
|
||||
declare -g SOURCE_DIR=""
|
||||
declare -g TARGET_DIR=""
|
||||
declare -g ALBUM_NAME=""
|
||||
declare -g PREFIX=""
|
||||
|
||||
declare -g MODE="DEFAULT"
|
||||
declare -g VERBOSE="FALSE"
|
||||
declare -g DRY_RUN="FALSE"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Print Version
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Version Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function version_print()
|
||||
am_version_print()
|
||||
{
|
||||
echo ${AM_VERSION} | sed -e 's/.*: //' -e 's/-/ /' -e 's/_/\./g' -e 's/\$$//'
|
||||
version_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Prin Help
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Help Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function help_print()
|
||||
am_help_print()
|
||||
{
|
||||
echo "${AM_NAME} [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <album_name> <prefix>"
|
||||
|
||||
am_version_print
|
||||
help_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Arg Parse
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function args_parse()
|
||||
am_args_parse()
|
||||
{
|
||||
mode="default"
|
||||
verbose="false"
|
||||
source_dir=""
|
||||
target_dir=""
|
||||
album_name=""
|
||||
prefix=""
|
||||
|
||||
tmp_args=$(getopt -o ThVv --long test,help,version,verbose -n "${AM_NAME}" -- "$@")
|
||||
tmp_args=$(getopt -o ThVv --long test,help,version,verbose -n "${NAME}" -- "$@")
|
||||
|
||||
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
|
||||
|
||||
# Note the quotes around `$TEMP': they are essential!
|
||||
eval set -- "${tmp_args}"
|
||||
|
||||
while true ; do
|
||||
while true
|
||||
do
|
||||
case "$1" in
|
||||
# Options
|
||||
|
||||
# Mode switches
|
||||
-T|--test) mode="test"; shift;;
|
||||
-h|--help) mode="exit"; help_print; shift;;
|
||||
-V|--version) mode="exit"; version_print; shift;;
|
||||
-T|--test) MODE="TEST"; shift;;
|
||||
-h|--help) MODE="EXIT"; am_help_print; shift;;
|
||||
-V|--version) MODE="EXIT"; am_version_print; shift;;
|
||||
|
||||
# Global options
|
||||
-v|--verbose) verbose="true"; shift;;
|
||||
-v|--verbose) VERBOSE="TRUE"; shift;;
|
||||
|
||||
#
|
||||
--) shift; break;;
|
||||
@@ -81,24 +115,24 @@ function args_parse()
|
||||
esac
|
||||
done
|
||||
|
||||
if [[ "${mode}" != "exit" ]]
|
||||
if [[ "${MODE}" != "EXIT" ]]
|
||||
then
|
||||
if [[ "${#}" != "4" ]]
|
||||
then
|
||||
if [[ "${#}" -lt "4" ]]
|
||||
then
|
||||
echo "Not enough args!"
|
||||
echo_error "Not enough args!"
|
||||
else
|
||||
echo "Too many args!"
|
||||
echo_error "Too many args!"
|
||||
fi
|
||||
|
||||
mode="exit"
|
||||
help_print
|
||||
MODE="EXIT"
|
||||
am_help_print
|
||||
else
|
||||
source_dir="$1"
|
||||
target_dir="$2"
|
||||
album_name="$3"
|
||||
prefix="$4"
|
||||
SOURCE_DIR="$1"
|
||||
TARGET_DIR="$2"
|
||||
ALBUM_NAME="$3"
|
||||
PREFIX="$4"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
@@ -107,39 +141,37 @@ function args_parse()
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
shopt -s extglob
|
||||
am_args_parse "$@"
|
||||
|
||||
args_parse "$@"
|
||||
|
||||
if [[ ${mode} == "exit" ]]
|
||||
|
||||
if [[ ${MODE} == "EXIT" ]]
|
||||
then
|
||||
exit 0
|
||||
else
|
||||
if [[ ${mode} == "test" ]]
|
||||
if [[ ${MODE} == "TEST" ]]
|
||||
then
|
||||
dry_run=true
|
||||
else
|
||||
dry_run=false
|
||||
DRY_RUN="TRUE"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
||||
echo "mode: [${mode}] verbose: [${verbose}] source_dir: [${source_dir}] target_dir: [${target_dir}] album_name: [${album_name}] prefix: [${prefix}]" 1>&2
|
||||
echo_error "${NAME}: Mode: [${MODE}] Verbose: [${VERBOSE}] Source_Dir: [${SOURCE_DIR}] Target_Dir: [${TARGET_DIR}] Album_Name: [${ALBUM_NAME}] Prefix: [${PREFIX}]"
|
||||
|
||||
for file in "${source_dir}"/*@(.flac|.mp3)
|
||||
for file in "${SOURCE_DIR}"/*@(.flac|.mp3)
|
||||
do
|
||||
id="$(basename $file | sed -e "s/-.*//")"
|
||||
target_file="${target_dir}/${prefix}$(basename $file)"
|
||||
target_file="${TARGET_DIR}/${PREFIX}$(basename $file)"
|
||||
|
||||
cmd="cp \"${file}\" \"${target_file}\""
|
||||
exec_cmd "${cmd}"
|
||||
cmd_exec cp "${file}" "${target_file}"
|
||||
|
||||
tag_delete "${target_file}" "ALBUM"
|
||||
tag_write "${target_file}" "ALBUM" "${album_name}"
|
||||
tag_delete "${target_file}" "TRACKNUMBER"
|
||||
tag_write "${target_file}" "TRACKNUMBER" "${prefix}${id}"
|
||||
mt_tag_delete "${target_file}" "ALBUM"
|
||||
mt_tag_write "${target_file}" "ALBUM" "${ALBUM_NAME}"
|
||||
mt_tag_delete "${target_file}" "TRACKNUMBER"
|
||||
mt_tag_write "${target_file}" "TRACKNUMBER" "${PREFIX}${id}"
|
||||
done
|
||||
|
||||
@@ -1,80 +1,120 @@
|
||||
#!/bin/bash
|
||||
|
||||
. /usr/global/lib/music.bash
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# System Constants
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
#
|
||||
# Album Name Fix
|
||||
#
|
||||
# Copyright (C) 2016-2026 Arnaud G. GIBERT
|
||||
# mailto:arnaud@rx3.net
|
||||
#
|
||||
# This is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
ANF_VERSION="$Name: album_name_fix-1_0_0-1 $"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Print Version
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Includes
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function version_print()
|
||||
: "${RX3_LIB_DIR:=/usr/lib/rx3}"
|
||||
. "${RX3_LIB_DIR}/music_tools.bash"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g NAME="album_name_fix "
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-a <album_dir>] [-p|--music_pattern <music_pattern>] [-s|--sed_substitute_pattern <sed_substitue_pattern>]"
|
||||
|
||||
declare -g ALBUM_DIR="."
|
||||
declare -g MUSIC_PATTERN="."
|
||||
declare -g SSP=""
|
||||
|
||||
declare -g MODE="DEFAULT"
|
||||
declare -g VERBOSE="FALSE"
|
||||
declare -g DRY_RUN="FALSE"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Version Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
anf_version_print()
|
||||
{
|
||||
echo ${ANF_VERSION} | sed -e 's/.*: //' -e 's/-/ /' -e 's/_/\./g' -e 's/\$$//'
|
||||
version_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Prin Help
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Help Print
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function help_print()
|
||||
anf_help_print()
|
||||
{
|
||||
echo "album_name_fix [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-a <album_dir>] [-p|--music_pattern <music_pattern>] [-s|--sed_substitute_pattern <sed_substitue_pattern>]"
|
||||
anf_version_print
|
||||
help_print
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Arg Parse
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
function args_parse()
|
||||
anf_args_parse()
|
||||
{
|
||||
mode="default"
|
||||
verbose="false"
|
||||
album_dir="."
|
||||
music_pattern="."
|
||||
|
||||
tmp_args=$(getopt -o a:p:s:ThVv --long album_dir:,music_pattern:,sed_substitute_pattern:,test,help,version,verbose -n 'album_name_fix' -- "$@")
|
||||
tmp_args=$(getopt -o a:p:s:ThVv --long album_dir:,music_pattern:,sed_substitute_pattern:,test,help,version,verbose -n "${NAME}" -- "$@")
|
||||
|
||||
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
|
||||
|
||||
# Note the quotes around `$TEMP': they are essential!
|
||||
eval set -- "${tmp_args}"
|
||||
|
||||
while true ; do
|
||||
while true
|
||||
do
|
||||
case "$1" in
|
||||
# Path options
|
||||
-a|--album_dir) shift; album_dir="$1"; shift;;
|
||||
-a|--album_dir) shift; ALBUM_DIR="$1"; shift;;
|
||||
|
||||
# Options
|
||||
-p|--music_pattern) shift; music_pattern="$1"; shift;;
|
||||
-s|--sed_substitute_pattern) shift; ssp="$1"; shift;;
|
||||
-p|--music_pattern) shift; MUSIC_PATTERN="$1"; shift;;
|
||||
-s|--sed_substitute_pattern) shift; SSP="$1"; shift;;
|
||||
|
||||
# Mode switches
|
||||
-T|--test) mode="test"; shift;;
|
||||
-h|--help) mode="exit"; help_print; shift;;
|
||||
-V|--version) mode="exit"; version_print; shift;;
|
||||
-T|--test) MODE="TEST"; shift;;
|
||||
-h|--help) MODE="EXIT"; anf_help_print; shift;;
|
||||
-V|--version) MODE="EXIT"; anf_version_print; shift;;
|
||||
|
||||
# Global options
|
||||
-v|--verbose) verbose="true"; shift;;
|
||||
-v|--verbose) VERBOSE="TRUE"; shift;;
|
||||
|
||||
#
|
||||
--) shift; break;;
|
||||
--) shift; break;;
|
||||
*) echo "args_parse internal error [$1] !"; exit 1;;
|
||||
esac
|
||||
done
|
||||
@@ -84,52 +124,42 @@ function args_parse()
|
||||
|
||||
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
shopt -s extglob
|
||||
|
||||
args_parse "$@"
|
||||
anf_args_parse "$@"
|
||||
|
||||
|
||||
|
||||
if [[ ${mode} == "exit" ]]
|
||||
if [[ ${MODE} == "EXIT" ]]
|
||||
then
|
||||
exit 0
|
||||
else
|
||||
if [[ ${mode} == "test" ]]
|
||||
if [[ ${MODE} == "TEST" ]]
|
||||
then
|
||||
dry_run=true
|
||||
else
|
||||
dry_run=false
|
||||
DRY_RUN="TRUE"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
|
||||
echo "mode: [${mode}] verbose: [${verbose}] album_dir: [${album_dir}] music_pattern: [${music_pattern}] sed_substitue_pattern: [${ssp}]" 1>&2
|
||||
echo_error "${NAME}: Mode: [${MODE}] Verbose: [${VERBOSE}] Album_Dir: [${ALBUM_DIR}] Music_Pattern: [${MUSIC_PATTERN}] Sed_Substitue_Pattern: [${SSP}]"
|
||||
|
||||
cd "${album_dir}"
|
||||
cd "${ALBUM_DIR}"
|
||||
|
||||
IFS="\n"
|
||||
find . -maxdepth 1 -name '*.flac' -o -name '*.FLAC' -o -name '*.ogg' -o -name '*.OGG' -o -name '*.mp3' -o -name '*.MP3' -o -name '*.m4a' -o -name '*.M4A' -o -name '*.ape' -o -name '*.APE' -o -name '*.wav' -o -name '*.WAV' -o -name '*.mp4' -o -name '*.MP4' -o -name '*.mkv' -o -name '*.MKV' | sed -e 's/^.\///' | grep -e "${music_pattern}" | sort |
|
||||
find . -maxdepth 1 -name '*.flac' -o -name '*.FLAC' -o -name '*.ogg' -o -name '*.OGG' -o -name '*.mp3' -o -name '*.MP3' -o -name '*.m4a' -o -name '*.M4A' -o -name '*.ape' -o -name '*.APE' -o -name '*.wav' -o -name '*.WAV' -o -name '*.mp4' -o -name '*.MP4' -o -name '*.mkv' -o -name '*.MKV' | sed -e 's/^.\///' | grep -e "${MUSIC_PATTERN}" | sort |
|
||||
while read track_file
|
||||
do
|
||||
IFS=" "
|
||||
new_track_file="$(fix_file_name "${track_file}" "${ssp}")"
|
||||
new_track_file="$(mt_fix_file_name "${track_file}" "${SSP}")"
|
||||
|
||||
if [[ "${new_track_file}" != "${track_file}" ]]
|
||||
then
|
||||
echo "Moving '${track_file}' into '${new_track_file}'..."
|
||||
if [[ "${dry_run}" != "true" ]]
|
||||
then
|
||||
mv -- "${track_file}" "${new_track_file}"
|
||||
else
|
||||
if [[ "${verbose}" == "true" ]]
|
||||
then
|
||||
echo mv -- "${track_file}" "${new_track_file}"
|
||||
fi
|
||||
fi
|
||||
|
||||
cmd_exec mv -- "${track_file}" "${new_track_file}"
|
||||
else
|
||||
echo "Skiping '${track_file}'..."
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user