
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (67)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
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 (...)
Sur d’autres sites (6194)
-
avformat/argo_brp : remove block_align check for audio
3 novembre 2020, par Zane van Iperenavformat/argo_brp : remove block_align check for audio
Causes a divide-by-zero in the rare case where :
the file has an audio stream,
the first audio frame isn't within the first BRP_BASF_LOOKAHEAD frames,
an audio frame is encountered later, and
its chunk header (except num_blocks) contains all zeros
(matching the uninitialised structure in the context)The decoder will discard any garbage data, so the check isn't really needed.
Fixes : division by 0
Fixes : 26667/clusterfuzz-testcase-minimized-ffmpeg_dem_ARGO_BRP_fuzzer-5645146928185344.fuzzFound-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Zane van Iperen <zane@zanevaniperen.com> -
RTSP stream emulator with variable playback speed [closed]
31 janvier 2021, par foyifeI would like to build an application very similiar to an existing one. It is an IP camera emulator that makes RTSP streams from local video files.


What I need in addition are options to control the video with an API while the stream is running. Some examples for that :


- 

- Skipping to a certain timestamp of the video
- Change the playback speed
- Play the video in reverse








Unfortunately, I have very little experience in video streaming and it seems to be a rare use case for ffmpeg or gstreamer. Maybe someone could give me a hint on which library might be best for this application ? Thanks !


-
avcodec/mediacodecdec : do not abort when H264/HEVC extradata extraction fails
12 février 2021, par sfan5avcodec/mediacodecdec : do not abort when H264/HEVC extradata extraction fails
Although rare, extradata can be present but empty and extraction will fail.
However Android also supports passing codec-specific data inline and
will likely play such a stream anyway. So there's no reason to abort
initialization before we know for sure.