
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (46)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa 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.
Sur d’autres sites (8081)
-
how to use command line to stitch two wav together using ffmpeg in linux ?
10 octobre 2018, par spartaslaveI have installed ffmpeg on debian and I tried the two command lines.
There are two files under the same directory, they are first.wav and second.wav
The first method is to create a txt file, inside a.txt, they arefile 'first.wav'
file 'second.wav'I have run
ffmpeg -f concat -i a.txt -c copy final.wav
then I run it, it could work fine.
But I want to try another method,
which isffmpeg -i "concat:first.wav|second.wav" -c copy final2.wav
there is not error with the sdcond command line, but it only capture the first file and the length of final2.wav is almost same as first.wav. File second.wav is not stitched at all.
As I am using golang to execute the command line, I want to usecmd := exec.Command("ffmpeg",args)
to stitch the medias together, I can read all the media files into an array, but this API cannot work for the array, so I want to stitch the files together to
"concat:file1.wav|file2.wav|file3.wav|......"
in this case it could be easy to stitch the files together and I do not need to loop the cmd.
likecmd = exec.Command("ffmpeg","-i","concat:first.wav|second.wav|third.wav|......","-c","copy","final2.wav")
I do not want to create any extra files like a.txt file as I need to delete it later and this may also touch the permission.
So is there any possible solution for the second command line ? -
command line audio ducking
25 mai 2015, par DomsaNI got a music file and need to add a spoken quote to this file. THerefore the music volume should be lowered in order to hear the spoken quote. After the quote ends the music’s volume should be as it was before.
Problem : I need to do this with command line. Can I do this with FFmpeg ? If not any ideas ?
Greetings
-
How to output audio file from Microphone and virtual device using FFmpeg command line on Mac ?
30 janvier 2021, par SatelBillI'm trying to output audio file using FFmpeg command line.
There are two audio input stream.
One is Microphone and other is virtual device.


I configure command line as below.


"FFmpeg -f avfoundation -i ":0" -i ":1" out.mp3"



(0 is microphone and 1 is virtual device-sunflower)


But this command line is not working. How to fix this issue ?