Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (26)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6016)

  • avfilter/f_loop : fix length of aloop leftover buffer

    3 novembre 2024, par Marton Balint
    avfilter/f_loop : fix length of aloop leftover buffer
    

    If the audio loop stops inside an audio frame, the leftover buffer contains the
    end of the frame, which is not looped. The length supposed to be the part which
    was not written to the loop buffer, so we need to drain exactly that number of
    bytes from the leftover buffer.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/f_loop.c
  • vf_colorspace : fix range order.

    6 mai 2016, par Ronald S. Bultje
    vf_colorspace : fix range order.
    
    • [DH] libavfilter/vf_colorspace.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;