|

楼主 |
发表于 2003-12-14 11:38:27
|
显示全部楼层
最初由 _z_ 发表
you must know the MP3 file format
go to http://www.wotsit.org/search.asp?page=5&s=music
to down a document,
write a structure and read the information into it.
example:
struct MP3{
/* depend on what file format it is */
};
int main(void)
{
struct MP3 mp3;
open a mp3 file;
read a given size data into mp3 structure;
print some mp3 information;
return 0;
}
这么多资料,要好好研究一段时间了 |
|