Advanced search

Medias (91)

Other articles (27)

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les statuts des instances de mutualisation

    13 March 2010, by

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

On other websites (4544)

  • FFmpeg: How do I split a 100GB MP4 file into several 1GB files?

    8 January 2016, by Zopiro

    I’ve tried using the -fs switch, but it only creates a single file. The -f segment option allows me to use the -segment_time option, but that only limits the video duration, not its size.

    So, suppose I want to use ffmpeg to split a 100GB MP4 file into several 1GB MP4 files, what’s the switch?

  • How can I use ffmpeg to split videos into 3 minute chunks?

    29 January 2023, by TheBryan

    i want to split a video that is 21 minutes long into 7 videos of 3 minutes long using ffmpeg in cmd windows. The command I'm using is this but it gives me an error.
for /L %i in (0,1,7) do ffmpeg -i test.mp4 -ss 00:$(%i*3):00 -t 00:03:00 -c copy outputs%i.mp4
If someone could tell me the error and how to fix it I would appreciate it.

    


    that the video is trimmed consecutively

    


  • How to split a video into multiple n-second GIFs?

    26 May 2021, by ftgp

    I read a lot of tutorials and I could do this command:

    


    ffmpeg -t 3 -i video.mp4 -vf "fps=15,scale=360:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 output.gif


    


    But it won't work to do what I want. I need to read a video.mp4 and create multiple GIFs with two or three seconds for each two or three seconds of the video, until the end.