Recherche avancée

Médias (1)

Mot : - Tags -/wave

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)

  • ffmpeg alpha export color

    11 mars 2015, par TheCutestPuppy

    I’m converting a mov to h264 mp4. I have this working fine with the following command :

    ffmpeg -i v1.mov -pix_fmt yuv420p -c:v libx264 -s 1200:900  out.mp4

    While I want to remove the alpha channel, ffmpeg automatically exports it to black. I’d like to export it to a different color such as white. I can’t seem to find a way to do so. Anybody have any ideas ?

  • fate/matroska : Add test for remuxing VP8 with alpha

    17 février 2021, par Andreas Rheinhardt
    fate/matroska : Add test for remuxing VP8 with alpha
    

    This provides coverage for writing BlockGroups with BlockAdditional
    and ReferenceBlock elements. It also tests setting the hearing impaired
    disposition (it fits given that this video has no audio so one needs to
    be able to read lips to understand anything).

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] tests/fate/matroska.mak
    • [DH] tests/ref/fate/matroska-vp8-alpha-remux
  • ffmpeg overlay alpha=premultiplied brightens video

    25 juin 2020, par Sagi Mann

    Why does ffmpeg (4.3.2) brighten the entire video when overlaying with alpha=multiplied ? example :

    &#xA;

    ffmpeg -filter_complex "color=0x888888:d=1.0:s=1280x720" vid1.mp4&#xA;&#xA;ffmpeg -filter_complex "\&#xA;    color=0x888888:d=1.0:s=1280x720[bg]; \&#xA;    color=0x000000@0x00:d=1.0:s=1280x720[fg]; \&#xA;    [bg][fg]overlay=alpha=premultiplied" \&#xA;    vid2.mp4&#xA;

    &#xA;

    vid2 turns out brigher than vid1 although we're overlaying an empty transparent frame

    &#xA;

    Note I need alpha=premultiplied in order to solve a problem of an outline appearing during overlaying a png on a video

    &#xA;