
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (76)
-
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 ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (8239)
-
Why does FFmpeg not recognize this HEX color ?
13 mai 2021, par John MatleyI have a simple FFmpeg command (run from BAT file) which will overlay 2 bars of color onto a background image. The first color (FF0000) works great, but the second (212121) outputs a grey bar and not the HEX color I specified. Here's what I have so far :


ffmpeg-y -i background.png -f lavfi -i color=ff0000:size=1280x720,format=rgba -f lavfi -i color=212121:size=1280x720,format=rgba -filter_complex "[1:v]rotate=-30*PI/180:c=none:ow=rotw(iw):oh=roth(ih)[box];[0:v][box]overlay=500:200[corner];[corner][2:v]overlay=0:600[output]" -map "[output]" -frames:v 1 output.png



Any ideas ?


-
FFMPEG drawbox filter. Hex color result not matching input values
31 juillet 2018, par Leon DigzI’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.
Consider the following code which produces a 600x600 swatch ;
ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png
E4E8F3 is supposed to translate to RGB 228,232,243
When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.
The color I end up getting is ;
Hex d2d7df, which is RGB 210,215,223
Any ideas why I’m not getting the result I expect ?
-
Convert color to ffmpeg compatible format
3 octobre 2015, par Akshay KhetrapalI am using ffmpeg pad filter to create a transparent padding around a video. According to FFmpeg Utilities page the color can be described using the format
[0x|#]RRGGBB[AA]
However, I’ve tried all possible options, like0x00000000
etc. but I’ve never been able to generate a transparent background.How can I convert color to the FFmpeg compatible format I mentioned above ?