Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (28)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (4302)

  • Added Thai (TH) localization, fixes #85

    20 avril 2011, par jzaefferer

    m changelog.txt + localization/messages_th.js Added Thai (TH) localization, fixes #85

  • chroma key my command for filter white background works but filter white and black ?

    21 décembre 2018, par userpov
    ffmpeg    -i  bakground.avi   -i overlay.avi    -filter_complex       "[1:v]chromakey=0xFFFFFF:0.02:0[keyed];       [0:v][keyed]overlay[out]"    -map "[out]"    output.avi

    this command filter white and black

    I need filter only white color

    please help me

  • Layer black & white video over background so black pixels are transparent in FFMPEG

    4 février 2018, par Dan Weaver

    I’m trying to blend a video containing black and white animated text over a static background image. I can successfully blend them but no matter what blend mode I use I can’t get the effect I want.

    I’m looking for an effect similar to Photoshop’s ’Add’ blend mode where the color values of each pixel are added together. This results in no change where the top layer (video) has black pixels, effectively making the black background appear transparent.

    This is what I’m trying to achieve :
    enter image description here

    ffmpeg -i text.mp4 -loop 1 -i image.jpg \
    -filter_complex 'blend=all_mode=addition' -t 1 result.mp4

    I tried all the modes of the blend filter but none of them produce this effect. I thought Addition would be the one to work but the resulting video has a pink tint. Maybe there is some mismatch between color channels ?

    How can I get the result I’m looking for ?