Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (101)

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

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

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

  • Ffmpeg how to split then concate another video in one command

    4 juillet 2018, par Cuong Nguyen

    I want to split video a into a1 and a2 videos.
    Then I want to concat a1, b, a2 into c video.
    Transition time between a1 and b ; b and a2, I want add 1 second fade in fade out effect.
    How to do that in one command by FFmpeg ?
    Thank you !

  • Split Video Files Batch Mac

    11 août 2022, par dolomite41

    Noob Here. I have about 300 files that I want to split into segments. About 5 seconds each. I figured how to do it for one file, but is there anyway I can do it to the whole folder directory ? Been searching online and can't seem to find exactly what I need.

    


    here is what I did for the single file

    


    ffmpeg -i test2.mp4 -c copy -map 0 -segment_time 00:0:05 -f segment output%03d.mp4

    


    would like to do it for all the files at once

    


      

    1. Is there a batch command that can do it for all files
    2. 


    3. If not, is there a way I can put more than one command line into Terminal and run them all at once ?
    4. 


    


    OS - Mac - Monterey - FFMPEG and Brew installed

    


    Real noobie, any help would be appreciated

    


  • Split video every x secondes with ffmpeg

    30 mai 2017, par Boris ELOSHVILI

    I try to cut the mp4 video with ffmpeg.

    I have a mp4 video input and I want to split this video for all 1 second, so use the segment and save the file in the date format.

    I use the following command but apparently it does not work. But the files are not cut cleanly, there is always the difference between size and time. The files are not generating in any 1 second.

    ffmpeg -re -i im1.mp4 -threads 3 -c:v copy -f segment -segment_time 1 -strftime 1 -segment_format mp4 %Y-%m-%d-%H-%M-%S.mp4

    Someone has an idea ?