
Recherche avancée
Autres articles (46)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (7320)
-
ffmpeg custom audio mixing filter
27 novembre 2016, par espositoI need to mix 2 files : A and B and the result is part of file A and part of File B.
In detail I like that the output is the sum of the upper part of the file A and the lower part of file B.
I need something like this :
ffmpeg -i A.flac -i B.flac -af "copy all from 0 to -25 dB from 'A', copy all from -25dB to -infinite from file 'B' and put these 2 parts on the output" output.flac
-25dB is variable that I can adjust, I like to keep the volume of file ’A’.
In short I like to replace the soft background of file ’A’ with file ’B’.
there is a way to do this ?
thank you !!!!
-
fluent-ffmpeg set audio level with complex filter
31 mai 2021, par Ram KumarI'm looking to mix 2 audio's with the ffmpeg-fluent, below is the code that works for this purpose.


ffmpeg()
 .input(audio1)
 .input(audio2)
 .complexFilter([
 {
 filter: 'amix', options: { inputs: 2, duration: 'shortest' }
 }
 ])
 .on('end', async function (output) {
 console.log(output, 'files have been merged and saved.')
 })
 .saveToFile("mix.mp3");



Now I would also want to set audio levels for each of these tracks independently, tried to pass volume as audio filter, but it doesn't seem to accept audio filter when complex filter is used.


-
FFMPEG compand filter
18 mars 2016, par fandyushinHow to use compand filter for hard limit volume ?
From documentation I get this argument :compand=attacks=0:points=-80/-80|-12/-12|20/-12
But when I use it, i get error :ffmpeg -i vol_dump.ts -c:v copy -c:a aac -af "compand=attacks=0:points=-80/-80|-12/-12|20/-12" -f mpegs compand_dump.ts
[Parsed_compand_0 @ 0x7f8078f0b0c0] Missing attacks and/or decays and/or points.
[AVFilterGraph @ 0x7f8078c193a0] Error initializing filter 'compand' with args 'attacks=0:points=-80/-80|-12/-12|20/-12'
Error opening filters!Whats wrong ? Thanks