
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (6211)
-
vcodec/agm : Alloc based on coded dimensions
14 novembre 2019, par Michael Niedermayervcodec/agm : Alloc based on coded dimensions
Fixes : out of array read
Fixes : 18715/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5659333417500672Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
4 Ways to Embed User Privacy & Data Security in Your Business
15 juillet 2022, par Erin — Privacy -
FFMPEG segment audio stream based on silence
2 août 2024, par Christian SeyoumI have a websocket connection that gets a stream of audio. I am piping the stream to FFMPEG and using it to segemnt the audio in real time. Currenlty the audio does get segemented but all the segemented audio is 10 seconds long rather than being segmented when silence is detected. I am using node.js typescript :


var proc = cp.spawn(ffmpeg, [
 '-f', 's16le', // Input format: signed 16-bit little-endian PCM
 '-ar', '8000', // Sample rate: 8000 Hz
 '-ac', '1', // Audio channels: 1 (mono)
 '-i', '-', '-af',
 'silencedetect=noise=-18dB:d=0.1', '-f',
 'segment', 
 '-segment_time', '10',
 '-reset_timestamps', '1',
 `${fileNameSubStringPath}_%03d.wav`
 ]);



I have tried changing the silencedetect values and the segment time. But notthing seems to work.


Is there a better way to segment audio based on silence ?