
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (107)
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (13621)
-
FFMPEG detect color bars and tone in video
23 novembre 2016, par Chris HarveyI am trying to detect if a video has any valid content or is just the standard broadcasting bars & tone. So far I’ve looked at this question : http://superuser.com/questions/1036449/detect-color-bars-ffmpeg/1036478#1036478
which generates bars & tone from the first frame and then compares that against the rest of the stream but in my case I need to run the ffmpeg command within a folder that only has one file that has already been found by my python script.Is it possible to use ffmpeg’s blend=difference to check that a short bars & tone clip is a subclip of one of my video files ? I’m thinking of this in the same way you can check if a string is within a string, or is there a better way to check for bars that I’m not thinking of ?
Thanks !
-
Revision 95a484c01465c56cc527a044e72c2e1165f5448f : Google&co indexe les urls courtes microbloguees. Il convient donc de les ...
6 décembre 2010, par Cerdic — LogGoogle&co indexe les urls courtes microbloguees. Il convient donc de les rediriger par un status 301 afin d’indiquer que cette adresse courte est definitivement renvoyee vers l’url complete git-svn-id : svn ://trac.rezo.net/spip/branches/spip-2.1@16625 (...)
-
Custom text and background color in subtitles FFMPEG | Converting HEX to AARRGGBB
3 octobre 2023, par YoussefI have this code that was working fine with text color only but when I added the background using outline to draw box around subtitles it started outputing weird colors, for example using black #000 I got red


var alpha = 1.0;

 const textColorHex = "#000000";
 const textColor = `&H${tinycolor(textColorHex).setAlpha(alpha).toHex8().substr(2)}`;
 // textColor : &H0000ff

 const bgColorHex = '#ffffff';
 const bgColor = `&H${tinycolor(bgColorHex).setAlpha(alpha).toHex8().substr(2)}`;
 // bgColor : &Hffffff


 const ffmpeg = spawn("ffmpeg", [
 "-i",
 "test.mp4",
 "-vf",
 `subtitles=${subtitlePath}:force_style='Alignment=${alignment},OutlineColour=${bgColor},BorderStyle=3,PrimaryColour=${textColor},Fontsize=${fontSize}'`,
 "-c:a",
 "copy",
 "-progress", "pipe:1",
 outputPath,
 ]);



I am not sure how to fix that