Recherche avancée

Médias (91)

Autres articles (99)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (10216)

  • lavc : allow asynchronous decoders to return correct pkt_dts values

    11 septembre 2015, par wm4
    lavc : allow asynchronous decoders to return correct pkt_dts values
    

    The generic code in utils.c sets the AVFrame.pkt_dts field from the
    packet it was supposedly decoded. This does not have to be true for a
    fully asynchronous decoder like mmaldec. It could be overwritten with an
    incorrect value. Even if the decoder doesn’t determine the DTS (but sets
    it to AV_NOPTS_VALUE), it’s impossible to determine a correct value in
    utils.c.

    Decoders can now be marked with FF_CODEC_CAP_SETS_PKT_DTS, in which case
    utils.c won’t overwrite the field. The decoders are expected to set this
    field (even if they only set it to AV_NOPTS_VALUE).

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/internal.h
    • [DBH] libavcodec/mmaldec.c
    • [DBH] libavcodec/utils.c
  • avcodec/h264 : keep SPS and PPS bitstream data

    2 octobre 2015, par wm4
    avcodec/h264 : keep SPS and PPS bitstream data
    

    We assume an upper bound of 4096 bytes for each raw SPS/PPS. It’s hard
    to determine an exact maximum size, but this value was was considered
    high enough and safe.

    Needed for the following VideotoolBox commit.

    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_ps.c
  • dnxhddec : better support for 4:4:4

    4 octobre 2015, par Christophe Gisquet
    dnxhddec : better support for 4:4:4
    

    Profiles 1256 & 1270 (currently) signal at the frame header and MB
    levels the colorspace used, either RGB or YUV. While a MB-level
    varying colorspace is not supported, whether it is constant can be
    tracked so as to determine the exact colorspace.

    This requires having bitdepth and the ACT and 4:4:4 flags, in turn
    needing the CID. Because setting those before having validated
    enough things may result in invalid/unset DSP fucntions, setting
    the bitdepth in the context is delayed.

    It is not tested against a true RGB sequence, though.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dnxhddec.c