Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (3724)

  • Live Streaming RTMP to RTSP

    19 septembre 2013, par user2794054

    i need to test a restream work like this.
    now i m using crtmpserver. i want to restream rtmp live source to iis smooth streaming format & rtsp format. Please guide me
    rtmp live to rtsp live
    &
    rtmp to live http streaming (target IIS server)

    Thanks

  • How do I close a Node.js FFMPEG child process that is actively streaming from a live capture source ?

    1er juin 2013, par RickZ

    I'm new to Node.js and have figured out how to utilize child.spawn to launch an instance of FFMPEG that is being used to capture live video and send it over to Adobe Media Server via rtmp.

    Every example I've seen of FFMPEG being used in conjunction with Node.js has been with a time limited sample, so the child process closes once FFMPEG reaches the end of the file it is converting.

    In this case, there is no "end of file".

    If I instantiate :

       var ffmpeg = child.spawn('ffmpeg.exe', [args]);

    it creates the live feed.

    I have tried immediately shutting the child process down with a :

       setTimeout(function() {
           ffmpeg.stdin.resume();
           ffmpeg.stdin.write('insert command to echo q to close FFMPEG');
           ffmpeg.stdin.end();
       });

    However, that does not seem to work. I continue to see my rtmp feed on my test box.

    Is there any way to pass FFMPEG a shut down command via stdin in Node.js ?

    Thanks in advance !

    Rick

  • ffmpeg-detect audio level from live audio streaming(php)

    27 décembre 2013, par Tony Chhabada

    i have live audio stream service. I need to use ffmpeg to check audio level of stream in real time.

    i have tried

    ffmpeg -i sample.aac -filter:a volumedetect -vn -f null /dev/null

    I need my live audio streaming link in place of sample.aac.