當(dāng)你遇到一套系列視頻的背景音樂有極高的興趣,想要把這些BGM全都保存下來,還需要一首一首地通過音樂識別來操作么?作為程序員的我們,顯然就不需要。下面,就和大家分享一下關(guān)于僅需要30行的Java代碼就可以實(shí)現(xiàn)視頻批量轉(zhuǎn)換為音頻。
本功能實(shí)現(xiàn)需要用到第三方j(luò)ar包 jave,JAVE 是java調(diào)用FFmpeg的封裝工具。
spring boot項(xiàng)目pom文件中添加以下依賴
<!-- https://mvnrepository.com/artifact/ws.schild/jave-core -->
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-core</artifactId>
<version>3.1.1</version>
</dependency>
<!-- 以下依賴根據(jù)系統(tǒng)二選一 -->
<!-- win系統(tǒng)平臺的依賴 -->
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-win64</artifactId>
<version>3.1.1</version>
</dependency>
<!-- linux系統(tǒng)平臺的依賴 -->
<dependency>
<groupId>ws.schild</groupId>
<artifactId>jave-nativebin-linux64</artifactId>
<version>3.1.1</version>
</dependency>
Java單類實(shí)現(xiàn)代碼,復(fù)制到Spring boot項(xiàng)目中,用idea編輯器 主方法運(yùn)行。
import ws.schild.jave.Encoder;
import ws.schild.jave.EncoderException;
import ws.schild.jave.MultimediaObject;
import ws.schild.jave.encode.AudioAttributes;
import ws.schild.jave.encode.EncodingAttributes;
import java.io.File;
import java.util.Arrays;
public class VideoToAudio {
//要輸出的音頻格式
private static String outputFormat="mp3";
/**
* 獲得轉(zhuǎn)化后的文件名
* @param sourceFilePath : 源視頻文件路徑
* @return
*/
public static String getNewFileName(String sourceFilePath) {
File source = new File(sourceFilePath);
String fileName=source.getName().substring(0, source.getName().lastIndexOf("."));
return fileName+"."+outputFormat;
}
/**
* 轉(zhuǎn)化音頻格式
* @param sourceFilePath : 源視頻文件路徑
* @param targetFilePath : 目標(biāo)音樂文件路徑
* @return
*/
public static void transform(String sourceFilePath, String targetFilePath) {
File source = new File(sourceFilePath);
File target = new File(targetFilePath);
// 設(shè)置音頻屬性
AudioAttributes audio = new AudioAttributes();
audio.setCodec(null);
// 設(shè)置轉(zhuǎn)碼屬性
EncodingAttributes attrs = new EncodingAttributes();
attrs.setOutputFormat(outputFormat);
attrs.setAudioAttributes(audio);
try {
// 音頻轉(zhuǎn)換格式類
Encoder encoder = new Encoder();
MultimediaObject mediaObject=new MultimediaObject(source);
encoder.encode(mediaObject, target, attrs);
System.out.println("轉(zhuǎn)換已完成...");
} catch (EncoderException e) {
e.printStackTrace();
}
}
/**
* 批量轉(zhuǎn)化音頻格式
* @param sourceFolderPath : 源視頻文件夾路徑
* @param targetFolderPath : 目標(biāo)音樂文件夾路徑
* @return
*/
public static void batchTransform(String sourceFolderPath, String targetFolderPath) {
File sourceFolder = new File(sourceFolderPath);
if(sourceFolder.list().length!=0){
Arrays.asList(sourceFolder.list()).forEach(e->{
transform(sourceFolderPath+"\"+e, targetFolderPath+"\"+getNewFileName(e));
});
}
}
public static void main(String[] args) {
batchTransform("C:\Users\tarzan\Desktop\video","C:\Users\tarzan\Desktop\audio");
}
}
運(yùn)行結(jié)果截圖
測試結(jié)果
視頻格式為mp4,大小約6.65MB,轉(zhuǎn)為音頻格式MP3,大小約1.60MB,轉(zhuǎn)化時間1s左右。
到此,本篇關(guān)于使用Java代碼實(shí)現(xiàn)視頻批量轉(zhuǎn)換音頻的詳細(xì)內(nèi)容就介紹完了,有興趣的小伙伴們可以嘗試一下。另外,想要了解更多相關(guān)Java其他有趣好玩的項(xiàng)目內(nèi)容,可以搜索W3Cschool以前的文章或繼續(xù)瀏覽下面的相關(guān)文章!