Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (80)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (10908)

  • Matching loudness of commentary track with FFmpeg

    9 mai 2017, par Jon Sangster

    I am using FFmpeg to mix a MP3 file containing a commentary track into the soundtrack of multimedia file. So far I have had great success using FFmpeg’s sidechaincompress filter to auto-duck the soundtrack stream before mixing in the commentary. You can hear the commentary clearly, even when there’s loud music or explosions going on in the film.

    Awesome.

    However, the issue I have now is during the very quiet scenes. When the soundtrack is very quiet, the commentary seems far too loud. If I adjust the volume of the entire commentary track so that it sounds right during the quiet scenes, it’s too heard to hear during the loud scenes.

    My current idea is to somehow use the sidechaincompress filter to duck the commentary track as well, before finally mixing it into the soundtrack. The problem though is that sidechaincompress compresses the target’s volume when the source is loud, but I need the volume to be compressed when the source is quiet.

    I have to admit that I am a quiet the newbie in this domain, so I may coming at this entirely wrong. I’m happy for any advice you can provide !

  • lavf : add AV_DISPOSITION flags for WebVTT text track kinds

    24 juin 2013, par Matthew Heaney
    lavf : add AV_DISPOSITION flags for WebVTT text track kinds
    

    There are 4 separate WebVTT text track kinds : subtitles (the default
    if not otherwise specified), captions, descriptions, and metadata.
    The WebM muxer needs to know which WebVTT text track kind this is, in
    order to synthesize the correct track type and codec id.

    To allow a demuxer to indicate the text track kind of the input, a new
    set of AV_DISPOSITION flag values has been added, corresponding to
    each of the non-default text track kind values.

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.h
    • [DH] libavformat/version.h
  • How to md5 the video track (only) in ffmpeg

    10 octobre 2024, par David542

    I have a .mov file with a video and several audio tracks. To md5 the entire file I can do :

    


    [pdev@d ~]$ md5sum 1_TRAILER_HD_2CH_ES419_ENSUB_16X9_178_2398_DIGITAL_FINAL.mov
042f0e177fe25f562079cc07208ec446


    


    Though when I try doing the same thing in ffmpeg, I get a different value :

    


    $ ffmpeg -i 1_TRAILER_HD_2CH_ES419_ENSUB_16X9_178_2398_DIGITAL_FINAL.mov -f md5 -
MD5=74bd904f1edb4eb1368040e2792d7497   0kB time=00:01:59.11 bitrate=   0.0kbits/s speed=2.36x
frame= 2867 fps= 56 q=-0.0 Lsize=       0kB time=00:01:59.57 bitrate=   0.0kbits/s speed=2.35x
video:23222700kB audio:22421kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown


    


    Why is the value different ? Additionally, how can I checksum only the video track ? I have various files that have different audio tracks and want to see if I have the same video track on those files.

    



    


    Update : I believe this answer shows how to compute an audio-only checksum, but not sure about video-only : https://superuser.com/a/1044419/118248.