Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to obtain MP3 Audio duration by Java

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to achieve Java to obtain MP3 audio duration, the article is very detailed, has a certain reference value, interested friends must read it!

Maven relies on org jaudiotagger 2.0.1 code import org.jaudiotagger.audio.AudioFileIO;import org.jaudiotagger.audio.mp3.MP3AudioHeader;import org.jaudiotagger.audio.mp3.MP3File;import java.io.File / * * @ Author huyi @ Date 15:06 @ Description on 2021-9-30: mp3 audio tool * / public class AudioMp3Utils {/ * obtain the playback duration of mp3 voice files (seconds) mp3 * * @ param filePath * @ return * / public static void getMp3Duration (String filePath) {try {File mp3File = new File (filePath); MP3File f = (MP3File) AudioFileIO.read (mp3File); MP3AudioHeader audioHeader = (MP3AudioHeader) f.getAudioHeader () System.out.println ("duration:" + Float.parseFloat (audioHeader.getTrackLength () + "));} catch (Exception e) {e.printStackTrace ();}} public static void main (String [] args) {getMp3Duration (" E:\ csdn\\ dzgz.mp3 ");}}

Execution result:

The above is all the content of the article "how to obtain MP3 Audio duration by Java". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report