
Recherche avancée
Autres articles (107)
-
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 (9249)
-
How to switch content of ffmpeg rtmp stream whilst streaming continues ?
9 juin 2020, par re0603I am currently re-streaming an online stream to my server - using RTMP.



There is another online stream that I also want to re-stream to the same RTMP destination, when certain events occur.



How do I programatically switch the content of the stream without ending the RTMP stream of the first source ? I do not want the stream to go offline whilst I switch content.


-
Streaming WebM files on unsupported browsers (Safari, IE, etc)
14 juillet 2015, par Swaathi KI’d like to stream WebM videos to browsers that don’t support it (like Safari/IE). I have no problem in converting the video to a supportable format (like MP4), but the encoding should be on-demand, that is, the server should stream the MP4 content while it’s being converted from Web (WebM -> MP4). I’ve seen a few solutions like Dash and Stream-M, but all these seem to do it the other way around (MP4 -> WebM). Is there a solution that already exists for my problem ? Or do I need to build my own hack ? And also is this solution the only way to stream WebM content onto Safari/IE ?
-
How to produce Live video and audio streaming (not VoD) with ffmpeg ?
22 novembre 2022, par ArtemI want to produce a Live audio/video stream from local file.



I tried the following :





ffmpeg -re -thread_queue_size 4 -i source_video_file.ts -strict -2
 -vcodec copy -an -f rtp rtp ://localhost:10000 -acodec copy -vn -sdp_file saved_sdp_file -f rtp rtp ://localhost:20000





and then :





ffplay saved_sdp_file





It seems to work fine, but it looks like a Video on Demand, cause I can replay this file with ffplay whenever I want.



But I need ffplay to show video/audio only during ffmpeg streaming instance is running (the first command above).



How do I achieve this ?



Thanks !