Recherche avancée

Médias (91)

Autres articles (31)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4275)

  • avcodec/h264 : enable sse2 chroma deblock/loop filter functions

    22 février 2017, par James Darnley
    avcodec/h264 : enable sse2 chroma deblock/loop filter functions
    

    Between 1.00 and 1.16 times faster on Intel Yorkfield Core 2 Quad.
    Between 1.11 and 1.39 times faster on Intel Kaby Lake Pentium.

    • [DH] libavcodec/x86/h264_deblock.asm
    • [DH] libavcodec/x86/h264dsp_init.c
  • FFmpeg - ducking music for voiceover (sidechain)

    7 décembre 2023, par kaushal

    I am trying to duck the background music from a voiceover input file using FFmpeg (I tried doing this using pydub with no success).

    


    The below command is predominantly working, except that it is truncating my background music file (main.mp3, over 3 min long) to the length of the voiceover file (taekwondo.mp3, about a min long). Any idea or suggestion on what can I change in below command so that the output file is full 3 min long, with background music ducked when the voiceover is playing. Once the voiceover completes, background music continues to play as normal.

    


    In below complex filter, this is what I'm doing :
adelay filter : to start voiceover playing after 5 seconds into background music
volume filter : Since my background music is too loud and voiceover is too low, I'm increasing voiceover volume by 1.5 times, and lowering background music volume to 0.7 times
sidechaincompress filter : Then I'm applying sidechain filter to duck background music whenever voiceover is playing, with usual threshold, ratio & release filters

    


    I've tried both amix & amerge, but results in same behaviour.

    


    ffmpeg -i main.mp3 -i taekwondo.mp3 -filter_complex "[1:a]adelay=5000|5000,volume=1.5[a];[0:a]volume=0.7[b];[a]asplit=2[sc][mix];[b][sc]sidechaincompress=threshold=0.05:ratio=20:level_sc=1:release=500:attack=1[compr];[compr][mix]amix" output.mp3


    


  • Don’t use expressions with side effects in macro parameters

    28 juillet 2016, par Martin Storsjö
    Don’t use expressions with side effects in macro parameters
    

    AV_WB32 can be implemented as a macro that expands its parameters
    multiple times (in case AV_HAVE_FAST_UNALIGNED isn’t set and the
    compiler doesn’t support GCC attributes) ; make sure not to read
    multiple times from the source in this case.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/dxv.c
    • [DBH] libavformat/xmv.c