Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # dynamically: list tags, edit one with sed, rewrite tags
  2. vorbiscomment -l file.ogg | sed 's/^genre=.*/GENRE=Black Metal/' | vorbiscomment -w file.ogg
  3.  
  4. # with a temporary file (it's actually one of the examples in the manpage)
  5. # (a bit longer/more difficult to use in a for loop,
  6. # since you can specify only one input file)
  7. vorbiscomment -l file.ogg > comments.txt
  8. <edit comments.txt with vim/nano/sed>
  9. vorbiscomment -w -c comments.txt file.ogg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement