Recherche avancée

Médias (91)

Autres articles (72)

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

  • Adjust printf conversion specifiers to match variable signedness

    15 décembre 2015, par Diego Biurrun
    Adjust printf conversion specifiers to match variable signedness
    
    • [DBH] libavcodec/dnxhddec.c
    • [DBH] libavcodec/dvdec.c
    • [DBH] libavcodec/dxv.c
    • [DBH] libavcodec/fraps.c
    • [DBH] libavcodec/txd.c
    • [DBH] libavformat/mov.c
    • [DBH] libavformat/rtpdec_jpeg.c
    • [DBH] libavformat/rtpdec_xiph.c
    • [DBH] libavformat/rtpenc.c
    • [DBH] libswscale/tests/swscale.c
  • FFmpeg + getID3() : Detect audio's average level volume and change another audio's volume to match it

    12 mars 2019, par lukistar

    I have two audio files.

    First audio could be anything.

    Second audio is always wav file, that contains sequence of silence(well I used adelay to create it)( 15 seconds) speech( 1 second) .. silence .. speech etc.

    I am using amix to combine them, but I need to adjust second audio to match the volume level of the first audio for best results.

    So first I need to detect the average volume level of the first audio and then change the volume level of the second.

    Any idea how to do that using ffmpeg(or even easier for me using getID3) ? Thanks.

  • Scaling overlay to match the background video's width while maintaining aspect ratio

    29 mars 2023, par roku

    I'm trying to achive the effect described in the title. But I can't really figure it out. I made a command which almost does what I want it to do but the overlay is still bigger than the background for some reason beyond my understanding.

    


    For more context, the background video has an aspect ratio of 9:16 and the overlay video is always exactly 950 pixels wide.

    


    Here is my command :

    


    ffmpeg -i gameplay.mp4 -i merged.mp4 -i merged.wav -filter_complex "[0:v]crop=ih*(9/16):ih[backgr];[1:v]scale=-2:-2[ovrl];[backgr][ovrl]overlay=(W-w)/2:(H-h)/2[outv]" -map [outv] -map 2:a -shortest test.mp4


    


    Any help is welcome !