您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Java如何實現(xiàn)獲取wav時間長度”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Java如何實現(xiàn)獲取wav時間長度”這篇文章吧。
<dependency> <groupId>org</groupId> <artifactId>jaudiotagger</artifactId> <version>2.0.1</version> </dependency>
import org.jaudiotagger.audio.wav.util.WavInfoReader; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; /** @Author huyi @Date 2021/9/30 14:46 @Description: 音頻工具類 */ public class AudioWavUtils { public static void getWavInfo(String filePath) throws Exception { File file = new File(filePath); WavInfoReader wavInfoReader = new WavInfoReader(); RandomAccessFile raf = new RandomAccessFile(file, "r"); // wav音頻時長 long duration = (long) (wavInfoReader.read(raf).getPreciseLength() * 1000); // wav音頻采樣率 int sampleRate = toInt(read(raf, 24, 4)); System.out.println("duration -> " + duration + ",sampleRate -> " + sampleRate); raf.close(); } public static int toInt(byte[] b) { return ((b[3] << 24) + (b[2] << 16) + (b[1] << 8) + (b[0])); } public static byte[] read(RandomAccessFile rdf, int pos, int length) throws IOException { rdf.seek(pos); byte[] result = new byte[length]; for (int i = 0; i < length; i++) { result[i] = rdf.readByte(); } return result; } public static void main(String[] args) throws Exception { getWavInfo("E:\\csdn\\dzgz.wav"); } }
輸出結(jié)果:
duration為音頻時長,單位毫秒,sampleRate為采樣率。
以上是“Java如何實現(xiàn)獲取wav時間長度”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。