Recherche avancée

Médias (91)

Autres articles (57)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11560)

  • Revision a4ce53f14d : Adaptive motion control on ref and search range This commit takes a preliminary

    21 décembre 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_rdopt.c



    Adaptive motion control on ref and search range

    This commit takes a preliminary attempt to refine the motion search
    control. It detects the SAD associated with mv predictor per reference
    frame, and based on which to determine whether the encoder wants to
    reduce the motion search range (if the predicted mv provides fairly
    small SAD), or to skip the current reference frame (if there exists
    another ref frame that gives much smaller SAD cost).

    This feature is turned on in the settings of speed 1 and above.

    In speed 1, compression performance changed
    derf -0.018%
    yt -0.043%
    hd -0.045%
    stdhd -0.281%

    speed-up
    pedestrian_area_1080p at 4000 kbps 100 frames
    199651ms -> 188846ms (5.5% speed-up)
    blue_sky_1080p at 6000 kbps
    443531ms -> 415239ms (6.3% speed-up)

    In speed 2, compression performance changed
    derf -0.026%
    yt -0.090%
    hd -0.055%
    stdhd -0.210%

    speed-up
    pedstrian 113949ms -> 108855ms (4.5% speed-up)
    blue_sky 271057ms -> 257322ms (5% speed-up)

    Change-Id : I1b74ea28278c94fea329d971d706d573983d810d

  • Revision 1434f7695b : Skip ref frame mode search conditioned on predicted mv residuals This commit ma

    3 novembre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_pickmode.c



    Skip ref frame mode search conditioned on predicted mv residuals

    This commit makes the RTC coding mode to conditionally skip the
    reference frame mode search, when the predicted motion vector of
    the current reference frame gives more than two times sum of
    absolute difference compared to that of other reference frames.

    It reduces the runtim by 1% - 4% for speed -5 and -6. The average
    compression performance is improved by about 0.1% in both settings.

    It is of particular benefit to light change scenarios. The
    compression performance of test clip mmmovingvga.y4m is improved by
    6.39% and 15.69% at high bit rates for speed -5 and -6, respectively.

    Speed -5
    vidyo1 16555 b/f, 40.818 dB, 12422 ms ->
    16552 b/f, 40.804 dB, 12100 ms

    nik 33211 b/f, 39.138 dB, 11341 ms ->
    33228 b/f, 39.139 dB, 11023 ms

    mmmoving 33263 b/f, 40.935 dB, 13508 ms ->
    33256 b/f, 41.068 dB, 12861 ms

    Speed -6
    vidyo1 16541 b/f, 40.227 dB, 8437 ms ->
    16540 b/f, 40.220 dB, 8216 ms

    nik 33272 b/f, 38.399 dB, 7610 ms ->
    33267 b/f, 38.414 dB, 7490 ms

    mmmoving 33255 b/f, 40.555 dB, 7523 ms ->
    33257 b/f, 40.975 dB, 7493 ms

    Change-Id : Id2aef76ef74a3cba5e9a82a83b792144948c6a91

  • Revision cc80247f16 : Switch the order of calculating 2-D inverse transform The 2-D inverse transform

    27 décembre 2012, par Yunqing Wang

    Changed Paths : Modify /vp9/common/vp9_idctllm.c Switch the order of calculating 2-D inverse transform The 2-D inverse transform X = M1*Z*Transposed_M2 was calculated in 2 steps from left to right : 1. Vertical transform : Y = M1*Z 2. Horizontal transform : X= Y*Transposed_M2 In SIMD, a transpose is (...)