Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (50)

  • 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 ) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6300)

  • Evolution #2487 (Nouveau) : Pas d’alternative textuelle sur le logo d’un article ou d’une rubrique

    12 janvier 2012, par Steven Mouret

    Dans SPIP 3.0.0-beta2 [18874] Sauf erreur de ma part, lors de l’ajout d’un logo à un article ou une rubrique il n’est pas possible de préciser une alternative textuelle.

  • avfilter/delogo : Check that logo area is inside the picture

    10 mai 2016, par Jean Delvare
    avfilter/delogo : Check that logo area is inside the picture
    

    We can only remove the logo if it is inside the picture. We need at
    least one pixel around the logo area for interpolation.

    Fixes ticket #5527 (Delogo crash with x=0 and/or y=0).

    Signed-off-by : Jean Delvare <jdelvare@suse.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_delogo.c
  • How can I connect drawtext to filter complex for change logo size ?

    19 novembre 2016, par parsa

    I want to have a text and a logo on video. for this I used below code.
    I want to change size of logo by scale2ref,but I don’t know how can I connect scale2ref with drawtext.

     ffmpeg -i 4k.mp4 -i http://test.ir/LogoPath/VideoLogo.png?v
       =C7Xfha6ri0yut2x9a5XpIA -filter_complex [0:v]drawtext=fontfile=OpenSansRegular.ttf:text=parsa:fontcolor=white:box=1:r=25:boxcolor=black@0.3:boxborderw=3:fontsize=85:x=85:y=(h-text_h-85)[text];[text][1:v]scale2ref=-1:120[0v]
       [logo];[logo][0v]overlay=W-w-85:85[v] -map [v] -map 0:a out1.mp4

    top code return this error :

    [libx264 @ 00000000004ea0c0] width not divisible by 2 (271x120)
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    This below code works when I don’t use scale2ref and the video output has logo with defualt size and the text.

     ffmpeg -i 4k.mp4 -i http://test.ir/LogoPath/VideoLogo.png?v
       =C7Xfha6ri0yut2x9a5XpIA -filter_complex [0:v]drawtext=fontfile=OpenSansRegular.ttf:text=parsa:fontcolor=white:box=1:r=25:boxcolor=black@0.3:boxborderw=3:fontsize=85:x=85:y=(h-text_h-85)[text];[text][1:v]overlay=W-w-85:85[v] -map [v] -map 0:a out1.mp4

    How can I connect drawtext to filter complex for change logo size ?