更新记录

1.0.5(2025-02-24)

更新ios最小使用版本

1.0.4(2025-02-18)

修复自定义ffmpeg命令报错的问题

1.0.3(2025-02-17)

新增ios获取视频信息的函数

查看更多

平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 3.94,Android:7.0,iOS:不确定,HarmonyNext:不确定 × × × × × ×
钉钉小程序 快手小程序 飞书小程序 京东小程序 鸿蒙元服务
× × × × ×
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari
× × × × × × × × ×

AVFramework组件

AVFramework致力于让用户轻松实现音视频剪切合并等功能

快速接入方法

加载模块

const av = uni.requireNativePlugin('AVFramework');

视频剪切

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');

                let params = {"inputPath":path,"startTime":"0","endTime":"10","outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "out.mp4"};
                av.cutVideoWithParams(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频输入路径
startTime 开始时间
endTime 结束时间
outputPath 指定的输出文件路径

提取视频图片

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"time":"10","outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "test.png"};
                av.extractImageFromVideo(params,result=>{

                });
字段 说明
inputPath 视频输入路径
time 时间(s)
outputPath 指定的输出图片路径

拼接视频

var path1 = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                var path2 = plus.io.convertLocalFileSystemURL('/static/test2.mkv');
                let params = {"inputPaths":[path1,path2],"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "merge.mp4"};
                av.mergeVideosWithInputPaths(params,result=>{
                    console.log(result);
                });
字段 说明
inputPaths 视频的输入路径(数组)
outputPath 指定的输出文件路径

音频转换

var path = plus.io.convertLocalFileSystemURL('/static/in.wav');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "outaudio.aac"};
                av.convertAudioWithInputPath(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

音频提取

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "outaudio.aac"};
                av.extractAudioFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

改变视频分辨率

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"width":640,"height":480,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "640x480.mp4"};
                av.changeVideoResolution(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
width 视频的宽
height 视频的高

视频旋转

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"angle":90,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "xuanzhuan.mp4"};
                av.rotateVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
angle 旋转角度

视频加水印

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"x":10,"y":10,"inputPath":path,"watermarkPath":plus.io.convertLocalFileSystemURL("static") + "/" + "in.png","outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "shuiying.mp4"};
                av.addWatermarkToVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
x 位置x
y 位置y

改变播放速度

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"speed":120,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "videoSpeed.mp4"};
                av.changeVideoSpeed(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
speed 播放速度

转换视频格式

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "videoformat.wav"};
                av.convertVideoFormat(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

改变音量大小

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "volume.mp4","volume":200};
                av.adjustVideoVolume(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
volume 音量大小

解析关键帧

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputImageDirectory":plus.io.convertLocalFileSystemURL("static") + "/" + "keyframes"};
                av.extractKeyFramesFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputImageDirectory 指定的输出文件夹路径

裁剪音频

var path = plus.io.convertLocalFileSystemURL('/static/in.wav');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "audiocut.mp3","startTime":0,"endTime":1};
                av.extractAudioSegment(params,result=>{
                    console.log(result);
                });sole.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
startTime 开始时间(s)
endTime 结束时间(s)

合并音频

var path1 = plus.io.convertLocalFileSystemURL('/static/in.wav');
                var path2 = plus.io.convertLocalFileSystemURL('/static/inputaac.aac');
                let params = {"inputPaths":[path1,path2],"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "merge.mp3"};
                av.mergeAudioWithInputPaths(params,result=>{
                    console.log(result);
                });
字段 说明
inputPaths 视频的输入路径(数组)
outputPath 指定的输出文件路径

提取视频里面每帧图片

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputImageDirectory":plus.io.convertLocalFileSystemURL("static") + "/" + "frames"};
                av.extractFramesFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPaths 视频的输入路径(数组)
outputImageDirectory 指定的输出文件夹路径
interval 1s输出多少张

转换video为gif

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"startTime":"0","endTime":"5","outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "gif.gif"};
                av.convertVideoToGIF(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
startTime 开始时间(s)
endTime 开始时间(s)

旋转和剪切视频

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"angle":0,"cropArea":"200:200:0:0","outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "rote.mp4"};
                av.rotateAndCropVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
angle 角度
cropArea 宽:高:x:y

缩放视频

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"width":640,"height":480,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "resize.mp4"};
                av.resizeVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
width 视频宽度
height 视频高度

视频镜像

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "mirror.mp4"};
                av.mirrorVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

视频模糊

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"blurStrength":10,"blurRadius":1,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "blur.mp4"};
                av.blurBackgroundInVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
blurRadius 模糊圆角
blurStrength 模糊强度

反转视频

var path = plus.io.convertLocalFileSystemURL('/static/test2.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "reverse.mp4"};
                av.reverseVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

改变视频帧率

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"frameRate":120,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "changerate.mp4"};
                av.changeFrameRate(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
frameRate 帧率

提取字幕

var path = plus.io.convertLocalFileSystemURL('/static/addSubtitles.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "extractSubtitles.srt"};
                av.extractSubtitlesFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

添加字幕

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                var subTitlePath = plus.io.convertLocalFileSystemURL('/static/helloworld.srt');
                let params = {"inputPath":path,"subtitlesPath":subTitlePath,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "addSubtitles.mp4"};
                av.addSubtitlesFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径
subTitlePath 指定字幕的输出文件路径

移除字幕

var path = plus.io.convertLocalFileSystemURL('/static/addSubtitles.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "removeSubtitles.mp4"};
                av.removeSubtitlesFromVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

视频镜像

var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "flipVideo.mp4"};
                av.flipVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径
outputPath 指定的输出文件路径

获取视频信息

    var path = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":path};
                av.getVideoInfo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 视频的输入路径

音视频合并

    var audioPath = plus.io.convertLocalFileSystemURL('/static/inputaac.aac');
                var videoPath = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPaths":[audioPath,videoPath],"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "combine.mp4"};
                av.combineAudioWithVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPaths 音视频的输入路径(数组)
outputPath 指定的输出文件路径

调整音频音量

var audioPath = plus.io.convertLocalFileSystemURL('/static/inputaac.aac');
                let params = {"inputPath":audioPath,"volume":200,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "adjust.aac"};
                av.adjustAudioVolume(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径
volume 音量大小

生成视频封面

var videoPath = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":videoPath,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "cover.png"};
                av.generateCoverForVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径

把音频转换为视频

var audioPath = plus.io.convertLocalFileSystemURL('/static/inputaac.aac');
                var imagePath = plus.io.convertLocalFileSystemURL('/static/in.png');
                let params = {"inputPath":audioPath,"imagePath":imagePath,"width":1920,"height":1080,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "audiotovideo.mp4"};
                av.convertAudioToVideo(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径
imagePath 图片文件
width 视频宽度
height 视频高度

改变视频的帧率

var videoPath = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":videoPath,"frameRate":30,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "changevideoframe.mp4"};
                av.changeVideoFrameRate(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径
frameRate 视频帧率

视频压缩

var videoPath = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":videoPath,"bitrate":"2M","audioBitrate":"96k","width":640,"height":480,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "compressVideo.mp4"};
                av.compressVideoWithParams(params,result=>{
                    console.log(result);
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径
bitrate 视频码率
audioBitrate 音频码率
width 视频宽
height 视频高
videoCodec 视频编码
audioCodec 音频编码

清除视频里面的声音

var videoPath = plus.io.convertLocalFileSystemURL('/static/test1.mp4');
                let params = {"inputPath":videoPath,"outputPath":plus.io.convertLocalFileSystemURL("static") + "/" + "removeAudioFromVideo.mp4"};
                av.removeAudioFromVideo(params,result=>{
                   if (result.hasOwnProperty("taskId")) {
                       this.currentTaskId = result.taskId;
                    }
                });
字段 说明
inputPath 音频的输入路径
outputPath 指定的输出文件路径

取消任务id

    av.cancel({"taskId":this.currentTaskId },result=>{
                   console.log(result);
                });
字段 说明
taskId 任务id

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

插件不采集任何数据

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问