中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

睢宁县| 伽师县| 广宁县| 昆山市| 休宁县| 九江市| 张家界市| 慈利县| 佛山市| 赤峰市| 青河县| 汨罗市| 乐亭县| 濮阳市| 开远市| 平定县| 东辽县| 宾阳县| 楚雄市| 甘泉县| 古浪县| 阿克苏市| 报价| 阳高县| 陵川县| 志丹县| 万山特区| 布拖县| 个旧市| 闽清县| 红桥区| 河西区| 梅州市| 梅河口市| 台中县| 施秉县| 南安市| 双辽市| 枣阳市| 堆龙德庆县| 碌曲县|