Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (7400)

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