Skip to content

Instantly share code, notes, and snippets.

@falzm
Created May 18, 2019 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save falzm/7c939002bdcab35bdaeaf13a282149e3 to your computer and use it in GitHub Desktop.
Save falzm/7c939002bdcab35bdaeaf13a282149e3 to your computer and use it in GitHub Desktop.
Strip all ID3 tags from an MP3 file
package main
import (
"os"
"github.com/bogem/id3v2"
)
func main() {
tag, err := id3v2.Open(os.Args[1], id3v2.Options{Parse: true})
if err != nil {
panic(err)
}
defer tag.Close()
tag.DeleteAllFrames()
if err = tag.Save(); err != nil {
panic(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment