Recherche avancée

Médias (91)

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6518)

  • 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