Java 使用 FFmpeg 處理視頻文件示例代碼詳解
目前在公司做一個小東西,里面用到了 FFmpeg 簡單處理音視頻,感覺功能特別強大,在做之前我寫了一個小例子,現在記錄一下分享給大家,希望大家遇到這個問題知道解決方案。
FFmpeg是一套可以用來記錄、轉換數字音頻、視頻,并能將其轉化為流的開源計算機程序。采用LGPL或GPL許可證。它提供了錄制、轉換以及流化音視頻的完整解決方案。它包含了非常先進的音頻/視頻編解碼庫libavcodec,為了保證高可移植性和編解碼質量,libavcodec里很多code都是從頭開發的。
FFmpeg在Linux平臺下開發,但它同樣也可以在其它操作系統環境中編譯運行,包括Windows、Mac OS X等。這個項目最早由Fabrice Bellard發起,2004年至2015年間由Michael Niedermayer主要負責維護。許多FFmpeg的開發人員都來自MPlayer項目,而且當前FFmpeg也是放在MPlayer項目組的服務器上。項目的名稱來自MPEG視頻編碼標準,前面的'FF'代表'Fast Forward'。
首先說明,我是在 https://ffmpeg.zeranoe.com/builds/ 這個地方下載的軟件,Windows 和 Mac 解壓之后即可使用。具體代碼如下:
package cn.bridgeli.demo;import org.junit.Test;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;/** * @author BridgeLi * @date 2020/2/29 15:40 */public class FfmpegTest { private static final String OS = System.getProperty('os.name').toLowerCase(); private static final String FFMPEG_PATH = '/Users/bridgeli/ffmpeg-20200216-8578433-macos64-static/bin/ffmpeg'; @Test public void testFfmpeg() { String inputWavFile = '/Users/bridgeli/inputWavFile.wav'; String inputMp3File = '/Users/bridgeli/inputMp3File.mp3'; String inputMp4File = '/Users/bridgeli/inputMp4File.mp4'; String outMergeMp3File = '/Users/bridgeli/outMergeMp3File.mp3'; String outMergeMp3AndMp4File = '/Users/bridgeli/outMergeMp3AndMp4File.mp4'; String outConcatMp3File = '/Users/bridgeli/outConcatMp3File.mp3'; // 拼接 String command = null; if (OS.contains('mac') || OS.contains('linux')) { command = FFMPEG_PATH + ' -i ' + inputMp3File + ' -i ' + inputWavFile + ' -filter_complex [0:0][1:0]concat=n=2:v=0:a=1[a] -map [a] ' + outConcatMp3File; } else if (OS.contains('windows')) { command = FFMPEG_PATH + ' -i ' + inputMp3File + ' -i ' + inputWavFile + ' -filter_complex '[0:0][1:0]concat=n=2:v=0:a=1[a]' -map '[a]' ' + outConcatMp3File; } // 合并(視頻和音頻)// String command = FFMPEG_PATH + ' -i ' + inputMp4File + ' -i ' + outConcatMp3File + ' -c:v copy -c:a aac -strict experimental ' + outMergeMp3AndMp4File; // 合并// String command = FFMPEG_PATH + ' -i ' + inputMp3File + ' -i ' + inputWavFile + ' -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 ' + outMergeMp3File; System.out.println(command); Process process = null; try { process = Runtime.getRuntime().exec(command); } catch (IOException e) { e.printStackTrace(); } if (null == process) { return; } try { process.waitFor(); } catch (InterruptedException e) { e.printStackTrace(); } try (InputStream errorStream = process.getErrorStream(); InputStreamReader inputStreamReader = new InputStreamReader(errorStream); BufferedReader br = new BufferedReader(inputStreamReader)) { String line = null; StringBuffer context = new StringBuffer(); while ((line = br.readLine()) != null) { context.append(line); } System.out.println('error message: ' + context); } catch (IOException e) { e.printStackTrace(); } process.destroy(); }}
在我的認知中,完成任務是第一位的,所以按照這個簡單處理一下音視頻是沒有問題的,具體更強大的語法,大家可以自己查詢相關文檔,也可以參考 https://www.jb51.net/article/181662.htm這篇文中,其中我個人也在學習中。下面說兩個在使用的過程中遇到的問題。
1. 我在測試的時候,DOS 和 bash 都沒有問題,但是 Java 一調用就出錯,仔細看報錯信息都是什么參數無效之類的,后面參考https://www.jb51.net/article/181668.htm這篇文章,原來都是一些單雙引號和空格什么之類的導致的,大家在用的時候可以注意下,也多看看報錯信息。
2. 因為我是從上面的文中提到的網址中直接下載解壓使用的,但是在部署測試環境的時候是讓運維幫忙部署的,因為上面也沒有運維直接使用的可執行文件,所以個人猜測運維是直接源碼安裝的,所以在使用的過程過中遇到了一個問題,沒有安裝 mp3 編碼庫導致的,具體參考 https://www.jb51.net/article/181671.htm 這篇文章解決,所以大家在安裝好環境之后可以先自己試著直接執行一下命令看看是否成功。
總結
到此這篇關于Java 使用 FFmpeg 處理視頻文件示例代碼詳解的文章就介紹到這了,更多相關java FFmpeg 處理視頻文件內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章:
