Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (105)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (12961)

  • Revision ed784fd169 : Merge "Removing vp8/common/pragmas.h."

    27 mai 2014, par Dmitry Kovalev

    Merge "Removing vp8/common/pragmas.h."

  • avformat : add common mechanism for skipping samples at the start of file

    22 avril 2015, par wm4
    avformat : add common mechanism for skipping samples at the start of file
    

    This makes using the generic indexing code with mp3 easier at a later
    point.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avformat.h
    • [DH] libavformat/utils.c
  • avcodec/cbs : Factor out common code for writing units

    17 novembre 2019, par Andreas Rheinhardt
    avcodec/cbs : Factor out common code for writing units
    

    All cbs-functions to write units share a common pattern :
    1. They check whether they have a write buffer (that is used to store
    the unit's data until the needed size becomes known after writing the
    unit when a dedicated buffer will be allocated).
    2. They use this buffer for a PutBitContext.
    3. The (codec-specific) writing takes place through the PutBitContext.
    4. The return value is checked. AVERROR(ENOSPC) here always indicates
    that the buffer was too small and leads to a reallocation of said
    buffer.
    5. The final buffer will be allocated and the data copied.

    This commit factors this common code out in a single function in cbs.c.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs.c
    • [DH] libavcodec/cbs.h
    • [DH] libavcodec/cbs_av1.c
    • [DH] libavcodec/cbs_av1.h
    • [DH] libavcodec/cbs_h2645.c
    • [DH] libavcodec/cbs_h2645.h
    • [DH] libavcodec/cbs_internal.h
    • [DH] libavcodec/cbs_jpeg.c
    • [DH] libavcodec/cbs_jpeg.h
    • [DH] libavcodec/cbs_mpeg2.c
    • [DH] libavcodec/cbs_mpeg2.h
    • [DH] libavcodec/cbs_vp9.c
    • [DH] libavcodec/cbs_vp9.h