
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (11732)
-
Revision 7204 : éviter une double virgule ici
29 novembre 2012, par kent1 — Logéviter une double virgule ici
-
Combine images into a movie
10 mars 2014, par Maged E WilliamMy project is to record Desktop as video daily,
now i get to the point of record the desktop as images in
*.jpeg
i need to combine them as video, i don't know much aboutffmpeg
but i have seen this article, and i wonder if i can make all this as press of a button in C#, so i can combine the images then delete them on the form load or somethingEDIT :
now i got the code :ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi
but i don't know where to type that in my project ! -
vf_fps : use double constants for default/min/max for start_time
27 août 2013, par Hendrik Leppkesvf_fps : use double constants for default/min/max for start_time
When using AV_NOPTS_VALUE (which expands to INT64_C(0x8000000000000000))
as union initializer for a double field, the c99 converter needs to
interpret this constant when filling the union initializer, and it is
interpreted as a positive value.When converting AV_NOPTS_VALUE to a double, MSVC 2010 ends up with
the same positive value as the c99 converter, while MSVC 2012 gets
a negative value.This results in an infite loop in various FATE tests on MSVC 2012.
Signed-off-by : Martin Storsjö <martin@martin.st>