
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (107)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (11725)
-
avcodec/libdav1d : don't depend on the event flags API to init sequence params the...
7 avril 2022, par James Almeravcodec/libdav1d : don't depend on the event flags API to init sequence params the first time
A bug was found in dav1d <= 1.0.0 where the event flag New Sequence Header would
not be signaled for some samples using delayed random access points.
It has since been fixed, but nonetheless it's best to ensure the AVCodecContext
is filled with parameters when parsing the first frame, regardless of what events
were signaled.Fixes ticket #9694.
Signed-off-by : James Almer <jamrial@gmail.com>
-
How to stream a video formatted in hls, m3u8 in Laravel ?
8 mai 2021, par black manIn database, videos are saved in m3u8 format as shown below. I want to open video when I click on button or download it. I read this. But still not clear for me ? Thanks in advance.


dfa7088-9d3c-4b23-0010a-59fc63f4441d/hls/qe8b807916f8816a.m3u8


@if( $item->media_type=='v')
 <code class="echappe-js"><script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>

 
<script>&#xA; if(Hls.isSupported())&#xA; {&#xA; var video = document.getElementById(&#x27;video&#x27;);&#xA; var hls = new Hls();&#xA; hls.loadSource(&#x27;playlist.m3u8&#x27;);&#xA; hls.attachMedia(video);&#xA; hls.on(Hls.Events.MANIFEST_PARSED,function()&#xA; {&#xA; video.play();&#xA; });&#xA; }&#xA; else if (video.canPlayType(&#x27;application/vnd.apple.mpegurl&#x27;))&#xA; {&#xA; video.src = &#x27;playlist.m3u8&#x27;;&#xA; video.addEventListener(&#x27;canplay&#x27;,function()&#xA; {&#xA; video.play();&#xA; });&#xA; }&#xA; </script>

 @else@endif


-
How can I split an RTSP stream so that I can both save it to files and apply a motion detection client ? (e.g. ffmpeg, motion)
1er septembre 2022, par Pat NiemeyerI’ve been using "motion" successfully to read an rtsp stream and save motion triggered events.


motion -c motion.conf # config file has the rtsp url and other params



However I’d like to both save the full stream and analyze for motion in this way. I know that I can capture the stream to files with ffmpeg something like this :


ffmpeg -i rtsp://mystream -vcodec copy -acodec copy -map 0 -f segment -segment_time 300 -segment_format mp4 "ffmpeg_capture-%03d.mp4"



Is there is a way to split / duplicate the rtsp stream (perhaps using ffmpeg again) so that I can have both motion and ffmpeg processes looking at it simultaneously ? Alternately is there some option on motion that I’m missing that would automatically save both the raw video and the motion segments ?