[求助]想寫個改MP3標籤的小程式

我想寫個改MP3標籤的小程式

例如我有100首MP3,每首MP3都唔同人唱,個"演出者"(Window果個)都唔同
a.mp3的"演出者"是"a君",b.mp3的"演出者"是"b君",如此類推
我想寫個小程式可以全部刪除最後1個字,再全部加番1個字
在我個例子就係刪除個a.mp3個"君"字,再加番個"人"個字,100首都係咁做

想問要怎樣才可以做到呢?(除了手動逐首改)
最好可以用dos command寫成bat檔,如果不行,要用哪個程式?

用咩程式唔係問題
問題係你明唔明白mp3檔案個format 先

TOP

原帖由 大蝦 於 2008-11-11 20:08 發表
用咩程式唔係問題
問題係你明唔明白mp3檔案個format 先

其實唔多明
不過我見到有D software可以成個folder的mp3轉標籤用的code(ASCII, unicode...),估計應該都可以咁做

[ 本帖最後由 hold_find 於 2008-11-11 21:46 編輯 ]

TOP

原帖由 hold_find 於 2008-11-11 19:34 發表
我想寫個改MP3標籤的小程式

例如我有100首MP3,每首MP3都唔同人唱,個"演出者"(Window果個)都唔同
a.mp3的"演出者"是"a君",b.mp3的"演出者"是"b君",如此類推
我想寫個小程式可以 ...


你google 下, 好容易搵到id3 tag 既格式,
我都做過類似既野, 用java 寫左個 program  parse 同埋修改id3 tag 既內容, 唔太困難, 我亦都相信任何可以讀寫sequential file 既programming language 都可以做到.

TOP

TOP

原帖由 thinkpanda 於 2008-11-11 21:54 發表


你google 下, 好容易搵到id3 tag 既格式,
我都做過類似既野, 用java 寫左個 program  parse 同埋修改id3 tag 既內容, 唔太困難, 我亦都相信任何可以讀寫sequential file 既programming language 都可以做到.


Depend on the scale of your project.
If you don't care about the exact format, I prefer make use of existing library.

TOP

mp3 tag is quite tricky...........since there is no one standard for the tag.
In different kind of mp3 tags, the tags can be at the front of the file,or at the end of the file.there can be multi tags in a file with different encoding. And also the encoding may or may not be described in the file. If you want your application can handle various type of mp3 tag, it would be quite a difficult and dirty job.

TOP