Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (56)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7885)

  • NodeJS ffmpeg streaming

    20 décembre 2016, par user2631534

    I i using ffmpeg and nodejs and i im trying to stream hls stream...but i im unable to do that...does anyone have code to do that ? i have successfully stream only one stream using this code :

    streamRoutes.get('/stream', function(req, res) {
    // Write header
    res.writeHead(200, {
     'Content-Type': 'video/H264'
    });

    /*var command = ffmpeg.setFfmpegPath(process.env.PWD + "/node_modules/ffmpeg-static/bin/linux/x64/ffmpeg");*/


    // Start ffmpeg
    var command = child_process.spawn(process.env.PWD + "/node_modules/ffmpeg-static/bin/linux/x64/ffmpeg", [
       "-y",                                                            /* OVERWRITE - output file */
       "-hide_banner",                                                  /* BANNER - hide           */
       "-loglevel", "quiet",                                            /* LOG    - hide           */
       "-i", "http://streamurl/live/1.ts",   /* STREAM - source        */
       "-vcodec", "copy",
       "-reset_timestamps", "1",
       "-movflags", "frag_keyframe+empty_moov",
       "-f", "mp4",
       "-"
    ], { detached: false });

    // Pipe the video output to the client response
    command.stdout.pipe(res);

    // Kill the subprocesses when client disconnects
    res.on("close", function(){
       command.kill();
    })

    }) ;

    But i would like to define output stream file name so that it will be accessable using this link :

    http://myserverip:port/1.ts

    And so on (each stream will be have its own name)....i see that ffmpeg command have parameter :

    -f http://127.0.0.1:8081/1.ts

    but i im not sure what code i need to write in nodejs to get this link working for example if my server ip is : 86.69.86.61 then when i enter link i vlc player :
    http://86.69.86.61:8081/1.ts it need to start playing video.

    Examples using ffmpeg in nodejs i see only using stdout and not defined ffmpeg output using -f parameter.

    UPDATED QUESTION :

    I would like to make restreamer using ffmpeg to enter in ffmpeg this links :

    http://169.56.89.65:8001/1.ts
    http://58.69.89.78:5026/2.ts
    http://63.69.89.78:4012/3.ts

    and suppose that my server ip is : 86.69.86.61 i would like when i enter in vlc link :

    http://86.69.86.61:8081/1.ts
    http://86.69.86.61:8081/2.ts
    http://86.69.86.61:8081/3.ts

    i start restreaming using ffmpeg manually but i can’t get above url working...how to do that in node js ? do i need to route 1.ts 2.ts 3.ts to port or ?

  • How do i use the ffmpeg exe file command line ? [closed]

    13 mai 2013, par Yaron Cohen Minz

    I tried this :

    ffmpeg -f image2 -i image%d.jpg video.mpg

    But what i want to do is to take one jpg file i have on the hard disk and convert it to avi file using mpeg4 compression.

    How can i do it ?

  • Revision 6a6c427710 : vp9/encoder/vp9_onyx_if : Fix compute_qdelta_by_rate() warnings - Rename and mak

    13 février 2014, par Tom Finegan

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    vp9/encoder/vp9_onyx_if : Fix compute_qdelta_by_rate() warnings

    - Rename and make static
    s/vp9_compute_qdelta_by_rate/compute_qdelta_by_rate/
    - Make base_q_index an integer.
    - Add a cast.

    Change-Id : Iea8d1397fd2717e7373b182ec51f5db960ef2cca