Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (24)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (6413)

  • Get and manipulate ffmpeg volume detect output in bat file

    20 février 2024, par NTProductions

    I have a bat file which runs the volumedetect filter :

    


    ffmpeg -i C:\Users\Nate\Videos\VideoClips\1080p-47243316.mp4 -filter:a volumedetect -f null /dev/null


    


    Is it possible to capture all this output text it sends to cmd, and manipulate it to the point of storing say, the mean_volume into a variable ?

    


    Volumedetect output example :

    


    volumedetect output example

    


  • How to detect audio volume using humble-video library ?

    21 octobre 2016, par Sonny MT

    I’m coding a Java sample to get audio volume data (in decibel) from a video file for some analysis using "ffmpeg" functions.
    It is workable using "ffmpeg" command line, as below :

    ffmpeg.exe -af volumedetect -f null -y null -i d:\test.mp4

    Output of ffmpeg.exe :

    video:3358kB audio:158568kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown

    [Parsed_volumedetect_0 @ 00000000006fe580] n_samples: 81186816

    [Parsed_volumedetect_0 @ 00000000006fe580] mean_volume: -29.1 dB

    [Parsed_volumedetect_0 @ 00000000006fe580] max_volume: 0.0 dB

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_0db: 437

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_1db: 914

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_2db: 1486

    ...

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_7db: 19764

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_8db: 31078

    [Parsed_volumedetect_0 @ 00000000006fe580] histogram_9db: 45821

    I’ve found that humble-video is a good Java wrapper of ffmpeg with samples at https://github.com/artclarke/humble-video/blob/master/humble-video-demos/src/main/java/io/humble/video/demos/DecodeAndPlayAudio.java

    How and where can I get those audio volume data (same as volumedetect option) with humble-video ?

  • How do I mix multiple audio tracks mit FFMPEG and adjust each volume ?

    4 avril 2022, par doppelzwei

    Let's say I have an input .mp4 file that contains 4 audio tracks.
How can I change their volumes independently and convert it to a new file that just contains all the 4 audio tracks mixed together and stored in the first audio track ? For example I want the first, second and third audio tracks from the input file to be double their original volume and the fourth to be half its original volume, all saved in the output files first audio track. How would that command look like ?