Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (9993)

  • avformat/dump : Use int64_t for intermediate time values

    16 mai 2020, par Derek Buitenhuis
    avformat/dump : Use int64_t for intermediate time values
    

    Prevents wrap-around to negative values while calculating the duration string.

    Before :

    Duration : -411422 :-59 :-42.17, start : 0.000000, bitrate : 0 kb/s

    After :

    Duration : 781623:28:34.17, start : 0.000000, bitrate : 0 kb/s

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/dump.c
  • dnn-layer-mathbinary-test : Fix tests for cases with extra intermediate precision

    23 avril 2020, par Martin Storsjö
    dnn-layer-mathbinary-test : Fix tests for cases with extra intermediate precision
    

    This fixes tests on 32 bit x86 mingw with clang, which uses x87
    fpu by default.

    In this setup, while the get_expected function is declared to
    return float, the compiler is (especially given the optimization
    flags set) free to keep the intermediate values (in this case,
    the return value from the inlined function) in higher precision.

    This results in the situation where 7.28 (which actually, as
    a float, ends up as 7.2800002098), multiplied by 100, is
    728.000000 when really forced into a 32 bit float, but 728.000021
    when kept with higher intermediate precision.

    For the multiplication case, a more suitable epsilon would e.g.
    be 2*FLT_EPSILON*fabs(expected_output), but just increase the
    current hardcoded threshold for now.

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

    • [DH] tests/dnn/dnn-layer-mathbinary-test.c
  • avcodec/v4l2_m2m : Avoid using intermediate buffer

    3 mars 2020, par Andreas Rheinhardt
    avcodec/v4l2_m2m : Avoid using intermediate buffer
    

    Up until now, v4l2_m2m would write via snprintf() into an intermediate
    buffer and then copy from there (via strncpy()) to the end buffer. This
    commit changes this by removing the intermediate buffer.

    The call to strncpy() was actually of the form strncpy(dst, src,
    strlen(src) + 1) which is unsafe in general, but safe in this instance
    because dst and src were both of the same size and src was a proper
    zero-terminated string. But this nevertheless led to a compiler warning
    "‘strncpy’ specified bound depends on the length of the source argument
    [-Wstringop-overflow=]" in GCC 9.2. strlen() was unnecessary anyway.

    Reviewed-by : Andriy Gelman <andriy.gelman@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/v4l2_m2m.c