FFmpeg - blur image according to blur map [duplicate]
This question already has an answer here:
FFmpeg - Apply blur over face
1 answer
Is it possible with FFmpeg to blur a video according to blur map like this? Attached a sample.
Looking for a way to make specific parts of image blurred. Like ImageMagick's "compose blur", but for video.

ffmpeg imagemagick
marked as duplicate by llogan
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Dec 27 '18 at 19:09
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
FFmpeg - Apply blur over face
1 answer
Is it possible with FFmpeg to blur a video according to blur map like this? Attached a sample.
Looking for a way to make specific parts of image blurred. Like ImageMagick's "compose blur", but for video.

ffmpeg imagemagick
marked as duplicate by llogan
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Dec 27 '18 at 19:09
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
FFmpeg - Apply blur over face
1 answer
Is it possible with FFmpeg to blur a video according to blur map like this? Attached a sample.
Looking for a way to make specific parts of image blurred. Like ImageMagick's "compose blur", but for video.

ffmpeg imagemagick
This question already has an answer here:
FFmpeg - Apply blur over face
1 answer
Is it possible with FFmpeg to blur a video according to blur map like this? Attached a sample.
Looking for a way to make specific parts of image blurred. Like ImageMagick's "compose blur", but for video.

This question already has an answer here:
FFmpeg - Apply blur over face
1 answer
ffmpeg imagemagick
ffmpeg imagemagick
asked Dec 20 '18 at 21:36
SharpAffair
1012
1012
marked as duplicate by llogan
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Dec 27 '18 at 19:09
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by llogan
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Dec 27 '18 at 19:09
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Not directly possible. Workaround is to use two filters.
ffmpeg -i video -filter_complex [0]split=2[full][blur];[blur]boxblur=OPTIONS[blur];[full][blur]overlay=format=auto -c:a copy output.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Not directly possible. Workaround is to use two filters.
ffmpeg -i video -filter_complex [0]split=2[full][blur];[blur]boxblur=OPTIONS[blur];[full][blur]overlay=format=auto -c:a copy output.
add a comment |
Not directly possible. Workaround is to use two filters.
ffmpeg -i video -filter_complex [0]split=2[full][blur];[blur]boxblur=OPTIONS[blur];[full][blur]overlay=format=auto -c:a copy output.
add a comment |
Not directly possible. Workaround is to use two filters.
ffmpeg -i video -filter_complex [0]split=2[full][blur];[blur]boxblur=OPTIONS[blur];[full][blur]overlay=format=auto -c:a copy output.
Not directly possible. Workaround is to use two filters.
ffmpeg -i video -filter_complex [0]split=2[full][blur];[blur]boxblur=OPTIONS[blur];[full][blur]overlay=format=auto -c:a copy output.
answered Dec 21 '18 at 5:08
Gyan
14.6k21745
14.6k21745
add a comment |
add a comment |