Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (90)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7380)

  • fate : add qp filter test

    14 janvier 2015, par Michael Niedermayer
    fate : add qp filter test
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/filter-video.mak
    • [DH] tests/ref/fate/filter-qp
  • avcodec/amfenc : Fix inverted loop filter option

    14 septembre 2024, par Cameron Gutman
    avcodec/amfenc : Fix inverted loop filter option
    

    The AMF HEVC encoder takes a bool option for whether deblocking filter
    should be _disabled_ instead of whether it should _enabled_ like the
    AMF H.264 encoder does. The logic was accidentally copied from H.264 to
    HEVC without negating the bool value, so the deblocking filter was
    actually disabled when AV_CODEC_FLAG_LOOP_FILTER was set.

    Before this patch :


    no flags set => deblocking filter on
    flags +loop => deblocking filter off
    flags -loop => deblocking filter on

    After this patch :


    no flags set => deblocking filter on
    flags +loop => deblocking filter on
    flags -loop => deblocking filter off

    Signed-off-by : Cameron Gutman <aicommander@gmail.com>

    • [DH] libavcodec/amfenc_hevc.c
  • Is there a need to apply Deblocking filter, when I have all Intra frames Encoding

    31 août 2015, par Codec Guy

    I am working on H.264 Deblocking Filter and need some clarity.

    • While designing an all Intra Encoder and Decoder, is it mandatory to
      add Deblocking Filter block in the Codec.
    • If deblocking filter is not enabled for all Intra Encoding does that
      cause any PSNR degradation(I checked few streams the PSNR almost
      remained the same).
    • If I am encoding all my frames using Intra prediction, does that also
      have any blocking artifacts.

    Thanks in advance