java 实现 视频格式转换。

直接进入正题吧。
ps:利用ffmpeg 来进行格式转换。
一 建立 java项目。
二 在所建立的java项目中 建立一个ffmpeg文件夹,这个文件夹下放ffmpeg所需的文件。
三 在建立一个 input文件,这个文件是用来存放视频文件,例如xxx.rmvb.
四 在建立一个output文件,这个文件时用来存放你想转换后的视频文件。(例如你想把xxx.rmvb转换成xxx.mp4)
五 之后就是写 java代码。

package com;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
public class ConvertVideo {
   
   

    private static String inputPath = "";

    private static String outputPath = "";

    private static String ffmpegPath = "";
   public static void main(String args[]) throws IOException {

        getPath();

        if (!checkfile(inputPath)) {
            System.out.println(inputPath + " is not file");
            return;
        }
        if (process()) {
            System.out.println("ok");
        }
    }
    public static void getPath() { 
        // 先获取当前项目路径,在获得源文件、目标文件、转换器的路径
        File diretory = new File("");
        try {
            String currPath = diretory.getAbsolutePath();
            inputPath = "E:\\1.mp4";
            outputPath = "D:\\vod\\oss\\";
            ffmpegPath = "E:\\ffmpeg1\\";
            System.out.println(currPath);
        }
        catch (Exception e) {
            System.out.println("getPath出错");
        }
    }

    public static boolean process() {
        int type = checkContentType();
        boolean status = false;
            System.out.println("直接转成mp4格式");
            status = processMp4(inputPath);// 直接转成mp4
评论 27
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值