
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (77)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (9565)
-
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 ?
-
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 ?


-
Changing the background color of the movie while using tpad and adelay
1er août 2019, par S.Ti want to change the background color of a movie while using
tpad
andadelay
commands. it is now black ( until the movie starts).the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the
tpad
that needs to be change).-filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
[0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000kthe 5 seconds that the movie is in its
"waiting mode"
needs to be changed from default black to some other color. Thanks.