Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6279)

  • pgssubdec : only set w/h/linesize when allocating data

    9 novembre 2016, par Andreas Cadhalpun
    pgssubdec : only set w/h/linesize when allocating data
    

    Rects with positive w/h/linesize but no data are invalid.

    Reviewed-by : Petri Hintukainen <phintuka@gmail.com>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/pgssubdec.c
  • libspeexenc : Use speex_lib_get_mode instead of the speex_foo_mode data symbols

    3 novembre 2017, par Martin Storsjö
    libspeexenc : Use speex_lib_get_mode instead of the speex_foo_mode data symbols
    

    This avoids issues linking to a DLL version of libspeex, since the
    libspeex headers lack proper dllimport declarations for the data
    symbols.

    This isn’t an issue when building with mingw with GNU binutils, since
    GNU ld can fix up that kind of data import automatically.

    libspeexdec.c already uses speex_lib_get_mode as well.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/libspeexenc.c
  • How to flush buffer data to disk when using FFmpeg to write a mp4 file ?

    20 décembre 2018, par Sean

    I am using FFmpeg to write a mp4 file, I grab bitmap images from remote IP camera and encode it by h.264, the media container is mp4 file, no problem to generate the MP4 file if I only record several minutes, the problem is FFmpeg never flushs buffer data to disk when I call method av_interleaved_write_frame(all encoded data in memory, never free them), only when I call method avio_close(oc->pb);, it will flush all encoded data to disk, I tried to call method avcodec_flush_buffers every time after calling av_interleaved_write_frame, but no effect. I am newbie to FFmpeg, if you are familiar with FFmpeg, please help me.

    thanks in advance.

    Sean