Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (46)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8297)

  • jpeg2000 : tag_tree_size : replace check by assert

    30 mai 2013, par Michael Niedermayer
    jpeg2000 : tag_tree_size : replace check by assert
    

    This function is never called with values large enough for the
    error condition to occur

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

    • [DH] libavcodec/jpeg2000.c
  • aacenc_quantization : replace copysign() with a ternary operator

    22 août 2015, par Rostislav Pehlivanov
    aacenc_quantization : replace copysign() with a ternary operator
    

    This commit removes the last thing a Windows environment can
    complain about the AAC encoder code. Leftover from an old revision.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc_quantization.h
  • avcodec/vp9 : Replace atomic_store() by atomic_init()

    17 septembre 2023, par Andreas Rheinhardt
    avcodec/vp9 : Replace atomic_store() by atomic_init()
    

    This part of the code is not slice-threaded and they are
    semantically an initialization, so use atomic_init()
    instead of the potentially expensive atomic_store()
    (which uses sequentially consistent memory ordering).

    Also remove the initial initialization directly after
    allocating this array.

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

    • [DH] libavcodec/vp9.c