Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (31)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4716)

  • Reduce RTMP buffer while decoding using ffmpeg

    15 janvier 2019, par Alberto Padilla

    I’m setting up a new server using nginx and nginx-rtmp-module. I installed a DeckLink Duo2 card to output SDI signals comming from the RTMP stream.

    Everything works really great using this simple nginx.conf configuration :

    rtmp {
       server {
               listen 1935;
               chunk_size 4096;

               wait_video on;
               wait_key on;

               sync 10ms;

               application live {
                   live on;
                   record off;

                   exec_push /home/myuser/bin/ffmpeg -i rtmp://127.0.0.1/live/mystreamname -f decklink -format_code pal -pix_fmt uyvy422 'DeckLink Duo (1)';
               }  
      }
    }

    My goal is to achieve the absolute minimum delay between the received stream and the SDI output.

    I can achieve 3 seconds "waving hand" delay using the configuration that I mentioned. However, using ffplay I observe 1.5s delay using the -fflags nobuffer option.

    As ffplay cannot output to a decklink device, I want ffmpeg to reduce the buffer to the minimum, but I can’t find the way to do it. All the -rtmp_buffer or -fflag nobuffer or any other options have no impact on the delay.

    The stream is being received in the same machine ffmpeg is running, that is why it makes sense to reduce the ffmpeg buffering to the minimum if I want to achieve low delay.

    Any tips ?

  • how to use ffmpeg encrypt AES-128 HLS m3u8 playlist ? [duplicate]

    22 décembre 2015, par jason

    This question already has an answer here :

    I use the ffmpeg -i fighter.mp4 -hls_time 10 stream.m3u8 to crated a m3u8 file.
    But there’s not #EXT-X-KEY info in the m3u8 file.
    What should I do to add key in the HLS playlist ?

  • ffmpeg : is that possible to join 4 small videos in 1 big video ? [duplicate]

    6 décembre 2013, par user300675

    This question already has an answer here :

    I have 4 small videos : 160*120pixels each of different length each.

    My goal is to obtain 1 video of 320*320 pixels :
    - video1 on top left, video2 on top right, video3 on bottom left, video4 on bottom right

    Is this possible with FFMPEG ?