Recherche avancée

Médias (91)

Autres articles (95)

  • Les sons

    15 mai 2013, par
  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (11756)

  • avutil : fix version macros doxygen module

    4 juillet 2014, par Timothy Gu
    avutil : fix version macros doxygen module
    

    Without this patch, "Library Version Macros" module is not visible on
    libavutil homepage in `make apidoc`.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/avutil.h
    • [DH] libavutil/version.h
  • audio_fifo : Split into a separate doxygen module

    6 juillet 2014, par Timothy Gu
    audio_fifo : Split into a separate doxygen module
    

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavutil/audio_fifo.h
  • Transcode H264 stream into mpeg2 with ffmpeg and nginx-rtmp module

    21 mai 2015, par inside

    I am using nginix web server and nginx-rtmp module for managing my video stream encoded in h264. Here is my nginx conf :

    rtmp {
    server {
       listen 1935;

       application big {
           live on;

       exec ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec
            libx264 -vprofile baseline -acodec libvo_aacenc -ac 1 -ar 441000
            -f flv rtmp://localhost:1935/hls/${name};
         }
      }

      application hls
      {
         live on;
         hls_path /usr/local/nginx/html/video;
      }
    }

    it works well in browser, however because my mobile client is Adobe Air it would only work on Android but not Apple, because Apple doesn’t support H264 encoding through AIR applications, so I was trying to transcode the stream to something supported for example mpeg. And this is how I changed my ffmpeg :

       exec ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec
            mpeg2video -acodec copy -b:v 10M -b:a 128k
            -f mpegts rtmp://localhost:1935/hls/${name};

    However it just won’t show the video not in a browser nor on device, my assumption is that it probably failed to transcode.

    Maybe I am missing something ? Any ideas are highly appreciated.
    Thank you.