Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (44)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (12706)

  • Merge remote-tracking branch ’qatar/master’

    27 décembre 2013, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    doxy : Update the css to have a flat style

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/doxy/doxy_stylesheet.css
  • Broadcasting using Python [on hold]

    8 octobre 2018, par Aayush Tyagi

    I want to broadcast video processed using opencv after performing object detection so that multiple users can simultaneously see video on their browser.
    Can you please suggest how can I push frames to server and which server I can use for broadcasting purpose ?

    Also can you please point to some reference material or module that will help.

    (I am planning to use adaptive bit-rate streaming )

    PS :(I am using python on Ubuntu system and I am new in this domain)

  • How do I access ffmpeg stdout as a buffer stream in node js

    15 octobre 2022, par Radespy

    I'm trying to access the output of an ffmpeg command (run with spawn in nodeJS) so that I can store the processed video in a buffer.

    &#xA;

    I've tried the following code :

    &#xA;

    (videoBuffer = [Unit8Array])&#xA;&#xA;let arr = [];&#xA;&#xA;let ffmpegSpawn = spawn(ffmpegPath, [&#xA;    "-i",&#xA;    "-",&#xA;    "-filter:v",&#xA;    "crop=500:500:50:50",&#xA;    "-preset",&#xA;    "fast",&#xA;    "-f",&#xA;    "mp4",&#xA;    "-",&#xA;  ]);&#xA;&#xA;  ffmpegSpawn.stdin.write(videoBuffer);&#xA;  ffmpegSpawn.stdin.end();&#xA;&#xA;  ffmpegSpawn.stdout.on("data", (chunk) => {&#xA;    console.log(chunk.toString());&#xA;    arr.push(chunk)&#xA;  });&#xA;&#xA;  ffmpegSpawn.stderr.on("error", (err) => {&#xA;    console.log(err);&#xA;  });&#xA;&#xA;  ffmpegSpawn.stdout.on("close", () => {&#xA;    console.log(arr)&#xA;  });&#xA;&#xA;

    &#xA;

    No error is being produced but I can't see any output in the console other than an empty array.

    &#xA;

    The ffmpeg command is successfully receiving the input via child_process.stdin and the [ "-i", "-" ...] args because I'm able to successfully create a test .mp4 file by passing the following args into ffmpeg (using spawn) :

    &#xA;

    [&#xA;    "-i",&#xA;    "-",&#xA;    "-filter:v",&#xA;    "crop=500:500:50:50",&#xA;    "-preset",&#xA;    "fast",&#xA;    "./desktop/testVideo.mp4"&#xA;  ]&#xA;

    &#xA;

    I've tried accessing the child_process directly with :

    &#xA;

    ffmpegSpawn.on("data", (chunk) => { arr.push(chunk); console.log(chunk.toString()})&#xA;

    &#xA;

    but nothing is seen on the console.

    &#xA;

    Q : How do I access ffmpegSpawn.stdout ? As no error is being produced, I am assuming that the arguments to ffmpeg are valid.

    &#xA;

    Why is the array empty ?

    &#xA;

    Any help would be much appreciated.

    &#xA;