source: flacrip/trunk/id3ascii

Last change on this file was 37, checked in by peter, 9 years ago

id3dump, id3load, id3ascii: scripts to dump and load ID3 info from an Mp3 file, and a script that converts ID3 tags down to ASCII-only

  • Property svn:executable set to *
File size: 216 bytes
Line 
1#!/bin/bash
2
3# converts the ID3 tag info in files given as arguments to ASCII-only,
4# using the Perl Unidecode module
5
6for FILE in "$@"; do
7    echo "$FILE"
8    ./id3dump "$FILE" | unidecode | ./id3load "$FILE"
9done
Note: See TracBrowser for help on using the repository browser.