Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (90)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5408)

  • drawtext : Add an alpha option

    11 avril 2015, par Luca Barbato
    drawtext : Add an alpha option
    

    And document both `draw` and `alpha`.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_drawtext.c
  • how ffmpeg preserves alpha channel

    16 septembre 2017, par LiJianixn

    We know ffmpeg can help us with overlaying image on video.My target is to wrap a video with an image whose background is transparent.

    ffmpeg -i device/nexus5_portrait.png -i device/input.mp4\
    -filter_complex "overlay=(W-w)/2:(H-h)/2:enable='between(t,0,5)'"\
    -b:v 16M -bufsize 16M device/output.mp4;

    Output.mp4 has a black background so is there any way to preserve alpha channel ?

    Thanks in advance !

  • Using ffmpeg to create a video from a sequence of TGA images, with a depth of field blur effect sourced from the TGA's alpha channel

    19 mars 2016, par vpvp

    I’m working on turning a sequence of TGA images into a video using ffmpeg. I want the video to have a depth of field blur effect. The alpha channel of each TGA contains a depth-mask, where black=close and white=far. I want to use this info to add DOF blur to the final output of that frame. After searching, the closest answer I could find was this
    http://superuser.com/questions/916431/ffmpeg-filter-to-boxblur-and-greyscale-a-video-using-alpha-mask, but it is for a static dof-mask. The DOF mask I would be using is obviously changing every frame, and an alpha channel instead of a seperate png.

    Here is my current cmd line

    ffmpeg -framerate 60 -i image.%10d.tga -c:v libx264 -preset slow -crf 0 -c:a copy -pix_fmt yuv420p output0.mp4

    It seems the answer would involve some use of alphamerge/alphaextract/boxblur, but I’m brand new to ffmpeg so I don’t know how to formulate the command.

    Thanks in advance.