Recherche avancée

Médias (17)

Mot : - Tags -/wired

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6962)

  • Anomalie #2234 (Nouveau) : Logo de l’auteur

    19 août 2011, par Johan Pustoch

    Dans /ecrire/ ?exec=auteur&id_auteur=N , la chaine « logo de l’auteur » est absente. S’affiche : auteur:titre_langue_auteur

  • How to use delogo with ffmpeg when logo starts at y=0

    22 avril 2021, par Valentin

    I have a 1920x800 video, all content, no black bars. At the top of the frame (y=0) there is a station logo I want to remove (presumably the original capture was cropped, leaving a half of a station logo inside the usable frame). Since the logo I'm trying to remove starts at the very top of the frame and because the default band=1 option that cannot be changed anymore (the option was seemingly removed from the API), the command needs to take it into account and make y=1 :

    


    ffmpeg -i video.mp4 -vf "delogo=x=1696:y=1:w=113:h=32:show=1" output.mp4


    


    but this breaks the interpolation, since that 1px on top is completely dirtying the box :
Logo with show=1 so we see the problem

    


    Tries with y=0 fail with or without trying to specify the band width (with band=0 or the alias t=0) :

    


    ffmpeg -i video.mp4 -vf "delogo=x=1696:y=0:w=113:h=33:band=0" output.mp4
[Parsed_delogo_0 @ 0000020528a7cf00] Option 'band' not found
ffmpeg -i video.mp4 -vf "delogo=x=1696:y=0:w=113:h=33:t=0" output.mp4
[Parsed_delogo_0 @ 000002b9b87acf40] Option 't' not found
ffmpeg -i video.mp4 -vf "delogo=x=1696:y=0:w=113:h=33" output.mp4
[delogo @ 0000023d971cd000] Logo area is outside of the frame.


    


    Is there a solution to this ?

    


  • ffmpeg - add logo upper right and extra info on the bottom of an image

    25 février 2023, par Gabriel-Joy

    Today I'm using the following for video and works well :

    


    ffmpeg -i uploads/input.mp4 -i ./assets/logo.png -i ./assets/telefon.png -filter_complex "[1][0]scale2ref=w='iw1/5':h='ow/mdar'[v1] ;[2][0]scale2ref=w='iw9/10':h='ow/mdar'[v2] ;[0][v1]overlay=main_w-overlay_w-5:5[vid] ;[vid][v2]overlay=10:main_h-overlay_h-10" uploads/output.mp4

    


    How can I use ffmpeg to obtain the same result having an image as input and a single image as output ?

    


    I tried to use output%0d.png but I get 3 images : 1 original image, 1 with logo and 1 with logo and bottom info.