Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (66)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10090)

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

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

  • Receive HLS stream and rebroadcast

    22 septembre 2020, par user9066046

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

    &#xA;

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

    &#xA;

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

    &#xA;

    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.

    &#xA;

    So users can access like

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    worker_processes  auto;&#xA;events {&#xA;    worker_connections  1024;&#xA;}&#xA;&#xA;http {&#xA;    sendfile off;&#xA;    tcp_nopush on;&#xA;    aio on;&#xA;    directio 512;&#xA;    default_type application/octet-stream;&#xA;    &#xA;    server {&#xA;        listen 8080;&#xA;&#xA;        location / {&#xA;            # Disable cache&#xA;            add_header &#x27;Cache-Control&#x27; &#x27;no-cache&#x27;;&#xA;            &#xA;            # CORS setup&#xA;            add_header &#x27;Access-Control-Allow-Origin&#x27; &#x27;*&#x27; always;&#xA;            add_header &#x27;Access-Control-Expose-Headers&#x27; &#x27;Content-Length&#x27;;&#xA;            &#xA;            # allow CORS preflight requests&#xA;            if ($request_method = &#x27;OPTIONS&#x27;) {&#xA;                add_header &#x27;Access-Control-Allow-Origin&#x27; &#x27;*&#x27;;&#xA;                add_header &#x27;Access-Control-Max-Age&#x27; 1728000;&#xA;                add_header &#x27;Content-Type&#x27; &#x27;text/plain charset=UTF-8&#x27;;&#xA;                add_header &#x27;Content-Length&#x27; 0;&#xA;                return 204;&#xA;            }   &#xA;            &#xA;            types {&#xA;                application/dash&#x2B;xml mpd;&#xA;                application/vnd.apple.mpegurl m3u8;&#xA;                video/mp2t ts;&#xA;            }   &#xA;            &#xA;            root /mnt/;&#xA;        }   &#xA;    }&#xA;}&#xA;

    &#xA;