java获取mp3的时长和播放mp3文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java获取mp3的时长和播放mp3文件相关的知识,希望对你有一定的参考价值。

所需包为jaudiotagger-2.2.6-SNAPSHOT.jar和jl1.0.1.jar。

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;

import org.jaudiotagger.audio.AudioFileIO;
import org.jaudiotagger.audio.mp3.MP3AudioHeader;
import org.jaudiotagger.audio.mp3.MP3File;

import javazoom.jl.player.Player;

public class MusicUtil {

    public static void play(String position) {
        try {
            BufferedInputStream buffer = new BufferedInputStream(new FileInputStream(position));
            Player player = new Player(buffer);
            player.play();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    public static int getDuration(String position) {

        int length = 0;
        try {
            MP3File mp3File = (MP3File) AudioFileIO.read(new File(position));
            MP3AudioHeader audioHeader = (MP3AudioHeader) mp3File.getAudioHeader();

            // 单位为秒
            length = audioHeader.getTrackLength();

            return length;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return length;
    }
    
    public static void main(String[] args) {
        String position = "逃跑计划-夜空中最亮的星.mp3";
        getDuration(position);
        play(position);
    }
}

 

以上是关于java获取mp3的时长和播放mp3文件的主要内容,如果未能解决你的问题,请参考以下文章

请教java如何实现获取一段mp3的总时长

怎么获取一段mp3格式的音频的播放时长

在linux下怎样用c语言获取MP3时长?最好有个例子!

如何获取音频文件的准确时长,比如MP3

java 获取音频视频文件时长代码示例

java 获取音频视频文件时长代码示例