thanks to your script, should work for everything #1
mrfragger
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
for f in *.opus ; do kid3-cli -c "set title '$(printf '%n' "$f")'" "$f" ; doneor mp3, mp4, etc.
also I figured it out cuz trying to pipe python titlecase to filenames and it took me forever to figure out syntax
for f in *.opus ; do mv -i -- "$f" "$(printf '%s\n' "$f" | titlecase)" ; doneNow I combine it into one command
for f in *.opus ; do mv -i -- "$f" "$(printf '%s\n' "$f" | titlecase)" ; kid3-cli -c "set title '$(printf '%n' "$f")'" "$f" ; doneBeta Was this translation helpful? Give feedback.
All reactions