Skip to content

Instantly share code, notes, and snippets.

@m00shm00sh
Created November 17, 2016 09:19
Show Gist options
  • Save m00shm00sh/ad783f383eb57ca67f706703d0aee792 to your computer and use it in GitHub Desktop.
Save m00shm00sh/ad783f383eb57ca67f706703d0aee792 to your computer and use it in GitHub Desktop.
Trim an album description to remove the last instance of (...) . File format invariant
#!/bin/bash
ALB="$(ffprobe "$1" 2>&1 | grep album | cut -d: -f2 | sed -re \
's/^\s+//
s/\s+$//
s/\s+\([^()]+\)$//' )"
ffmpeg -i "$1" -c copy -metadata album="$ALB" "$(echo "$1" | sed 's/_$//')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment