真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

創(chuàng)新互聯(lián)成立于2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站設(shè)計、做網(wǎng)站、成都外貿(mào)網(wǎng)站建設(shè)公司網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元大名做網(wǎng)站,已為上家服務(wù),為大名各地企業(yè)和個人服務(wù),聯(lián)系電話:13518219792

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)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。


網(wǎng)站標題:Java中怎么利用ffmpeg將音頻和視頻合成視頻
瀏覽路徑:http://weahome.cn/article/gjspgi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部