Recherche avancée

Médias (91)

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (11935)

  • Receive HLS stream and rebroadcast

    22 septembre 2020, par user9066046

    I have commercial streaming server that streams via HLS in Europe.

    


    http://europe.server/stream1/index.m3u8

    


    Now my clients in USA having some network issues due to distance.

    


    So I have deployed new server in USA. I'd like it to receive HLS streams from European server and respond to US based customers.

    


    So users can access like

    


    http://usa.server/stream1/index.m3u8

    


    It will be H265/HEVC only so RTMP is not possible. Every tutorial I see on internet is based on RTMP.

    


    I have used following config from https://docs.peer5.com/guides/setting-up-hls-live-streaming-server-using-nginx/ for reference.

    


    worker_processes  auto;
events {
    worker_connections  1024;
}

http {
    sendfile off;
    tcp_nopush on;
    aio on;
    directio 512;
    default_type application/octet-stream;
    
    server {
        listen 8080;

        location / {
            # Disable cache
            add_header 'Cache-Control' 'no-cache';
            
            # CORS setup
            add_header 'Access-Control-Allow-Origin' '*' always;
            add_header 'Access-Control-Expose-Headers' 'Content-Length';
            
            # allow CORS preflight requests
            if ($request_method = 'OPTIONS') {
                add_header 'Access-Control-Allow-Origin' '*';
                add_header 'Access-Control-Max-Age' 1728000;
                add_header 'Content-Type' 'text/plain charset=UTF-8';
                add_header 'Content-Length' 0;
                return 204;
            }   
            
            types {
                application/dash+xml mpd;
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }   
            
            root /mnt/;
        }   
    }
}


    


  • Merge commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’

    18 août 2014, par Michael Niedermayer
    Merge commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’
    

    * commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’ :
    doc : Change wrong term to avoid confusion

    Conflicts :
    doc/developer.texi

    No change, as the wrong term is not part of our docs

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • Libavfilter with ffmpeg - overlay the last X seconds

    9 avril 2012, par gphilip

    Looking at the docs of libavfilter it doesn't seem to be possible, but still, I hope you can help me.

    I want to overlay an image to a movie but only for the last X seconds of the movie. I managed to overlay for the full movie, no problem. But can I get a time when the overlay is shown ?

    I use ffmpeg with compiled with libavfilter. Any tricks to solve this ?