Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (62)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (7468)

  • Remove obsolete disableExifThumbnail option.

    8 juin 2020, par blueimp
    Remove obsolete disableExifThumbnail option.
    

    Use the includeExifTags and excludeExifTags options instead, see also :
    https://github.com/blueimp/JavaScript-Load-Image/blob/master/README.md#exif-parser-options

  • build : add —install-name-dir=DIR Darwin option

    19 février 2016, par Clément Bœsch
    build : add —install-name-dir=DIR Darwin option
    

    This option is typically useful when cross-compiling dynamic libraries
    for iOS, with something such as —install-name-dir=@rpath

    • [DH] configure
  • configure : Improve the check for the rsync —contimeout option

    24 janvier, par Martin Storsjö
    configure : Improve the check for the rsync —contimeout option
    

    Traditionally, macOS has shipped an old version of rsync that lacked
    support for this option, hence this check (added in
    a8b3f0c5cf548f654e30c981988bb71981a3f8d3).

    However, in macOS 15.x, Apple have switched to providing rsync as a
    different tool, openrsync. The version of openrsync in at least
    macOS 15.2 does include "[—contimeout]" (note the lack of "=" after
    the option), in the output of "rsync —help", but when used, the tool
    errors out with "rsync : —contimeout=60 : unknown option". So apparently
    the tool erroenously lists the option as supported, while it really
    isn't.

    The original rsync tool (with a new enough version) prints
    "—contimeout=SECONDS" in the output of "rsync —help".

    It is unclear which version of openrsync Apple are shipping ; the latest
    upstream openrsync from OpenBSD does support the option and includes
    "[—contimeout=seconds]" in the output of "—help", and older versions
    don't seem to include the option as listed at all.

    Therefore, check for "—conntimeout=" with the "=", this should
    properly detect both new enough rsync and openrsync.

    This fixes running "fate-rsync" on macOS 15.x.

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

    • [DH] configure