用Java实现抖音等各种小视频批量转换为gif动态图
Posted i like China
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Java实现抖音等各种小视频批量转换为gif动态图相关的知识,希望对你有一定的参考价值。
本文主要介绍了Java用20行代码实现抖音小视频批量转换为gif动态图,分享给大家,具体如下:
本功能实现需要用到第三方jar包 jave,JAVE 是java调用FFmpeg的封装工具。
1、Java单类实现代码,复制到Spring boot项目中,用idea编辑器 主方法运行。
package com.naughty.userlogin02;
import ws.schild.jave.Encoder;
import ws.schild.jave.EncoderException;
import ws.schild.jave.MultimediaObject;
import ws.schild.jave.encode.EncodingAttributes;
import ws.schild.jave.encode.VideoAttributes;
import ws.schild.jave.info.MultimediaInfo;
import ws.schild.jave.info.VideoInfo;
import ws.schild.jave.info.VideoSize;
import java.io.File;
import java.util.Arrays;
public class VideoToGIf {
//输出格式
private static final String outputFormat = "gif";
/**
* 获得转化后的文件名
*
* @param sourceFilePath : 源视频文件路径
* @return
*/
public static String getNewFileName(String sourceFilePath) {
File source = new File(sourceFilePath);
String fileName = source.getName().substring(0, source.getName().lastIndexOf("."));
return fileName + "." + outputFormat;
}
/**
* 转化音频格式
*
* @param sourceFilePath : 源视频文件路径
* @param targetFilePath : 目标gif文件路径
* @return
*/
public static void transform(String sourceFilePath, String targetFilePath) {
File source = new File(sourceFilePath);
File target = new File(targetFilePath);
try {
//获得原视频的分辨率
MultimediaObject mediaObject = new MultimediaObject(source);
MultimediaInfo multimediaInfo = mediaObject.getInfo();
VideoInfo videoInfo = multimediaInfo.getVideo();
VideoSize sourceSize = videoInfo.getSize();
//设置视频属性
VideoAttributes video = new VideoAttributes();
video.setCodec(outputFormat);
//设置视频帧率 正常为10 ,值越大越流畅
video.setFrameRate(10);
//设置视频分辨率
VideoSize targetSize = new VideoSize(sourceSize.getWidth() / 5, sourceSize.getHeight() / 5);
video.setSize(targetSize);
//设置转码属性
EncodingAttributes attrs = new EncodingAttributes();
attrs.setVideoAttributes(video);
// 音频转换格式类
Encoder encoder = new Encoder();
encoder.encode(mediaObject, target, attrs);
System.out.println("转换已完成...");
} catch (EncoderException e) {
e.printStackTrace();
}
}
/**
* 批量转化视频格式
*
* @param sourceFolderPath : 源视频文件夹路径
* @param targetFolderPath : 目标gif文件夹路径
* @return
*/
public static void batchTransform(String sourceFolderPath, String targetFolderPath) {
File sourceFolder = new File(sourceFolderPath);
if (sourceFolder.list().length != 0) {
Arrays.asList(sourceFolder.list()).forEach(e -> {
transform(sourceFolderPath + "\\\\" + e, targetFolderPath + "\\\\" + getNewFileName(e));
});
}
}
public static void main(String[] args) {
batchTransform("C:\\\\Users\\\\tarzan\\\\Desktop\\\\video", "C:\\\\Users\\\\tarzan\\\\Desktop\\\\gif");
}
}
运行结果:
视频转换成功
maven地址:https://download.csdn.net/download/fo_xi/18470560
此文章有帮助到你吗?有问题随时交流!!!
以上是关于用Java实现抖音等各种小视频批量转换为gif动态图的主要内容,如果未能解决你的问题,请参考以下文章
硬核干货!!!JavaCV 将抖音小视频分割成图片帧图片和将图片合成小视频代码实现