Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (101)

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

  • Split mp4 in chunks and stream to the browser ?

    17 avril 2024, par Paul

    I have a regular mp4 file which I need to store into smaller chunks in separate locations, what's the proper way of splitting the file and then have the browser be able to play it by requesting chunks ?

    


    I'm a bit confused about segments and fragments, can I do all of this with a single ffmpeg command ? Something to split the file into 10s chunks and then still be able to stream it in the video tag by appending to the MediaStream buffer ?

    


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

    8 janvier 2016, par 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 janvier 2023, par 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