Recherche avancée

Médias (91)

Autres articles (71)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6504)

  • Mp3 volume up and down within specific parts Android

    23 mai 2017, par Vivek Bhatt

    I want to alter the volume of an audio file(mp3) within specific parts.

    Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
    I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer duration

    ffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3

    Is there any other way around which is bit quick.

    Thanks in advance

  • Adjust MP3 Files Volume and save it to new file [duplicate]

    5 mai 2017, par Gio Vanno

    This question already has an answer here :

    I’m trying to make an audio-editing app here
    This program can adjust(increase and decrease) the mp3 file volume at the specific time(adjust start time and finish time, example : from 00:10 to 00:20) and we can save it to a new mp3 file.

    my questions is :

    -Does ffmpeg work for it ?

    -is there any alternative besides ffmpeg ?

    Thank you

  • Changing volume in an audio (mp3) file with ffmpeg

    4 août 2024, par M Pl

    I have audio of a voice lecture given by a man. I tried
ffmpeg -i in.mp3 -af volume=6 output out.mp3

    


    It seemed to process, but the output sounded the same as the input. Then I tried
ffmpeg -i in.mp3 -af volume=20dB output out.mp3

    


    with the same result. When I tried
ffmpeg -i in.mp3 -af volume=30dB output out.mp3

    


    it came out louder and there was even some distortion. Is this because the man's voice is in a low register ? What can I do to just boost the audio to double the loudness ? (volume=2 did not seem to do anything.)

    


    ffmpeg -i in.mp3 -af volume=6 output out.mp3 - had no apparent effect
ffmpeg -i in.mp3 -af volume=20dB output out.mp3 also had no apparent effect