Advanced search

Medias (91)

Other articles (67)

  • MediaSPIP v0.2

    21 June 2013, by

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

  • Mise à disposition des fichiers

    14 April 2011, by

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

On other websites (7894)

  • How to mix 3 audio files or more by ffmpeg and set volume each file

    20 February 2017, by Kwan N

    I use this code. But it’s not success:

    ffmpeg -f lavfi -i "amovie=1.mp3,volume=1" -f lavfi -i "amovie=2.mp3,volume=0.3" -f lavfi -i "amovie=3.mp3,volume=1" -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 output.mp3
  • Making volume adjustments at precise time with ffmpeg -filter_complex

    25 February 2023, by a1s2d3f4

    I am using the following command to mute parts of the audio file with ffmpeg:

    


    ffmpeg.exe -y -i "C:\temp\inputfile3.wav" -filter_complex_script "C:\temp\filter_complex_cmds.txt" "C:\temp\outputfile3.wav"


    


    Inside filter_complex_cmd.txt I have:

    


    [0]aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume='if(between(t,0.95,1.05),0*(t-0.95) + 0,1)':eval=frame,volume='if(between(t,1.15,1.25),0*(t-1.15) + 0,1)':eval=frame,volume='if(between(t,1.41,1.49),0*(t-1.41) + 0,1)':eval=frame,volume='if(between(t,2.10,2.35),0*(t-2.10) + 0,1)':eval=frame,volume='if(between(t,2.75,2.85),0*(t-2.75) + 0,1)':eval=frame, etc. x1000...


    


    You get the idea - many, many calls to reduce volume at specific times.
However, when I look at outputfile3.wav, the volume is not reduced from 0.95000 to 1.05000 seconds, but instead from 0.952018 to 1.068118 (i.e. off by 2 and 18 milliseconds respectively) and not from 1.150000 to 1.250000 seconds but from 1.160998 to 1.253878 milliseconds, etc. It can sometimes be off by as many as 20 milliseconds.

    


    Can anyone tell me what's going on and what to do to make it precise?

    


    Also, while I can reserve it for a separate question, but I also want to be able to find a fade out/fade in commands that would make this change to and from silence a bit more smooth by dialing it down and up over the course of 20 milliseconds around my "volume 0" times.

    


  • Fluent-FFMPEG : Is it possible to apply a volume filter only after a specific time has passed

    1 June 2023, by Nobunaji

    I have the following code :

    


    ffmpeg()
.addInput(videoFilepath)
.addInput(soundTrackFilepath)
.inputOptions("-stream_loop -1")
.outputOptions("-shortest")
.complexFilter([
    {
        filter: "volume",
        options: ["0.15"],
        inputs: "1",
    }
])


    


    What i want is for this filter to only be applied let's say after 4s. Is it possible ?