
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (27)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (6128)
-
Adaptive nmls filters matlab python [closed]
1er juin 2012, par user1314738I am interested in removing noise in audio from mike for reatime audio streaming using ffmpeg.
As I get some background noise while I pass the recorded stream I am interested in removing this noise before I encode the stream the stream.
There are few issues :-
1.as i need to this in real time for audio streaming I cannot use Matlab TOOLBOX filters !
so please suggest other audio processing platforms I can use for the purpose.
If that is in python it would be really good.2.through ffmpeg I can link the alsa sound card using :-
$ ffmpeg -i hw:0:0 -acodec............... rtp//255:130:40 and stream on rtp.
but when I will be filtering the sound from mic before it is being used by the ffmpeg, i am bit confused about the syntax for the input to the ffmpeg encoder for rtp streaming.
would it be fine to use some sort of pipe-lined buffer in between ?But the issue of real time stream and time sync between streaming and filtering still haunts.
Please help me out in selecting right platform for filtering the audio stream and it's integration with ffmpeg encoder for real time streaming.
-
Revision 49b2330d8b : Add prediction mode skipping in non-rd situation In non-rd pick_mode code, adde
19 mars 2014, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Add prediction mode skipping in non-rd situationIn non-rd pick_mode code, added mode skipping according to
thresholds. Used rd thresholds now, but we can modified them
later for real-time case.RTC set borg test showed a 0.095% PSNR gain. For different rtc
clips, the real-time(speed 7) encoder speedup is 2% - 10%.Change-Id : Ic72535c96b891092c662453be32d3168f7e34dcc
-
FFmpeg realtime audio editor
30 janvier 2019, par TygoSo I use FFmpeg to manipulate my audio files but there is no way of knowing what it will sound like before I actually upload the file(HTML form).
Is there a way to edit the audio with a real-time player or something ?
I cannot find anything about this, thats why I am asking this question.
$cmd = 'ffmpeg.exe -i path/to/audio.mp3 -filter:a asetrate=54000,atempo=' . $speed . ' output.mp3 2>&1';
exec($cmd, $output);So can I replace
atempo=$speed
with real-time input ? And listen to it on my website before I actually process it.Not sure if it is even possible with FFmpeg.