Recherche avancée

Médias (91)

Autres articles (21)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (3935)

  • Evolution #4412 : Ajout d’un site : récuperer son icone en logo

    14 décembre 2019, par Yannyx Spip

    Ou bien déjà que le logo puisse etre téléchargé par une URL directement depuis Internet (comme pour les autres objets editoriaux).

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