Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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, par

    The 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 2011

    Vous 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 irman

    I 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 and ffmpeg 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 Devwork94035

    I 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 Alejandro

    i 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">&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js&quot;&gt;&lt;/script&gt;

    &lt;script src=&quot;https://releases.flowplayer.org/7.2.6/flowplayer.min.js&quot;&gt;&lt;/script&gt;

    &lt;script&gt;<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: &quot;application/x-mpegurl&quot;, src: &quot;&amp;lt;?php echo asset_url();?&gt;video/test.m3u8&quot;},<br />
                       // path to an optional MP4 fallback<br />
                       { type: &quot;video/mp4&quot;, src: &quot;//yourserver/path/index.mp4&quot;}<br />
                   ]<br />
               }<br />
           });<br />
    &lt;/script&gt;

    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 !