Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (95)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to documentation

    13 avril 2011

    Documentation 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, par

    Talk 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 Seyoum

    I 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 Niedermayer
    vcodec/agm : Alloc based on coded dimensions
    

    Fixes : out of array read
    Fixes : 18715/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5659333417500672

    Found-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>

    • [DH] libavcodec/agm.c
  • lavc/videotoolboxenc : add handling for non-NAL-based codecs

    17 décembre 2021, par rcombs
    lavc/videotoolboxenc : add handling for non-NAL-based codecs
    
    • [DH] libavcodec/videotoolboxenc.c