从MP3中提取歌曲信息(C#)[3]

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 ufoer23 的 blog

 

            const int seekpos = 128;

            int rl = 0;

            byte[] info = new byte[seekpos];

            rl = stream.read(info,0,seekpos);

 

            fs.close();

            stream.close();

 

            return info;

        }

 

       再对上面返回的字节数组分段取出,并保存到mp3info结构中返回。

本文关键:从MP3中提取歌曲信息(C#)
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top