溫馨提示×

溫馨提示×

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

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

Java中怎么利用ffmpeg將音頻和視頻合成視頻

發(fā)布時間:2021-06-16 14:26:26 來源:億速云 閱讀:352 作者:Leah 欄目:編程語言

Java中怎么利用ffmpeg將音頻和視頻合成視頻,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

1、視頻格式轉(zhuǎn)換功能

ffmpeg視頻轉(zhuǎn)換功能。視頻格式轉(zhuǎn)換,比如可以將多種視頻格式轉(zhuǎn)換為flv格式,可不是視頻信號轉(zhuǎn)換  。

ffmpeg可以輕易地實現(xiàn)多種視頻格式之間的相互轉(zhuǎn)換(wma,rm,avi,mod等),例如可以將攝錄下的視頻avi等轉(zhuǎn)成現(xiàn)在視頻網(wǎng)站所采用的flv格式。

2、視頻截圖功能

對于選定的視頻,截取指定時間的縮略圖。視頻抓圖,獲取靜態(tài)圖和動態(tài)圖,不提倡抓gif文件;因為抓出的gif文件大而播放不流暢

3、給視頻加水印功能

使用ffmpeg 視頻添加水印(logo)。

好了,下面開始今天的正文。

借助第三方工具ffmpeg合成視頻

需求:在小破站上下載了一些視頻,但是放到電腦里面看,我擦,聲音文件和視頻文件是分開的。

  1. 正確安裝ffmpeg并配置好環(huán)境變量。

  2. Java代碼測試

Java中怎么利用ffmpeg將音頻和視頻合成視頻

里面是下載的視頻和音頻

Java中怎么利用ffmpeg將音頻和視頻合成視頻

我就上代碼遞歸了,只要用正確的ffmpeg的命令和Java調(diào)用ffmpeg.exe的程序,就可以合成啦。

package com.lovely.test;

import java.io.BufferedReader;
import java.io.File;
//import java.io.FileInputStream;
//import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;
/**
 * 
 * 視頻中獲取音頻文件
 * 
 */
public class TestFfmpeg {
 // FFmpeg全路徑
 private static final String FFMPEG_PATH = "D:\\softWare\\tools\\joyTool\\ffmpeg\\bin\\ffmpeg.exe";
 public static void main(String[] args) {
 
 String path = "E:\\StudyVedio\\ComputerScience\\US";
 try {
 getAll(path);
 } catch (Exception e) {
 e.printStackTrace();
 }
 }
 /**
 * 具體合成視頻函數(shù)
 * @param videoInputPath
 *   原視頻的全路徑
 * 
 * @param audioInputPath
 *   音頻的全路徑
 * 
 * @param videoOutPath
 *   視頻與音頻結(jié)合之后的視頻的路徑
 */
 public static void convetor(String videoInputPath, String audioInputPath, String videoOutPath)
 throws Exception {
 Process process = null;
 InputStream errorStream = null;
 InputStreamReader inputStreamReader = null;
 BufferedReader br = null;
 try {
 // ffmpeg命令
 String command = FFMPEG_PATH + " -i " + videoInputPath + " -i " + audioInputPath
  + " -c:v copy -c:a aac -strict experimental " +
  " -map 0:v:0 -map 1:a:0 "
  + " -y " + videoOutPath;
 
 process = Runtime.getRuntime().exec(command);
 errorStream = process.getErrorStream();
 inputStreamReader = new InputStreamReader(errorStream);
 br = new BufferedReader(inputStreamReader);
 // 用來收集錯誤信息的
 String str = "";
 while ((str = br.readLine()) != null) {
 System.out.println(str);
 }
 process.waitFor();
 } catch (IOException e) {
 e.printStackTrace();
 } finally {
 if (br != null) {
 br.close();
 }
 if (inputStreamReader != null) {
 inputStreamReader.close();
 }
 if (errorStream != null) {
 errorStream.close();
 }
 }
 }
 // 遞歸函數(shù)
 public static void getAll(String path) throws Exception {
 String videoInputPath = "";
 String audioInputPath = "";
 String videoOutPath = "";
 
 File file = new File(path); 
 if (file.isDirectory()) {
 File[] files = file.listFiles();
 for (File f : files) {
 getAll(f.getPath());
 if (f.isFile()) { 
  
  if (f.getName().endsWith(".m4s")) {
 
  if (f.getName().endsWith("audio.m4s")) 
  audioInputPath = file.getPath() + "\\audio.m4s";
   if (f.getName().endsWith("video.m4s"))
  videoInputPath = file.getPath() + "\\video.m4s";
  videoOutPath = file.getPath() + "\\all.mp4";
  
 
  if (!videoInputPath.equals(""))
  convetor(videoInputPath, audioInputPath, videoOutPath);
  
  }
  
 } 
 
 }
 
 }
 }
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI