
Recherche avancée
Autres articles (80)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (5389)
-
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 ?