Skip to content

Instantly share code, notes, and snippets.

View right-mouse's full-sized avatar
🏠
Working from home

Arvind Suresh right-mouse

🏠
Working from home
  • UHN
  • Toronto, Canada
View GitHub Profile
@right-mouse
right-mouse / lsmp3.sh
Last active April 14, 2021 01:58
List all mp3s in a folder with title, artist, track and album metadata using ffmpeg
#!/usr/bin/env bash
set -e
dir="$(pwd)"
if [ ! -z "$1" ]; then
dir="$1"
fi