
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (48)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 2013Puis-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 (7117)
-
Evolution #4412 : Ajout d’un site : récuperer son icone en logo
14 décembre 2019, par Yannyx SpipOu 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 PustochDans /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 ValentinI 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 defaultband=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 theband
width (withband=0
or the aliast=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 ?