Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • 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 (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11300)

  • Can use nginx rtmp to play video before live stream ?

    10 août 2017, par Nate

    I want to create streaming server and I’ve idea to play intro before play stream.

    | |
    | user —> nginx —> intro (.mp4) —> live streaming |
    | |

    Possible to do it with nginx + ffmpeg ?

    thank.

  • Youtube live stream with dynamic content

    6 octobre 2019, par Arturek

    I’m trying to create a live stream with changing data in real-time on youtube.

    Let’s say I want to show the current Bitcoin price in real-time. For instance, using python and sending requests to some public APIs, I can very easily get current prices of Bitcoin. But I have no idea how to create such a live stream, which will be automatically updated with fresh data.

    I know that I can use ffmpeg to stream on youtube, but how would I change the content of my stream ?

    # To make sure you know what I mean, I created a basic sample.

    import requests
    import json
    import time

    createYtLiveStream()

    while(True):
     response = requests.get('https://api.coindesk.com/v1/bpi/currentprice.json').json()
     price = response['bpi']['USD']['rate']

     updateYtLiveStream(price)

     time.sleep(20)

    I want to do it on Ubuntu. Can you tell me how can I do it, please ?
    Thanks.

  • 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 !