Recherche avancée

Médias (91)

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10826)

  • Split a very short second video into multiple parts

    6 décembre 2020, par Nicolas Tapino

    I've been looking for a lot of softwares that can split videos into multiple parts but most of them only manage to split large videos to let's say 1 or 2 minutes for each part.

    


    What I would like to do is to actually split a few seconds video into, let's say, 10 or more parts (therefore less that one second each, but still not frames).

    


    I don't know if ffmpeg can be that precise or if there is any other solutions that exist.

    


  • split video and keep pts unchanged

    31 mai 2020, par nobody0day

    I am trying to split a big video into small ones and keep the pts unchanged in small videos. Any ideas on how to program with ffmpeg library in c programming language.

    



    My first thought is that split video around the I-frame and keep the I-frame's pts as first_pts of next video but it didn't works.

    


  • ffmpeg split into frames

    4 novembre 2011, par bradleyg

    Hey, I want to split a video which is one second long (25fps)into 25 seperate video files. I know I can split it up into jpegs but I need to retain the audio. So when I recompile audio is still there.

    This is what I tried to grab the first frame only (with audio) :

    ffmpeg -i 1.mov -vcodec mjpeg -qscale 1 -an -ss 00:00:00:00 -t 00:00:00:1 frame1.mov

    But it doesn't seem to work. Am I wrong in assuming ffmpeg supports time stamps in this format ? hh:mm:ss:f ?

    Thanks