Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (71)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (8211)

  • where to save mpd file in raspberry pi so dash.js can access it remotely ?

    11 mai 2016, par Djm

    This is very high level question. I want to stream a live video from raspberry pi. I want to be able to watch live video in the browser remotely being streamed by the Raspberry pi.I want to use DASH stream protocol, and Dash.js as client to HTML5. I have looked through different tutorials but i am still puzzled about how this works.I understand that (assuming you have already prepared your videos with FFMPEG tool) from the client Dash.js
    you have to make a call/request and pass a url to your mpd file. My question is where would you save the file in raspberry pi especially if the Dash client is in a different web app(i want to make the call remotely) ?

  • is that possible to serv hls and dash mpeg both at a time

    12 février 2020, par Rahul M

    actually i’m a kind a newbie to the Nginx RTMP server. I had setup my nginx.conf file to accept both hls and dash-mpeg. but the now problem is at a once I can able to serve either of the hls or dash-mpeg. so now my question is that possible to serve both hls and dash-mpeg at the same time for two different videos ? I’m streaming video from OBS Studio.
    here are my MPEG and hls code in nginx.conf file

    rtmp {
    server {
       listen 1935; # Listen on standard RTMP port
       chunk_size 4000;

       application show {
           live on;
           # Turn on HLS
           hls on;
           hls_path /nginx/hls/;
           hls_fragment 3;
           hls_playlist_length 60;
           deny play all;
       }
       application dash {
               live on;
               dash on;
               dash_path /nginx/dash;

       }
    }

    }

    thank you advance.

  • When player client starts to play a dash media

    7 juillet 2022, par CoXier

    I'm working on Android Player for playing dash media.

    


    In order to enable video starting fast, I preload a part of dash media, now the size of preload is 600kb.

    


    As you see, 600kb is a magic number. In my opinion, different size should be preloaded for different dash file.

    


    All start position of dash media is 0.

    


    I want to know : How to know the size of dash media which can support player starts to play ?

    


    Thanks for your help.