zsh: add tag_audio
This commit is contained in:
parent
2342380888
commit
b0aba545a8
22
.config/zsh/functions/tag_audio
Executable file
22
.config/zsh/functions/tag_audio
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env zsh
|
||||
# tag album(s)
|
||||
|
||||
setopt LOCAL_OPTIONS ERR_RETURN NO_UNSET PIPE_FAIL
|
||||
|
||||
function _tag_audio_extra_tags() {
|
||||
bpmdetect --console --save --min 40 --max 220 --limit ${dir}/*
|
||||
rg-dir ${dir}
|
||||
}
|
||||
|
||||
for dir in ${@}; do
|
||||
picard ${dir}
|
||||
mksmol ${dir}
|
||||
|
||||
if [[ ${dir} == ${@[-1]} ]]; then
|
||||
_tag_audio_extra_tags
|
||||
else
|
||||
_tag_audio_extra_tags &
|
||||
fi
|
||||
done
|
||||
|
||||
unfunction _tag_audio_extra_tags
|
Loading…
Reference in New Issue
Block a user