Skip to content

Instantly share code, notes, and snippets.

@moaazsidat
Created August 8, 2017 22:42
Show Gist options
  • Save moaazsidat/60d8b453dcac72b54c7bb0fc0cc78a1e to your computer and use it in GitHub Desktop.
Save moaazsidat/60d8b453dcac72b54c7bb0fc0cc78a1e to your computer and use it in GitHub Desktop.
mp3 utils

Update title for mp3 files

for f in *.mp3; do ffmpeg -i "$f" -metadata title="$f" "Fooled_by_Randomness_$f"; done

Append 0 to all filenames

for f in *.mp3; do mv "$f" "0$f"; done

Get filename without extension

for f in *.mp3; do echo $(basename ${f%.*}); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment