Recherche avancée

Médias (91)

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

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

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

Sur d’autres sites (6634)

  • restream the rtmp stream by using ffmpeg and nginx-rtmp-module

    30 octobre 2014, par Stanislav

    This is my current rtmp configuration for localhost, everything works well

     # Transcoding (ffmpeg needed)

      application big {

          live on;

      exec /usr/local/bin/ffmpeg -re -i rtmp://localhost:1935/$app/$name -vcodec flv -acodec copy -f flv rtmp://localhost:1935/anotherapp/${name};

      }

    application anotherapp {
          live on;
     }

    This is what I am trying to achive

     # Transcoding (ffmpeg needed)

      application big {

          live on;

      # rtmp://localhost:1935/$app/$name  -> Receive this address dynamically from outside, for example the address will be rtmp://142.204.134.93/red5app/12345
      # rtmp://localhost:1935/anotherapp/${name};  -> and create new stream on my server with the same name.
      # So this will be the result:

      exec /usr/local/bin/ffmpeg -re -i  rtmp://142.204.134.93/red5app/12345 -vcodec flv -acodec copy -f flv rtmp://localhost:1935/anotherapp/12345;

      }

    application anotherapp {
          live on;
     }

    Thank you very much in advance.

  • Révision 108893 : Bizarre, le module figure dans traduction.txt mais ne se trouve pas dans trad.sp...

    10 février 2018, par george@middleeastwatch.net
  • 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.