Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (58)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • avcodec/Makefile : Remove obsolete adx_parser->adx.c dependency

    16 septembre 2022, par Andreas Rheinhardt
    avcodec/Makefile : Remove obsolete adx_parser->adx.c dependency
    

    Obsolete since b024209b1fe57b7902d30a8e0d38f5ecb628e6f3.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/Makefile
  • configure, avcodec/Makefile : Remove obsolete mpegvideo dependencies

    30 septembre 2022, par Andreas Rheinhardt
    configure, avcodec/Makefile : Remove obsolete mpegvideo dependencies
    

    As long as ff_mpeg12_common_init() existed in mpeg12.c,
    it added a dependency of mpeg12.o on mpegvideodata.o
    (which provides ff_mpeg2_dc_scale_table, which is used
    in ff_mpeg12_common_init()). mpegvideodata.o is normally
    provided by the mpegvideo subsystem and therefore several
    codecs and the MPEG-1/2 parser added a configure dependency
    on said subsystem (additionally, the eatqi decoder just
    added a Makefile dependency on mpegvideodata.o).

    Given that ff_mpeg12_common_init() is no more, these dependencies
    can be removed.

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

    • [DH] configure
    • [DH] libavcodec/Makefile
  • postproc/postprocess : Remove obsolete MMX(EXT)/3Dnow functions

    3 novembre 2022, par Andreas Rheinhardt
    postproc/postprocess : Remove obsolete MMX(EXT)/3Dnow functions
    

    postprocess.c currently has C, MMX, MMXEXT, 3DNow as well as
    SSE2 versions of its internal functions. But given that only
    ancient 32-bit x86 CPUs don't support SSE2, the MMX, MMXEXT
    and 3DNow versions are obsolete and are therefore removed by
    this commit. This saves about 56KB here.

    (The SSE2 version in particular is not really complete,
    so that it often falls back to MMXEXT (which means that
    there were some identical (apart from the name) MMXEXT
    and SSE2 functions ; this duplication no longer exists
    with this commit.)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libpostproc/postprocess.c
    • [DH] libpostproc/postprocess_template.c