Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (94)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (15664)

  • mergeToFile returns null

    4 avril 2020, par Andrew Roberts

    I am trying to use fluent ffmpeg to merge a bunch of audio files into a single file, yet I keep recieving an error that the output is null/ doesn't exist.
My code :

    



         var ffmpeg = require("fluent-ffmpeg");
     var command = ffmpeg();
     for (var inputPath of filePaths) {
        command.addInput(inputPath);
        console.log("Added path:" + inputPath);
    }
    command
        .on('error', (err) => {
            console.log('An error occurred: ' + err.message);
        })
        .on('end', () => {
            console.log('Merging finished !');
        })
        .mergeToFile(path.join(os.tmpdir(), "result.mp3"), os.tmpdir());


    



    Error code :

    



    


    Read Error : Error : ENOENT : no such file or directory, open '/tmp/result.mp3'

    


    


  • Cant get the progress multiple times, just once. laravel-ffmpeg

    22 mai 2022, par Ramix

    I am encountering some problems getting the progress percentage for package called - laravel-ffmpeg. It is called just once when the file has finished transcoding. I tried small and big file, got the same result. Here is the code.

    


    FFMpeg::open('test_video.mp4')
    ->export()
    ->onProgress(function ($percentage, $remaining) {
        echo "{$remaining}";
        Asset::where('parent_catalog', '7a42ae6d-872d-4c2c-8e85-832ed9902fac')->update(['proxy_status' => $percentage]);
    })->save("test_output.mp4");


    


    Could it be package issue or my lack of knowledge with PHP ?

    


  • ffmpeg multiple overlays at different times

    14 octobre 2017, par TheOctagon

    I have written a bash script which cycles through various RTMP live streams and switches every thirty seconds.
    I have a PNG sequence which plays at the start of the video (blindRev-%d.png). A blind is pulled up, revealing the stream.

    28 seconds later, I would like it to come back down to cover the stream so that when the next stream is loaded, it retracts to reveal the next stream in sequence once again (blind-%d.png). I’ve tried using itsoffset to accomplish this. No audio is required.

    However, only the first PNG sequence is played, the second never seems to happen.

    The command I am using is :

    ffmpeg -i rtmp://localhost/live/$stream -i blind/blindRev-%d.png -itsoffset 28 -i blind/blind-%d.png -filter_complex overlay -an -f flv rtmp://localhost/live/All

    What am I doing incorrectly ?
    Many thanks.