Advanced search

Medias (91)

Other articles (47)

  • Le plugin : Podcasts.

    14 July 2010, by

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 video/mp4 (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 June 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

On other websites (9757)

  • Anomalie #2374 (Fermé): request url too long

    18 October 2011, by cedric -

    corrigé par r18613 et r18614 : la sortie brutale sur $conflit provoquait la redirection erronée à cause de l’ajax.

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

    29 May 2017, by 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?

  • Problems with slowing down when grid synthesis operation request via ffmpeg is received simultaneously

    7 November 2022, by bongcheol Kim
      

    1. Crop/scaling/volume leveling encoding of videos uploaded by users in S3 with predetermined settings
    2. 


    3. Synthesize in grid form with other pre-prepared videos.
    4. 


    


    Perform the above tasks through ffmpeg.
Encoding slows down when multiple requests occur simultaneously.
(Maybe it's because we shared the server's resources.)

    


    To process task requests from 1 and 2 at the same time, but to process them
What can I do?

    


    Is there a service on AWS that can solve my problems?

    


    I thought about creating and processing ec2 individually for each request, but is this possible?

    


      

    1. Invoke API
    2. 


    3. Create EC2
    4. 


    5. Proceed with one encoding operation on the corresponding EC2
    6. 


    7. Delete EC2 after uploading s3
    8.