
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (78)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (10881)
-
lavc/pngdec : restructure exporting frame meta/side data
20 mars 2021, par Anton Khirnovlavc/pngdec : restructure exporting frame meta/side data
This data cannot be stored in PNGDecContext.picture, because the
corresponding chunks may be read after the call to
ff_thread_finish_setup(), at which point modifying shared context data
is a race.Store intermediate state in the context and then write it directly to
the output frame.Fixes exporting frame metadata after 5663301560
Fixes #8972Found-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Anomalie #4008 : sauvegarde partielle du site via maintenance : une table meta est importée, même ...
1er octobre 2017, par b bLe bon projet et la bonne branche, à noter que la 3.1 est aussi impactée.
-
Add length for each frame in a MJPEG stream transcoded by ffmpeg
8 décembre 2020, par user3612643I am using the following command to transcode my cam's stream into
mjpeg
which I decode and present in my custom home-control app :

ffmpeg -i rtsp://mycamera:554/onvif1 -c:v mjpeg -f mjpeg -


That works quite nicely, but the result is just a continuous sequence of
jpeg
images/frames. For faster decoding, I would like to have a length header before each frame, so that I can cut out the exact JPEG from the stream :

LENGTH FRAME LENGTH FRAME


Each
LENGTH
should be 4-bytes encoding in LE or BE the length of the followingFRAME
in bytes.