Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (61)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (11602)

  • doc : Merge doc/dev_community/* and Code of Conduct into a seperate file

    8 février 2023, par Thilo Borgmann
    doc : Merge doc/dev_community/* and Code of Conduct into a seperate file
    

    Remove doc/dev_communit markup files completely as they are at the wrong place.
    Create a new community page, merging all of doc/dev_community and subsection Code of Conduct into a common place.
    The corresponding patch to ffmpeg-web puts the Organisation & Code of Conduct into a seperate community chapter on the FFmpeg website.

    • [DH] doc/Makefile
    • [DH] doc/community.texi
    • [DH] doc/dev_community/community.md
    • [DH] doc/dev_community/resolution_process.md
    • [DH] doc/developer.texi
    • [DH] doc/mailing-list-faq.texi
  • Flask and moviepy

    23 mars 2021, par Yoldash Reklamov

    Please help me figure out the correct logic for constructing a flask project with Moviepy.

    


    The task is to combine several audio files and several video files into one file.
With the help of the Moviepy and the method of concatenate in it, I manage to do all this.
But I just can't figure out how to do the following thing, there is :

    


    Audio1 (permanent), Audio2 (there will always be different files, selected by the user from the database using the drop-down menu on the site), Audio3 (permanent).
It's the same with video files.

    


    I am building a project on Flask, I am thinking of adding audio and video files not using the BLOB method, but by adding links to the database.

    


    I just can't figure out how to implement this system so that the user would go to the site, choose Audio2 from the list(for example i have 50 random audio files in drop down meny Audio1-Audio50) and somehow take it to AudioFileClip("Audio5.wav") or AudioFileClip("Audio8.wav")

    


    I just can't figure it out.
Thank you in advance !

    


  • how to resize an image stream from mongo gridfs

    13 septembre 2014, par CurlyFro

    i’m still new to node so bear with me.

    i have images stored in mongo gridfs. how do i resize the image stream ? i’m trying to use ffmpeg. here’s my method :

    exports.read = function (req, res) {
    var db = mongoose.connection.db;
    var id = new ObjectID(req.params.imageId);
    var store = new GridStore(db, id, 'r', {root: 'fs'});

    store.open(function (err, store) {
       if (err) return err;

       res.header("Content-Type", store.metadata['Content Type']);
       res.header("Content-Disposition", "attachment; filename='" + store.filename + "'");

       new ffmpeg()
           .input(store.stream(true))
           .size('650x365')
           .output('/temp/screenshot.png')
           .run();

       store.stream(true).pipe(res)
    });
    };

    but i’m getting an error :

    Error : ffmpeg exited with code 1 : pipe:0 : Invalid data found when processing input.

    what am i doing wrong ?