Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (48)

  • 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10404)

  • I am trying to use ffmpeg to separate audio from video, but after downloading the ffmpeg build I cannot seem to activate it in Power Shell [duplicate]

    19 janvier 2021, par Row Boater

    Ok, look y'all, I am NOT an aspiring programmer. I'm simply trying to separate audio from video of a youtube video I downloaded.

    


    What I've done :

    


    Downloaded YT vid using 4k video Downloader

    


    I downloaded ffmpeg build from https://ffmpeg.org/download.html#build-windows

    


    I downloaded WinZip in order to access the ffmpeg files.

    


    I thought I used winzip correctly, but whenever I paste the command code line recommended to me, ffmpeg -i video.mp4 -c:a pcm_s16le audio.wav, I receive the following :

    


    


    PS C :\Users\user\Videos\4K Video Downloader> ffmpeg -i video.mp4 -c:a
pcm_s16le audio.wav ffmpeg : The term 'ffmpeg' is not recognized as
the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that
the path is correct and try again. At line:1 char:1

    


      

    • ffmpeg -i video.mp4 -c:a pcm_s16le audio.wav
    • 


    • 

        + CategoryInfo          : ObjectNotFound: (ffmpeg:String) [], CommandNotFoundException
  + FullyQualifiedErrorId : CommandNotFoundException



      


    • 


    


    PS C :\Users\user\Videos\4K Video Downloader>

    


    


    This is all Phoenician to me, but what I take away is that I have not completed some step to fully incorporate the ffmpeg code into my system. I believe that I am not using Winzip correctly.

    


    Thanks for your time.

    


  • Using ffmpeg and ffmpeg-cli-wrapper (Java) to remove black frames in a mp4 video made by Twilio [closed]

    3 janvier 2024, par Duc Nguyen

    I am using Programmable Twilio, when 2 users are recording and pause, there is a silence space with black frames in the output.
Is there a way in Twilio or in ffmpeg to remove all black frames (empty-silent spaces) ? I am using Java and ffmpeg-cli-wrapper

    


    I tried this https://video.stackexchange.com/questions/16564/how-to-trim-out-black-frames-with-ffmpeg-on-windows but it did not help.

    


  • ffmpeg generate first non black frame

    17 octobre 2019, par Milousel

    I get via readstream video from AWS server. I modify it into different format and save it back into server. After that I want to create non black image from first frame of this video. So I need to check if first frame is black or not.

    ffmpeg(stream)
           .size('1320x438')
           .videoCodec('libx264')
           .toFormat('avi')
           .output(fileName)
           .on('end', function() {
             console.log('Finished processing video');
             const params = {
               Body: fs.createReadStream(fileName),
               Bucket: videoBucket,
               Key: 'test/modification/' + fileName,
             };
             s3.putObject(params, (err, data) => {
               if (err) {
                 console.log(err);
               }
             });
           })
           .output(screensName + '.jpg')
           .outputOptions(
             '-frames',
             '1', // Capture just one frame of the video
           )
           .on('end', function() {
             console.log('Finished processing screenshot');
             const params = {
               Body: fs.createReadStream(screensName + '.jpg'),
               Bucket: videoBucket,
               Key: 'test/shots/' + screensName + '.jpg',
             };
             s3.putObject(params, (err, data) => {
               if (err) {
                 console.log(err);
               }
             });
           })
           .run();