Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7831)

  • avformat/rtpdec_rfc4175 : add support for RANGE

    11 octobre 2021, par Limin Wang
    avformat/rtpdec_rfc4175 : add support for RANGE
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/rtpdec_rfc4175.c
  • vaapi_encode_h264 : Reduce SAR to valid range

    28 octobre 2018, par Mark Thompson
    vaapi_encode_h264 : Reduce SAR to valid range
    

    The SAR of the input could have a numerator or denominator greater than
    2^16 which would then be truncated to a 16-bit integer when written to
    the VUI parameters, giving a random result. Instead, reduce the SAR to
    the nearest representable fraction.

    Fixes #7502.

    • [DH] libavcodec/vaapi_encode_h264.c
  • ffmpeg how to shorten volume range

    10 juillet 2021, par 敬錞 潘

    I use this command below to get volume information

    &#xA;

    ffmpeg -i {fileName} -af  "volumedetect" -f null -&#xA;

    &#xA;

    and get result below :

    &#xA;

    [Parsed_volumedetect_0 @ 000001b4f9675ec0] mean_volume: -25.1 dB&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] max_volume: -4.0 dB&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_4db: 12&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_5db: 72&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_6db: 293&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_7db: 808&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_8db: 2276&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_9db: 5885&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_10db: 13146&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_11db: 26627&#xA;

    &#xA;

    I want to shorten volume range to half range like this below

    &#xA;

    [Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_6db: ...&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_7db: ...&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_8db: ...&#xA;[Parsed_volumedetect_0 @ 000001b4f9675ec0] histogram_9db: ...&#xA;

    &#xA;

    How to do it by ffmpeg command ?

    &#xA;

    Update1 :

    &#xA;

    filename.mp3 volume detect is below :

    &#xA;

    [Parsed_volumedetect_0 @ 00000192cd9adcc0] max_volume: -0.3 dB&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_0db: 32&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_1db: 333&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_2db: 1216&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_3db: 3490&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_4db: 8829&#xA;[Parsed_volumedetect_0 @ 00000192cd9adcc0] histogram_5db: 19873&#xA;

    &#xA;

    after execute command

    &#xA;

    ffmpeg -i filename.mp3 -af filename_output.mp3&#xA;

    &#xA;

    filename_output.mp3 volume detect is below :

    &#xA;

    [Parsed_volumedetect_0 @ 0000017af506dd00] max_volume: -0.4 dB&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_0db: 13&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_1db: 226&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_2db: 906&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_3db: 2688&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_4db: 7202&#xA;[Parsed_volumedetect_0 @ 0000017af506dd00] histogram_5db: 16473&#xA;

    &#xA;

    There is no big changes, if I want to shorten more volume range , how to do ?

    &#xA;