
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 (68)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8047)
-
matroskaenc : don’t warn about unknown spherical metadata when there isn’t any
14 avril 2017, par James Almermatroskaenc : don’t warn about unknown spherical metadata when there isn’t any
The same warning is issued when actual unknown spherical metadata is
found further down in the function.Signed-off-by : James Almer <jamrial@gmail.com>
Signed-off-by : Anton Khirnov <anton@khirnov.net> -
avprobe : Handle unknown values for the color description
17 avril 2017, par Luca Barbato -
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 !