Recherche avancée

Médias (91)

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • 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 ;

Sur d’autres sites (5182)

  • 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 ?