我将视频放在我的网页背景中。我想模糊我尝试将以下属性放在视频标记中的背景:
<video -webkit-filter: blur(15px); -moz-filter: blur(15px);-o-filter: blur(15px);-ms-filter: blur(15px);filter: blur(15px);">
由于HTML中的背景模糊,视频运行速度非常慢。 所以,现在我试图模糊原始视频。我试图使用ffmpeg(here):
ffmpeg -i input.avi -vf "boxblur=enable='between(t,start,end)'" -codec:a copy output.avi
但ffmpeg中使用的过滤器似乎已被弃用。我已经尝试了几个过滤器&#34; avconv&#34;但是没有过滤器似乎&#34;模糊&#34;该视频。 如果有任何其他命令行工具可用于此目的,或者即使我在ffmpeg或avconv中缺少任何过滤器,请告诉我。
更新:ffmpeg的控制台输出:
ffmpeg -i output.mp4 -vf "boxblur=enable='between(t,0,15)'" -codec:a copy output1.mp4
ffmpeg version 2.8.3 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
configuration: --disable-yasm
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'output.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
creation_time : 2015-04-08 13:38:10
encoder : Lavf54.20.4
Duration: 00:00:29.40, start: 0.000000, bitrate: 1909 kb/s
Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1024x1024 [SAR 16:9 DAR 16:9], 1905 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
Metadata:
creation_time : 2015-04-08 13:38:10
handler_name : VideoHandler
[AVFilterGraph @ 0x1db5140] No such filter: 'boxblur'
答案 0 :(得分:2)
boxblur filter license is GPL,因此需要使用ffmpeg
配置选项编译--enable-gpl
。 Recompile,或download a static build.
或者,您可以使用其他过滤条件,例如sab,smartblur或unsharp。
由于视频是针对网络的,因此请考虑添加-movflags +faststart
作为输出选项,以便视频可以在观看者完全下载之前开始播放。您也可以增加-crf
值(默认值为23),因为它可能会模糊,您可能会使用较低的质量。