我正在尝试在Android中使用ffmpeg将三个滤镜添加到png文件中(我正在使用写作思维库)。
到目前为止,我设法将cmd放在一起:
-i /storage/emulated/0/videoApp/temp/firstFrameOfMergedVideo.png
-i /storage/emulated/0/videoApp/temp/logo.png
-filter_complex
[1:v]scale=h=-1:w=100[overlay_scaled],[0:v][overlay_scaled]overlay=eval=init:x=W-100-W*0.1:y=W*0.1,
drawtext=fontfile=/system/fonts/Roboto-Regular.ttf:text='xbsg':fontcolor=white:fontsize=60:box=1:boxcolor=0x7FFFD4@0.5:boxborderw=20:x=20:y=h-(text_h*2)-(h*0.1):enable='between(t,0,2)',
drawtext=fontfile=/system/fonts/Roboto-Regular.ttf:text='cbeh':fontcolor=white:fontsize=30:box=1:boxcolor=0x7FFFD4@0.5:boxborderw=20:x=20:y=h-text_h-(h*0.1)+25:enable='between(t,0,2)',
eq=contrast=1:brightness=0.26180276:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1
-c:a
copy
/storage/emulated/0/videoApp/temp/frameWithFilters.png
现在,我正尝试使用,
分离过滤器,但我也尝试了;
这让我反感:
Input #0, png_pipe, from '/storage/emulated/0/videoApp/temp/firstFrameOfMergedVideo.png':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: png, rgb24(pc), 1080x1920, 25 tbr, 25 tbn, 25 tbc
Input #1, png_pipe, from '/storage/emulated/0/videoApp/temp/logo.png':
Duration: N/A, bitrate: N/A
Stream #1:0: Video: png, rgba(pc), 528x582, 25 tbr, 25 tbn, 25 tbc
[NULL @ 0xf265d800] Unable to find a suitable output format for ','
,: Invalid argument
如果我单独应用它们,它们将起作用。
我是ffmpeg的新手,所以我们将不胜感激。
答案 0 :(得分:0)
我终于明白了。
过滤器必须将String数组作为一个字符串传递 例如filterArray [2] =“ -filter_complex” filterArray [3] =“其余过滤器”。
如果有人感到好奇,则以下代码最多可应用于三个过滤器(如果存在于视频中)。这些滤镜可以是亮度的变化(需要首先应用,以便其他滤镜可以应用在顶部),徽标图像的叠加层位于右上角并按比例缩小至特定大小,而两个文本叠加层则位于下方另一个在左下角。
public void applyFiltersToImage(String srcPath, String outPath, String logoPath, String name, String function, float brightness, ProgressListener progressListener) {
List<String> cmdList = new ArrayList<>();
cmdList.add("-i");
cmdList.add(srcPath);
if (logoPath != null) {
cmdList.add("-i");
cmdList.add(logoPath);
}
cmdList.add("-filter_complex");
StringBuilder filterBuilder = new StringBuilder();
if (brightness != 0) {
filterBuilder
.append("eq=contrast=1:brightness=")
.append(brightness)
.append(":saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1[v]");
if (logoPath != null || name != null || function != null)
filterBuilder.append(";");
}
if (logoPath != null) {
filterBuilder
.append("[1:v]scale=h=-1:w=")
.append("100")
.append("[overlay_scaled],")
.append(brightness != 0 ? "[v]" : "[0:v]")
.append("[overlay_scaled]overlay=eval=init:x=W-")
.append("100")
.append("-W*0.1:y=W*0.1[v]");
if (name != null || function != null)
filterBuilder.append(";[v]");
}
if (name != null || function != null) {
if(brightness != 0 && logoPath == null)
filterBuilder.append("[v]");
filterBuilder
.append("drawtext=fontfile=")
.append("/system/fonts/Roboto-Regular.ttf")
.append(":text='")
.append(name)
.append("':fontcolor=white:fontsize=")
.append("60")
.append(":box=1:boxcolor=0x7FFFD4@0.5:boxborderw=20:x=20:y=h-(text_h*2)-(h*0.1):enable=\'between(t,0,2)\'")
.append(",drawtext=fontfile=")
.append("/system/fonts/Roboto-Regular.ttf")
.append(":text='")
.append(function)
.append("':fontcolor=white:fontsize=")
.append("30")
.append(":box=1:boxcolor=0x7FFFD4@0.5:boxborderw=20:x=20:y=h-text_h-(h*0.1)+25:enable=\'between(t,0,2)\'[v]");
}
cmdList.add(filterBuilder.toString());
cmdList.add("-map");
cmdList.add("[v]");
cmdList.add(outPath);
String[] cmd = new String[cmdList.size()];
for (int i = 0; i < cmdList.size(); i++) {
cmd[i] = cmdList.get(i);
}
executeCmd(cmd, progressListener, outPath);
}