java 호출 ffmpeg 영상 변환 방법

5293 단어 javaffmpeg비디오
본고는 자바가 ffmpeg를 호출하여 영상 변환을 실현하는 방법을 실례로 서술하였다.여러분에게 참고할 수 있도록 나누어 드리겠습니다.구체적인 분석은 다음과 같다.
여기 환경은 윈도우즈 플랫폼에서 테스트한 거예요...
e:\아래 ffmpeg가 필요합니다.exe;mencoder.exe;drv43260.dll;pncrt.dll은 모두 4개의 파일입니다.
 
또한 e:\input에서 각종 파일 이름이 a인 아래의 각종 영상 파일을 내려야 한다.그리고 e:\output;java 프로그램이 실행되면 a.flv의 변환된 파일을 얻을 수 있습니다.
ffmpeg.exe 해석 가능한 형식: (asx,asf,mpg,wmv,3gp,mp4,mov,avi,flv 등)
ffmpeg.exe가 해석할 수 없는 파일 형식(wmv9, rm, rmvb 등)은 다른 도구(mencoder)로 avi(ffmpeg가 해석할 수 있는) 형식으로 변환할 수 있습니다.
mencoder.exe;drv43260.dll;pncrt.ll 이 세 개의 파일은 파일 형식 (wmv9, rm, rmvb 등) 을 avi (ffmpeg 해석할 수 있는) 형식으로 변환하기 위해 준비되었습니다.
변환된avi 파일을 ffmpeg로 다시 사용합니다.exe를 flv 형식으로 변환한 비디오 파일...
 
java 파일의 내용은 다음과 같습니다.

import java.io.File;
import java.util.List;
public class ConvertVideo {
 private final static String PATH = "c:\\test\\a.mpg";
 public static void main(String[] args) {
    if(!checkfile(PATH)){
     System.out.println(PATH+" is not file");
     return;
    }    
 if (process()) {         
      System.out.println("ok");
    }
 }
 private static boolean process() {    
 int type = checkContentType();
    boolean status = false;
    if (type==0) {
      status = processFLV(PATH);//  flv 
    } else if (type==1) {
      String avifilepath = processAVI(type);
      if (avifilepath == null)
        return false;// avi 
      status = processFLV(avifilepath);//  avi flv
    }
    return status;
  }
  private static int checkContentType() {
    String type = PATH.substring(PATH.lastIndexOf(".") + 1,
     PATH.length()).toLowerCase();
//ffmpeg :(asx,asf,mpg,wmv,3gp,mp4,mov,avi,flv )
    if (type.equals("avi")) {
      return 0;
    } else if (type.equals("mpg")) {
      return 0;
    } else if (type.equals("wmv")) {
      return 0;
    } else if (type.equals("3gp")) {
      return 0;
    } else if (type.equals("mov")) {
      return 0;
    } else if (type.equals("mp4")) {
      return 0;
    } else if (type.equals("asf")) {
      return 0;
    } else if (type.equals("asx")) {
      return 0;
    } else if (type.equals("flv")) {
      return 0;
    }
    // ffmpeg (wmv9,rm,rmvb ), 
    // (mencoder) avi(ffmpeg ) .
    else if (type.equals("wmv9")) {
      return 1;
    } else if (type.equals("rm")) {
      return 1;
    } else if (type.equals("rmvb")) {
      return 1;
    }    
    return 9;
  }
  private static boolean checkfile(String path){
   File file=new File(path);
   if(!file.isFile()){
   return false;
   }
   return true;
  }
 // ffmpeg (wmv9,rm,rmvb ),  (mencoder) avi(ffmpeg ) .
  private static String processAVI(int type) {
    List<String> commend=new java.util.ArrayList<String>();
    commend.add("e:\\mencoder");
    commend.add(PATH);
    commend.add("-oac");
    commend.add("lavc");
    commend.add("-lavcopts");
    commend.add("acodec=mp3:abitrate=64");
    commend.add("-ovc");
    commend.add("xvid");
    commend.add("-xvidencopts");
    commend.add("bitrate=600");
    commend.add("-of");
    commend.add("avi");
    commend.add("-o");
    commend.add("c:\\home\\a.avi");
    try{
     ProcessBuilder builder = new ProcessBuilder();
      builder.command(commend);
      builder.start();
      return "c:\\home\\a.avi";
    }catch(Exception e){
     e.printStackTrace();
     return null;
    }
  }
 //ffmpeg :(asx,asf,mpg,wmv,3gp,mp4,mov,avi,flv )
  private static boolean processFLV(String oldfilepath) {
   if(!checkfile(PATH)){
     System.out.println(oldfilepath+" is not file");
     return false;
     }   
    List<String> commend=new java.util.ArrayList<String>();
    commend.add("e:\\ffmpeg");
    commend.add("-i");
    commend.add(oldfilepath);
    commend.add("-ab");
    commend.add("64");
    commend.add("-acodec");
    commend.add("mp3");
    commend.add("-ac");
    commend.add("2");
    commend.add("-ar");
    commend.add("22050");
    commend.add("-b");
    commend.add("230");
    commend.add("-r");
    commend.add("24");
    commend.add("-y");
    commend.add("c:\\home\\a.flv");
    try {
      ProcessBuilder builder = new ProcessBuilder();
      builder.command(commend);
      builder.start();
      return true;
    } catch (Exception e) {
      e.printStackTrace();
      return false;
    }
  }
}
본고에서 기술한 것이 여러분의 자바 프로그램 설계에 도움이 되기를 바랍니다.

좋은 웹페이지 즐겨찾기