Recherche avancée

Médias (91)

Autres articles (65)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11164)

  • avcodec/sgidec : Support negative linesizes

    29 septembre 2022, par Andreas Rheinhardt
    avcodec/sgidec : Support negative linesizes
    

    The earlier code used "p->data[0] + p->linesize[0] * s->height" with
    the latter being unsigned, which gives the wrong value for negative
    linesizes. There is also a not so obvious problem with this :
    In case of negative linesizes, the last line is the start of
    the allocated buffer, so using the line after the last line
    would involve undefined pointer arithmetic. So don't do it.

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

    • [DH] libavcodec/sgidec.c
  • Added support for more meta data

    5 octobre 2013, par Grandt
    Added support for more meta data
    

    * Added : Support for custom meta data via the function
    - >addCustomMetadata($name, $content) ;
    * It is the responsibility of the builder to ensure no invalid values
    are inserted.
    * Example use is for for instance Calibre, see EPub.Example250.php for
    use.
    * Added : Support or user handled DublinCore meta data via the function
    - >addDublinCoreMetadata(DublinCore::constants, $content) ;

  • avformat/hls : add support for EXT-X-MAP

    15 octobre 2015, par Anssi Hannula
    avformat/hls : add support for EXT-X-MAP
    

    Without EXT-X-MAP support we miss the first bytes of some streams.

    These streams worked by luck before byte-ranged segment support was added in
    da7759b3579de3e98deb1ac58e642b861280ba54

    Fixes ticket #4797.

    • [DH] libavformat/hls.c