
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (81)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (10849)
-
Extract frames from live youtube stream
21 décembre 2022, par irmanI want to extract frames from a youtube live event, say one frame every 5 minutes, ideally without saving the stream to my local machine. Is there a simple way to do this, possibly a combination between
youtube-dl
andffmpeg
that I am not figuring out ? I found a similar question for UDP streams but don't know how to include the youtube stream : FFMPEG : extract a fram from a live stream once every 5 seconds


Thanks a lot in advance !


-
Extract audio frames from live stream with FFMPEG
3 juillet 2021, par Devwork94035I would like to perform live voice activity detection and audio analysis on a live video stream.


I currently use FFMPEG to extract the audio :


ffmpeg -i https://example.com/live/stream.m3u8 -vn -c:a copy audio.aac



The issue is that the aac file will only be valid once the stream has finished.


How can I output an audio stream or audio chunks/frames (just like image frames) so that I can analyze them without waiting for the end of the video stream ?


-
Rtsp streaming, no live
14 août 2018, par Alejandroi follow this topic for streaming rtsp here
now this is my conf in the server :ffmpeg -v info -i rtsp://XXXXX.ddns.net/onvif1 -c:v copy -c:a copy -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/html/p433/assets/video/test.m3u8 -loglevel debug
The client :
<code class="echappe-js"><script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js"></script>
<script src="https://releases.flowplayer.org/7.2.6/flowplayer.min.js"></script>
<script><br />
flowplayer('#player', {<br />
live: true, // set if it's a live stream <br />
ratio: 9/16, // set the aspect ratio of the stream<br />
clip: {<br />
sources: [<br />
// path to the HLS m3u8<br />
{ type: "application/x-mpegurl", src: "&lt;?php echo asset_url();?>video/test.m3u8"},<br />
// path to an optional MP4 fallback<br />
{ type: "video/mp4", src: "//yourserver/path/index.mp4"}<br />
]<br />
}<br />
});<br />
</script>The problem ? dont show video in "Live", only show 20seconds aprox and the video is loop icon loading
what am I doing wrong ? I try it all night but I think that it reaches the point of not finding the right path
thanks for your time !