FFmpeg - blur image according to blur map [duplicate]












0















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.



enter image description here










share|improve this question













marked as duplicate by llogan ffmpeg
Users with the  ffmpeg badge can single-handedly close ffmpeg questions as duplicates and reopen them as needed.

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.




















    0















    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.



    enter image description here










    share|improve this question













    marked as duplicate by llogan ffmpeg
    Users with the  ffmpeg badge can single-handedly close ffmpeg questions as duplicates and reopen them as needed.

    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.


















      0












      0








      0








      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.



      enter image description here










      share|improve this question














      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.



      enter image description here





      This question already has an answer here:




      • FFmpeg - Apply blur over face

        1 answer








      ffmpeg imagemagick






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 20 '18 at 21:36









      SharpAffair

      1012




      1012




      marked as duplicate by llogan ffmpeg
      Users with the  ffmpeg badge can single-handedly close ffmpeg questions as duplicates and reopen them as needed.

      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 ffmpeg
      Users with the  ffmpeg badge can single-handedly close ffmpeg questions as duplicates and reopen them as needed.

      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.
























          1 Answer
          1






          active

          oldest

          votes


















          1














          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.





          share|improve this answer




























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            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.





            share|improve this answer


























              1














              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.





              share|improve this answer
























                1












                1








                1






                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.





                share|improve this answer












                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.






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 21 '18 at 5:08









                Gyan

                14.6k21745




                14.6k21745















                    Popular posts from this blog

                    Mouse cursor on multiple screens with different PPI

                    Agildo Ribeiro

                    Sometime when accessing a menu: “Ubuntu 16.04 has experienced an internal error”