whyclxw
2024-01-27 cf2df97ee7c5bb861526ef0ec9beaa174c04c872
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.lxw.test3d.FFM;
 
public class Contants {
 
    /**
     * @Description:(3.工具类主类)设置转码工具的各个路径
     * @param:@param args
     * @return:void
     * @author:Zoutao
     * @date:2018-6-22
     * @version:V1.0
     */
    //public static final String ffmpegpath = "D:/ffmpeg-20171225-be2da4c-win64-static/bin/ffmpeg.exe";        // ffmpeg工具安装位置
    public static final String ffmpegpath = "E:/2软件下载包/ffmpeg/ffmpeg-4.3.1-2021-01-01-essentials_build/bin/ffmpeg.exe";        // ffmpeg工具安装位置
    public static final String videofolder = "E:/ffmpeg/file/"; // 需要被转换格式的视频目录
 
    public static final String targetfolder = "E:/ffmpeg/temp/"; // 转码后视频保存的目录
   
 
 
}