Created
November 17, 2016 09:19
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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