Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (24)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (3504)

  • avformat/hlsenc : increase initial program date time precision

    18 juillet 2020, par Marton Balint
    avformat/hlsenc : increase initial program date time precision
    

    Also query time only once, not for every variant stream, otherwise variant
    streams might get a slightly different initial program date time. And we can
    set this unconditionally because HLS_PROGRAM_DATE_TIME flag is checked
    elsewhere.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/hlsenc.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
  • lavu/tx : improve 3-point fixed precision

    14 février 2020, par Lynne
    lavu/tx : improve 3-point fixed precision
    

    There's just no reason not to when its so easy (albeit messy) and its also
    reducing the precision of all non-power-of-two transforms that use it.

    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c