91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java 中怎么從視頻里面提取音頻

發布時間:2021-08-03 15:07:21 來源:億速云 閱讀:520 作者:Leah 欄目:編程語言

java 中怎么從視頻里面提取音頻,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

spring boot項目pom文件中添加以下依賴

    <!-- https://mvnrepository.com/artifact/ws.schild/jave-core -->
		<dependency>
			<groupId>ws.schild</groupId>
			<artifactId>jave-core</artifactId>
			<version>3.1.1</version>
		</dependency>
     <!-- 以下依賴根據系統二選一 -->
     <!-- win系統平臺的依賴 -->
		<dependency>
			<groupId>ws.schild</groupId>
			<artifactId>jave-nativebin-win64</artifactId>
			<version>3.1.1</version>
		</dependency>
     <!-- linux系統平臺的依賴 -->
		<dependency>
			<groupId>ws.schild</groupId>
			<artifactId>jave-nativebin-linux64</artifactId>
			<version>3.1.1</version>
		</dependency>

Java單類實現代碼,復制到Spring boot項目中

 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;

//java項目www.fhadmin.org
public class VideoToAudio {
 
 
    //要輸出的音頻格式
    private static String outputFormat="mp3";
 
 
    /**
     * 獲得轉化后的文件名
     * @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;
    }
 
    /**
     * 轉化音頻格式
     * @param sourceFilePath : 源視頻文件路徑
     * @param targetFilePath : 目標音樂文件路徑
     * @return
     */
    public static void transform(String sourceFilePath, String targetFilePath) {
        File source = new File(sourceFilePath);
        File target = new File(targetFilePath);
        // 設置音頻屬性
        AudioAttributes audio = new AudioAttributes();
        audio.setCodec(null);
        // 設置轉碼屬性
        EncodingAttributes attrs = new EncodingAttributes();
        attrs.setOutputFormat(outputFormat);
        attrs.setAudioAttributes(audio);
        try {
            // 音頻轉換格式類
            Encoder encoder = new Encoder();
            MultimediaObject mediaObject=new MultimediaObject(source);
            encoder.encode(mediaObject, target, attrs);
            System.out.println("轉換已完成...");
        }  catch (EncoderException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 批量轉化音頻格式
     * @param sourceFolderPath : 源視頻文件夾路徑
     * @param targetFolderPath : 目標音樂文件夾路徑
     * @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");
    }
 
 
 
 
}

運行結果截圖

java 中怎么從視頻里面提取音頻

關于java 中怎么從視頻里面提取音頻問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

红原县| 鄂伦春自治旗| 海林市| 荣成市| 灵川县| 广元市| 汕头市| 田林县| 上杭县| 和龙市| 庄河市| 南雄市| 平陆县| 田阳县| 乌拉特后旗| 登封市| 临漳县| 夏邑县| 塘沽区| 达拉特旗| 通海县| 固安县| 平顺县| 兴安盟| 铅山县| 金秀| 改则县| 志丹县| 子洲县| 惠来县| 浦城县| 哈尔滨市| 南陵县| 许昌市| 阳曲县| 固安县| 汉寿县| 乌兰浩特市| 武夷山市| 达拉特旗| 通江县|