Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11406)

  • avfilter/af_biquads : add shortcut to set internal precision

    6 décembre 2020, par Paul B Mahol
    avfilter/af_biquads : add shortcut to set internal precision
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_biquads.c
  • 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