
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 (59)
-
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 (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (8239)
-
Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
4 février 2014, par Michael NiedermayerMerge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
* commit ’e46ad30a808744ddf3855567e162292a4eaabac7’ :
vp8 : use a fixed-size edge emu bufferConflicts :
libavcodec/vp8.c
libavcodec/vp8.hSee : face578d56c2d1375e40d5e2a28acc122132bc55
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
how to stream from multiple unknown-beforehand mp4 files to html5 video tag
2 avril 2017, par Lana NovaI would like to enable the following flow :
- segment a video stream from a webcam using ffmpeg into mp4 files,
- transform those video files using opencv
- stream the resulting mp4 files using html5 video tag
I found that for #3 above I can use ffmpeg to transcode to HLS format :
sudo ffmpeg -i /tmp/edge-data/part-00000000.mp4 -profile:v baseline -level 3.0 -s 640x360 -start_number 5 -hls_time 10 -hls_list_size 0 -f hls /var/www/html/playlist.m3u8
and then use videojs to augment the html5 video tag and point it at the m3u8 playlist file generated by the ffmpeg command above.
My problem is that I have multiple mp4 files that are not known in advance. So, in a way, I need to be continuously adding items to the m3u8 playlist file.
I found I can do it manually by removing the EXIT subsection of the m3u8 file and appending paths to new .ts files manually. Is there an option to do that with ffmpeg instead ?
Is there an easier way to accomplish what I’m trying to do here ?
Thanks !
-
avcodec/vc1 : change the internal ordering of blocks within a macroblock
20 juin 2018, par Jerome Borsboomavcodec/vc1 : change the internal ordering of blocks within a macroblock
The overlap filter needs to cover a full macroblock vertical edge when the
FIELDTX value for two neighbouring macroblocks is not equal. By changing
the internal ordering of the blocks from row major to column major, we do
not need to reinterlace a FIELDTX coded macroblock before running the overlap
filter.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>