Recherche avancée

Médias (91)

Autres articles (94)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6598)

  • avfilter/asrc_sine : increase frequency accuracy

    10 novembre 2024, par Marton Balint
    avfilter/asrc_sine : increase frequency accuracy
    

    Previously the delta phase was fixed point fractional with 2^32 fractions,
    which caused inaccuracies in the output frequency, unless the input
    frequency*2^32 was divisable by the sample rate.

    This patch improves frequency accuracy by tracking subfractions of the delta
    phase fractions. For this we are using a denominator which is a multiple of the
    sample rate, making sure that integer frequencies are always accurately
    represented.

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

    • [DH] libavfilter/asrc_sine.c
  • avcodec/vvc : simplify priority logical to improve performance for 4K/8K

    24 septembre 2024, par Nuo Mi
    avcodec/vvc : simplify priority logical to improve performance for 4K/8K
    

    For 4K/8K video processing, it's possible to have over 1,000 tasks pending on the executor.
    In such cases, O(n) and O(log(n)) insertion times are too costly.
    Reducing this to O(1) will significantly decrease the time spent in critical sections

    clip | before | after | delta


    |--------|--------|-------
    VVC_HDR_UHDTV2_OpenGOP_7680x4320_50fps_HLG10.bit | 24 | 27 | 12.5%
    VVC_HDR_UHDTV2_OpenGOP_7680x4320_50fps_HLG10_HighBitrate.bit| 12 | 17 | 41.7%
    tears_of_steel_4k_8M_8bit_2000.vvc | 34 | 102 | 200.0%
    VVC_UHDTV1_OpenGOP_3840x2160_60fps_HLG10.bit | 126 | 128 | 1.6%
    RitualDance_1920x1080_60_10_420_37_RA.266 | 350 | 378 | 8.0%
    NovosobornayaSquare_1920x1080.bin | 341 | 369 | 8.2%
    Tango2_3840x2160_60_10_420_27_LD.266 | 69 | 70 | 1.4%
    RitualDance_1920x1080_60_10_420_32_LD.266 | 243 | 259 | 6.6%
    Chimera_8bit_1080P_1000_frames.vvc | 420 | 392 | -6.7%
    BQTerrace_1920x1080_60_10_420_22_RA.vvc | 148 | 144 | -2.7%

    • [DH] libavcodec/executor.c
    • [DH] libavcodec/executor.h
    • [DH] libavcodec/vvc/thread.c
  • x86/vvcdec : inter, add optical flow avx2 code

    20 août 2024, par Nuo Mi
    x86/vvcdec : inter, add optical flow avx2 code
    

    BDoF used about 10%–25% of the CPU for some clips.
    Here are the FPS for one run ; please ignore the negative values, as they may be due to round-to-round variation

    clips | before | after | delta


    |--------|-------|------
    RitualDance_1920x1080_60_10_420_37_RA.266 | 310.0 | 363.0 | 14.60%
    NovosobornayaSquare_1920x1080.bin | 322.3 | 339.7 | 5.12%
    Tango2_3840x2160_60_10_420_27_LD.266 | 71.0 | 68.7 | -3.35%
    RitualDance_1920x1080_60_10_420_32_LD.266 | 250.0 | 245.3 | -1.92%
    Chimera_8bit_1080P_1000_frames.vvc | 359.3 | 422.7 | 15.00%
    BQTerrace_1920x1080_60_10_420_22_RA.vvc | 142.3 | 147.7 | 3.66%

    Reviewed-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/x86/vvc/Makefile
    • [DH] libavcodec/x86/vvc/vvc_of.asm
    • [DH] libavcodec/x86/vvc/vvcdsp_init.c