Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (17820)

  • Revision 75038 : Ajout de deux paramètres au modèle doc_img : -* download ou ...

    28 août 2013, par kent1@… — Log

    Ajout de deux paramètres au modèle doc_img :

    • download ou telecharger string : si == oui affiche un lien de téléchargement du document sous la prévisualisation
    • class_btn_download string : class à ajouter au bouton download
      On évite également l’Ancre de pagination par défaut en mettant son id sur la div parente
      div class="pagination" pour être compatible avec SPIP Bootstrap
      On inclue inc/securiser_action dans mes_fonctions pour avoir la fonction calculer_cle_action disponible
  • 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();