Recherche avancée

Médias (91)

Autres articles (67)

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

  • Revision 9152f4851d : remove yasm.rules As we changed the scripts to compile asm files using customiz

    16 novembre 2012, par Yaowu Xu

    Changed Paths : Modify /build/make/gen_msvs_proj.sh Delete /build/x86-msvs/yasm.rules remove yasm.rules As we changed the scripts to compile asm files using customized command for each file. Change-Id : I975713f3d0cce2238de3ee3fe44e3227385f0c64

  • Build : Fix the jscs upgrade, disable some rules for now

    1er juillet 2014, par jzaefferer
    Build : Fix the jscs upgrade, disable some rules for now
  • How do i add xfade transition to a batch of videos in ffmpeg ?

    28 novembre 2023, par QR7

    I'm currently trying to concatenate multiple videos in a folder using FFmpeg. I've successfully applied a xfade transition between two videos using the following command :
However, I'm facing two challenges :

    


    Applying xfade to multiple videos : I want to extend this process to apply the xfade transition between all videos in the folder and save it as a single video. I'm wondering if there's a way to automate this process using Python, perhaps by iterating over the files in the folder.

    


    Audio issue after transition : While the visual transition works seamlessly, I've noticed that the audio is muted as soon as the transition finishes in the output video. Is there a modification I can make to the FFmpeg command to ensure that the audio remains synchronized with the video throughout the output ?

    


    This is the command i am currently using :

    


    ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "xfade=transition=fade:duration=0.25:offset=4.5" -c:v libx264 -c:a aac -strict experimental output.mp4