
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (28)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (6568)
-
Installing Older FFmpeg Version Using Homebrew
31 mai 2022, par Sir Bad NewsI have the latest version of Homebrew and FFmpeg on OSX 10.9.5.



I need to install an older version of FFmpeg using Homebrew, rather than just running :



brew install ffmpeg




Could someone please explain how to do this ? I know older versions of FFmpeg are readily available online : just need to figure out how to get Homebrew to find them, either online or on my system after downloading.



MF.


-
Installing Older FFmpeg Version Using Homebrew
19 mars 2015, par mf_2015I have the latest version of Homebrew and FFmpeg on OSX 10.9.5.
I need to install an older version of FFmpeg using Homebrew, rather than just running :
brew install ffmpeg
Could someone please explain how to do this ? I know older versions of FFmpeg are readily available online : just need to figure out how to get Homebrew to find them, either online or on my system after downloading.
MF.
-
Normalize audio, then reduce the volume in ffmpeg
27 octobre 2014, par Steve SheldonI have a question relating to ffmpeg. First here is the scenario, I am working on a project where I need to have some audio with a presenter talking and then potentially some background music. I also have the requirement to normalize the audio. I would like to do this without presenting a bunch of options to the user.
For normalization I use something similar to this post :
How to normalize audio with ffmpeg.
In short, I get a volume adjustment which I then apply to ffmpeg like this :
ffmpeg -i <input /> -af "volume=xxxdB" <output>
</output>So far so good. Now let’s consider the backing track, it doesn’t want to be the same volume as the presenters voice, this would be really distracting, so I want to lower that by some percentage. I can also do this with ffmpeg, I could do it like this (example would set volume to 50%) :
ffmpeg -i <input /> -af "volume=0.5" <output>
</output>Using these two commands back to back, I can get the desired result.
My question has two parts :
- Is there a way to do this in one step ?
- Is there any benefit to doing it in one step ?
Thanks for any help !