Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (74)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (4520)

  • What are the steps required to create a non-NPAPI video decoder plugin - VLC Alternative ?

    26 novembre 2013, par ElHaix

    Google's Say Goodbye to Our Old Friend NPAPI blog post indicates that NPAPI plugin support will cease by the end of 2014 (in favor of PPAPI).

    We have considered the option of using the ffmpeg libraries to create our own video plugin to simply decode RTSP encoded H.264 video streams on the client - important because we need as near real-time video display (avoiding transcoding latency). Using the ffmpeg libraries, there is still a 3-5 second delay in decoding the stream, not as fast as running MPlayer with the -benchmark option.

    In trying Google's PNaCl recommendation, we just got the LOADING status and the following error :

    NativeClient : NaCl module load failed : PnaclCoordinator : Compile
    process could not be created : ServiceRuntime : failed to start

    Are there any other alternatives or suggestions ?

  • How save an audio buffer with Fluent FFmpeg

    17 juin 2016, par Luke

    I have a Buffer object that contains audio data and I’m wondering if I can save this Buffer through Fluent FFmpeg without writing it to a file temporary first.

    I came across this other question : fluent-ffmpeg module : "end" event does not fire

    Which seems to do what I need but with video, however, this technique doesn’t seem to work for me. I get the following error :

    ffmpeg write error 'Input stream error: not implemented'

    How can I pipe a Buffer directly to Fluent FFmpeg without writing it to a temporary file first ?

  • How can I get audio in my ffmpeg stream to nginx rtmp server ?

    26 novembre 2013, par Conor Patrick

    I currently have a nginx server setup with the rtmp plugin for video streaming. I'm streaming to it with ffmpeg and then displaying the stream on a web browser with adobe flash player.

    I have the video streaming successfully but I have not been able to get audio.

    This is the ffmpeg command I use to start the stream

    ffmpeg -f video4linux2 -s 320x240 -r 16 -i /dev/video0 -f alsa -i hw:0 -an -f flv rtmp://123.456.789.51:31002/rover/mystream

    The stream then goes to nginx which is running on this conf file

    worker_processes  1;

    error_log  logs/user/error.log debug;

    events {
       worker_connections  1024;
    }

    rtmp {
       server {
           listen 31002;

           application rover {
               live on;
               #meta copy;
               #interleave on;
               allow publish all;
               allow play all;

               hls on;
               #record keyframes;
               #record_path /tmp;
               #record_max_size 128K;
               #record_interval 30s;
               #record_suffix .this.is.flv;

               #on_publish http://localhost:8080/publish;
               #on_play http://localhost:8080/play;
               #on_record_done http://localhost:8080/record_done;
           }
       }
    }

    http {
       server {
           listen      26360;

           location /stat {
               rtmp_stat all;
               rtmp_stat_stylesheet stat.xsl;
           }

           location /stat.xsl {
               root nginx-rtmp-module-master/;
           }

           location /control {
               rtmp_control all;
           }

           #location /publish {
           #    return 201;
           #}

           #location /play {
           #    return 202;
           #}

           #location /record_done {
           #    return 203;
           #}

           location /rtmp-publisher {
               root /path/to/test;
           }

           location / {
               root nginx-rtmp-module-master/test/www;
           }
       }
    }

    I then access the stream from a browser using this set up for the adobe flash player and strobe media player.

       
       
       
       
       
       
       

    Could I get some suggestions as to how I couldn't be getting audio ? I'm streaming video from my webcam and specifying audio from my mic.