Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11162)

  • Silvia Pfeiffer Live Stream

    14 juin, par silvia

    Category : 2
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

    The post Silvia Pfeiffer Live Stream first appeared on ginger’s thoughts.

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

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