Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

Sur d’autres sites (10914)

  • 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 !