
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (95)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (8418)
-
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 ?


-
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> -
lavc/videotoolboxenc : add handling for non-NAL-based codecs
17 décembre 2021, par rcombs