Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (54)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9041)

  • Cut multiple parts from a video and merge them together

    24 janvier 2018, par DragonBorn

    I am trying to cut specific parts out from a video and then merge all those parts into a single video file using nodejs and ffmpeg.

    Here’s my code and currently I can cut only one part out of the video from .setStartTime to .setDuration and that part is being saved.

    var ffmpeg = require('fluent-ffmpeg');

    var command = ffmpeg()
     .input('./videos/placeholder-video.mp4')
     .setStartTime('00:00:03')
     .setDuration('02')
     .output('./videos/test.mp4')

     .on('start', function(commandLine) {
       console.log('Started: ' + commandLine);
     })

     .on('end', function(err) {  
       if(!err)
       {
         console.log('conversion Done');
       }                
     })

     .on('error', function(err){
       console.log('error: ', +err);
     }).run();

    How do I cut out multiple parts out from the video and merge them in a single video file. I know about .mergeToFile method but how do I use it after cutting different parts from my video.

    I tried using .setStartTime and .setDuration twice like below but the first one’s are being ignored.

    .input('./videos/placeholder-video.mp4')
    .setStartTime('00:00:03')
    .setDuration('02')
    .setStartTime('00:00:15')
    .setDuration('05')
    .output('./videos/test.mp4')
  • Silence (zero out) parts off an audio file

    4 juillet 2016, par Yoni Levy

    I want to silence parts of an audio file (position varies) using some command line tool (ffmpeg, sox, ...) but can’t find out how.

    I found sox ... pad to be the closest to what I want but it’s still not it, I need to override the audio not add to it (pad).

  • what is select=not(mod(n\,500)) doing in ffmpeg ?

    1er octobre 2019, par Nane

    I am trying to get a picture collage(getting images from various timeframes and combining into one image) with FFmpeg I copied this code from the internet

    ffmpeg -ss 00:00:10 -i uploads/high.webm -frames 1 -vf "select=not(mod(n\,500)),scale=480:360,tile=10x5" out.webp

    it is working but I couldn’t figout how it is working more specifically what is this select=not(mod(n\,500))