
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (45)
-
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9551)
-
configure Xuggler on Ubuntu 14-04
22 juillet 2015, par AidaI was trying to install Xuggle on Ubuntu with this tutorial
But when I used
ant stage
it doesn`t work. I see these commands on the terminal> root@test1:~# ant stage Unable to locate tools.jar. Expected to find
> it in /usr/lib/jvm/java-7-openjdk-amd64/lib/tools.jar Buildfile:
> build.xml does not exist! Build failedDo you have any idea how I can fix it ?
-
Writing each I frame into a different .mp4 file and adding some additional logs
8 juin 2018, par MSD PaulWhile using x264 encoder, how to store each and every I frame (from each and every .png file (frame)) into a different .mp4 file ?
If I have 5 frames, after encoding those 5 frames into 5 I frames how to write those in different files ?
Another Question : How to put few additional log messages or print statements in few functions in x264 code which I can view on the terminal as the encoding output like other logs ???
-
Ffmpeg apply filter with C++ API
29 septembre 2022, par TurgutI want to apply a filter to my encoded ffmpeg video. I've found a terminal command that presumably does what I want. But the problem is I want to do this inside my code, specifically my encoder.


How can I achieve this ? What function/code snippet allows me to propperly implement
colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]

and[colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect]
using the C library ?