IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> JAVA音频研究7:读取MP3标签信息(ID3V1、ID3V2) -> 正文阅读

[移动开发]JAVA音频研究7:读取MP3标签信息(ID3V1、ID3V2)

在编写播放器的时候,需要读取mp3里包含的信息,于是写了下面的代码以读取ID3V2及ID3V1的信息,最终是数据保存在了info中 ,并且图片保存在了mp3文件同目录下。
需要注意的是,读取ID3V1信息的时候不知道它是用的什么编码,可能会导致读取的信息成为乱码。
如果有问题可以私聊我,若要使用直接复制粘贴即可
例:MediaInfo mediaInfo = new MediaInfo(file, id);
如果用不上id随意设置一个int类型数值即可,如 0;
编写不易,请多多点赞收藏 、打赏。
后续会编写读取falc格式的信息。

/**
 * mp3中
 * TAG_V1(ID3V1)包含了作者 、作曲 专辑信息等,长度128 byte
 * 标签头 TAG  3字节
 * 标题        30字节
 * 作者        30字节
 * 专辑        30字节
 * 出品年份     4字节
 * 备注        28字节
 * 保留        1字节
 * 音轨        1字节
 * 类型        1字节
 * TAG_V2(ID3V2)包含了作者、作曲专辑信息等,长度不固定,在 ID3V1主扩展的信息
 * Frame 一系列的媒体信息
 * 标题 TIT2
 * 作者 TPE1
 * 图片 APIC
 * 等等
 */
public class MediaInfo implements Serializable {
    private int viewType = 0;
    private HashMap info = new HashMap<String, String>();
    private int id;
    private byte[] byteArray = null;
    byte[] imageByte = null;
    File file = null;

    public MediaInfo(File file, int id){
        this.file = file;
        this.id = id;
        info.put("PATH", file.getAbsolutePath());
        getID3V2(this.file);
    }

    public void setViewType(int viewType) {
        this.viewType = viewType;
    }

    public int getViewType() {
        return viewType;
    }

    public String getFilePath() { return String.valueOf(info.get("PATH"));}

    public String getImagePath() { return String.valueOf(info.get("APIC"));}

    public String getTitle(){
        return String.valueOf(info.get("TIT2"));
    }

    public String getAuthor(){
        return String.valueOf(info.get("TPE1"));
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }

    public byte[] saveImageByte(byte[] byteArray, int offset, int length){
        byte[]  imageByte = new byte[length];
        for(int i = 0; i < length; i++){
            imageByte[i] = byteArray[offset +  i];
        }
        return imageByte;
    }

    public int scanID3V2(int fileFramSize, String target) {
        int framsize = 0;
        String charset = Charset.defaultCharset().name();
        fileFramSize += 4;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            framsize = Byte.toUnsignedInt(byteArray[fileFramSize]) * 0x1000000
                    + Byte.toUnsignedInt(byteArray[fileFramSize + 1]) * 0x10000
                    + Byte.toUnsignedInt(byteArray[fileFramSize + 2]) * 0x100
                    + Byte.toUnsignedInt(byteArray[fileFramSize + 3]);
        }
        fileFramSize += 6;

        //Log.e(target, "编码: " + Byte.toString(byteArray[fileFramSize]));
        try {
            if (Byte.toString(byteArray[fileFramSize]).equals("0")) {
                charset = "ISO-8859-1";
            } else if (Byte.toString(byteArray[fileFramSize]).equals("1")) {
                charset = "UTF-16";
            } else if (Byte.toString(byteArray[fileFramSize]).equals("2")) {
                charset = "UTF-16BE";
            } else if (Byte.toString(byteArray[fileFramSize]).equals("3")) {
                charset = "UTF-8";
            }

            //Log.e(target, ""+info.get(target)+"\n");
            if(target.equals("APIC")){
                getImageByte_ID3V2(new String(byteArray, fileFramSize  + 1, 25, charset), fileFramSize, framsize);
            }else {
                info.put(target, new String(byteArray, fileFramSize  + 1, framsize - 1, charset));;
            }

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        fileFramSize += framsize;
        //Log.e(target, ""+info.get(target)+"\n");
        charset = null;
        //Log.e("fileFramSize", ""+fileFramSize+"\n");
        //Log.e("byteArray.length", ""+byteArray.length+"\n");
        if (fileFramSize > (byteArray.length / 2) && info.containsKey("TIT2") && info.containsKey("TPE1")){return -1;}
        return fileFramSize;
    }

    public byte[] getTargetByte(byte[] imageByte, byte[] startByte, byte[] endByte){    //定义寻找目标字节开始的下标方法(索引)
        int startIndex = -1, endIndex = -1;
        byte[] targetByte = null;

        for(int i = 0; i < imageByte.length - startByte.length ; i++) {

            for(int k = 0; k < startByte.length; k++){
                if(imageByte[i + k] != startByte[k]){
                    break;
                }
                if (k == startByte.length - 1){startIndex = i;}
            }

            if(startIndex  != -1){
                break;
            }
        }

        if(startIndex != -1){
            for(int i = imageByte.length - 1; i >= endByte.length - 1; i--) {

                for(int k = 0; k < endByte.length; k++){
                    if(imageByte[i - k] != endByte[endByte.length - 1 - k]){
                        break;
                    }
                    if (k == endByte.length - 1){endIndex = i;}
                }

                if(endIndex  != -1){
                    break;
                }
            }
        }else{ return null; }

        //Log.e("endIndex", endIndex + "");
        if(endIndex != -1 && endIndex > startIndex){
            targetByte = new byte[endIndex - startIndex + 1];
            for(int i = 0; i < targetByte.length; i++) {
                targetByte[i] = imageByte[startIndex + i];
            }
        }else{ return null;}

        return targetByte;
    }

    public void createImage(){
        File imageFile = new File(file.getParent() + "/musicImage");
        char[] temp =  getAuthor().toCharArray();
        if(!imageFile.exists()){
            imageFile.mkdir();
        }
        for(int i = 0, count  = 0; i <  temp.length; i++){
            if(temp[i] == '/'){
                if(++count == 3){
                    this.info.put("TPE1", String.valueOf(temp,0, i) + "……");
                }
            }
        }
        temp = null;
        Log.e("temp", getAuthor());
        imageFile = new File(file.getParent() + "/musicImage/" + getAuthor().replace("/","、")
                + "_" + getTitle().replace("/","、") + "." + this.info.get("APIC"));
        FileOutputStream fileOutputStream = null;
        //Log.e("图片路径", imageFile.getAbsolutePath());
        //Log.e("图片是否存在", imageFile.exists() + "");
        if(imageFile.exists() == false){
            try {
                imageFile.createNewFile();
                fileOutputStream = new FileOutputStream(imageFile);
                fileOutputStream.write(this.imageByte);
                fileOutputStream.close();
                fileOutputStream = null;
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        info.put("APIC",imageFile.getAbsolutePath());
        this.imageByte  = null;
        imageFile = null;
    }

    public void getImageByte_ID3V2(String imageInfo, int fileFramSize, int framsize){
        Log.e("imageInfo", ""+ imageInfo+"\n");
        if(imageInfo.toLowerCase().indexOf("jfif", 11) != -1
                || imageInfo.toLowerCase().indexOf("jpg", 11) != -1
                || imageInfo.toLowerCase().indexOf("jpeg", 11) != -1){
            byte[] JPGStartByte = new byte[] {(byte) 0xFF,(byte) 0xD8,(byte) 0xFF};
            byte[] JPGEndByte = new byte[] {(byte) 0xFF,(byte) 0xD9};
            this.info.put("APIC", "jpg");
            //Log.e("图片类型", ""+ info.get("APIC")+"\n");
            this.imageByte = getTargetByte(saveImageByte(this.byteArray,fileFramSize, framsize), JPGStartByte,  JPGEndByte);

        }else if(imageInfo.toLowerCase().indexOf("png", 11) != -1){
            byte[] PNGStartByte = new byte[] {(byte) 0x89,(byte) 0x50,(byte) 0x4E,(byte) 0x47};
            byte[] PNGEndByte = new byte[] {(byte) 0xAE,(byte) 0x42,(byte) 0x60,(byte) 0x82};
            this.info.put("APIC", "png");
            //Log.e("图片类型", ""+ info.get("APIC")+"\n");
            this.imageByte = getTargetByte(saveImageByte(this.byteArray,fileFramSize, framsize), PNGStartByte,  PNGEndByte);

        }else if(imageInfo.toLowerCase().indexOf("gif", 11) != -1){
            byte[] GIFStartByte = new byte[] { (byte) 0x47,(byte) 0x49,(byte) 0x46,(byte) 0x38};
            byte[] GIFEndByte = new byte[] { (byte) 0x00,(byte) 0x3B};
            this.info.put("APIC", "gif");
            //Log.e("图片类型", ""+ info.get("APIC")+"\n");
            this.imageByte = getTargetByte(saveImageByte(this.byteArray,fileFramSize, framsize), GIFStartByte,  GIFEndByte);
        }

        //Log.e("图片类型", ""+ info.get("APIC")+"\n");
    }

    public void getID3V2(File file){
        this.byteArray = new byte[10];
        //fileFramSize保存标签内容大小,不包含标签头大小(10 byte)
        int fileFramSize = 0;
        //framSize保存标签帧内容大小,不包含帧头大小(10 byte)
        String framHead = null;
        try(RandomAccessFile accessFile = new RandomAccessFile(file,"r")) {
            accessFile.seek(0);
            accessFile.read(byteArray);
            //Log.e("getID3V2 ", new String(byteArray,0,3)+ "");
            if(new String(byteArray,0,3).equals("ID3") && Byte.toString(byteArray[3]).equals("3")){
                fileFramSize = (byteArray[6]&0x7F)*(0x200000)+(byteArray[7]&0x7F)*(0x4000)
                        +(byteArray[8]&0x7F)*(0x80) + (byteArray[9]&(0x7F));
                //Log.e("fileFramSize", "" + fileFramSize);
                byteArray = new byte[fileFramSize];
                accessFile.read(byteArray);
                //fileFramSize 重赋值为0记录当前读取位置
                fileFramSize = 0;
                while(fileFramSize < byteArray.length - 10){
                    framHead = new String(byteArray,fileFramSize,4);
                    fileFramSize = scanID3V2(fileFramSize, framHead);
                    if(fileFramSize == -1){break;}
                }
                createImage();
            }else {
                getID3V1(file);
            }
        } catch (IOException e) {
            e.printStackTrace();
            getID3V1(file);
        }
        framHead = null;
        this.file = null;
        this.byteArray  = null;
    }

    //使用流打开的时候要注意,我们需要的是 最后128字节的信息
    public void getID3V1(File file){
        byteArray = new byte[128];
        try(RandomAccessFile accessFile = new RandomAccessFile(file,"r")) {
            //移动到最后128字节的位置
            accessFile.seek(accessFile.length() - 128);
            //Log.e("TAG", "length: " + length);
            //Log.e("TAG", "tag: " + new String(byteArray, 0, 3));
            if(!"TAG".equalsIgnoreCase(new String(byteArray, 0, 3))){
                info.put("标题", "未知");
                info.put("作者", "未知");
                info.put("专辑", "未知");
                info.put("年份", "未知");
            }
            else{
                info.put("标题", new String(byteArray, 3, 30));
                info.put("作者", new String(byteArray, 33, 30));
                info.put("专辑", new String(byteArray, 63, 30));
                info.put("年份", new String(byteArray, 93, 4));
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 21:02:21  更:2022-03-21 21:03:22 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 19:00:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码