java 解析MP3檔案

來源:互聯網
上載者:User

首先需要知道的是,MP3檔案的檔案資訊都放在檔案最後的128個位元組裡面,這128個位元組分別儲存的資訊如下:

char Header[3];    /* 標籤頭必須是"TAG"否則認為沒有標籤 */
char Title[30];    /* 標題 */
char Artist[30];   /* 作者 */
char Album[30];    /* 專集 */
char Year[4];      /* 出品年代 */
char Comment[28]; /* 備忘 */
char reserve;      /* 保留 */
char track;;       /* 音軌 */
char Genre;        /* 類型 */

 

代碼:

public class ReadMP3 {

 

/**

* @param args

* @throws Exception 

*/

public static void main(String[] args) throws Exception {

// TODO Auto-generated method stub

 

String path = System.getProperty("user.dir")+"/images/wenbie.mp3";

readMp3ID3V1(path);

}

 

public   static   void   readMp3ID3V1(String path)   throws   Exception{ 

        byte[] buf = new byte[1024]; 

        File file = new File(path); 

 

      FileInputStream fis = new FileInputStream(file); 

      /*---讀取MP3檔案尾部資訊,並顯示----*/ 

      long size = file.length(); 

      System.out.println("檔案總位元組數:"+size);

 

      fis.skip(size-128); 

 

      //標誌位TAG:3  byte 

      fis.read(buf,0,3); 

      String tag = new String(buf,0,3); 

      System.out.println( "ID3V1:  "+tag); 

 

      //歌曲名稱 30 byte 

      fis.read(buf,0,30); 

      String songname = new String(buf,0,30);

      System.out.println( "song   name:   "+songname); 

 

      //歌手名稱   30   byte 

      int len = fis.read(buf,0,30); 

      String songername = new String(buf,0,len); 

      System.out.println( "songer   name:   "+songername); 

 

      //專輯名稱   30   byte 

      len = fis.read(buf,0,30); 

      String albumname = new String(buf,0,len); 

      System.out.println( "album   name:   "+albumname); 

 

      //年代 4 byte 

      fis.read(buf,0,4); 

      String year = new String(buf,0,4); 

      System.out.println( "year   : "+year); 

 

      //comment 30 byte 

      fis.read(buf,0,28); 

      len = fis.read(buf,0,28); 

      String con = new String(buf,0,len); 

      System.out.println( "comment:   "+con); 

      //genre   1   byte 

      fis.read(buf,0,1); 

      System.out.println( "Genre:   "+buf[0]); 

      fis.close(); 

 

    }

}

我讀取的檔案位於與src平行目錄的images下。

運行結果為:

檔案總位元組數:4291383

ID3V1:  TAG

song   name:   吻別

 

注意:有些MP3檔案並沒有嚴格按照ID3V1的資料結構來儲存資訊,所以,有可能只能讀取到部分資訊。可以用UltraEdit開啟MP3檔案來查看相信的儲存資訊。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.