Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (96)

  • 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 Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (7185)

  • nvdec : attach real hw_frames to post-processed frames

    20 mars 2020, par Timo Rothenpieler
    nvdec : attach real hw_frames to post-processed frames
    
    • [DH] libavcodec/nvdec.c
    • [DH] libavcodec/version.h
  • Anomalie #3476 (Fermé) : Prévisualiser un article post daté

    25 juillet 2015, par cedric -

    Appliqué par commit r22338.

  • NodeJs : Parsing POST request file upload as stream to ffmpeg

    29 mai 2017, par Christian Abdelmassih

    I’m trying to upload a file by sending a POST request to my NodeJs-server where the server will upon receiving the request (but not necessarily whole file) create a readStream on the incoming file and pass it to fluent-ffmpeg for video-compression and then saving it on the server. The idea is to pass the stream to ffmpeg without waiting for the whole file to be uploaded instead of waiting for the upload to complete and then pass the file since it would take more time and require to store the file temporarily on the server before the compression.

    With the current code ffmpeg gives the error pipe:0: Invalid data found when processing input which I translate to some error with the stream creation. The code is as follows

    module.exports = function(req, res) {
     let formidable = require('formidable');
     let form = new formidable.IncomingForm();
     form.parse(req, (err, fields, files) => {
       let readStream = fs.createReadStream(files.uploadedfile.path);
       let ffmpeg = require('fluent-ffmpeg')
       let ffmpegCmd = ffmpeg(readStream)
       ...
     });
    });

    Am I making some wrong assumption here ?