Recherche avancée

Médias (91)

Autres articles (48)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7458)

  • Revision 26b6318de8 : Make get_coef_context() branchless. This should significantly speedup cost_coef

    1er juillet 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_entropy.c


     Modify /vp9/common/vp9_entropy.h


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_tokenize.c



    Make get_coef_context() branchless.

    This should significantly speedup cost_coeffs(). Basically what the
    patch does is to make the neighbour arrays padded by one item to
    prevent an eob check in get_coef_context(), then it populates each
    col/row scan and left/top edge coefficient with two times the same
    neighbour - this prevents a single/double context branch in
    get_coef_context(). Lastly, it populates neighbour arrays in pixel
    order (rather than scan order), so we don't have to dereference the
    scantable to get the correct neighbours.

    Total encoding time of first 50 frames of bus (speed 0) at 1500kbps
    goes from 2min10.1 to 2min5.3, i.e. a 2.6% overall speed increase.

    Change-Id : I42bcd2210fd7bec03767ef0e2945a665b851df56

  • avcodec/vc1 : fix mquant calculation for interlace field pictures

    18 mai 2018, par Jerome Borsboom
    avcodec/vc1 : fix mquant calculation for interlace field pictures
    

    For interlace field pictures s->mb_height indicates the height of the full
    picture in MBs, i.e. the two fields combined. A single field is half this
    size. When calculating mquant for interlace field pictures, the bottom edge
    is the last MB row of the field.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vc1_block.c
  • lavfi/libplacebo : properly handle EOF

    21 mai 2023, par Niklas Haas
    lavfi/libplacebo : properly handle EOF
    

    The current code relied on pl_queue eventually returning EOF back to the
    caller, which didn't work in all situations (e.g. single frame input).
    Also, the current code assumed that ff_inlink_acknowledge_status only
    fired once, which was patently not true, as the above edge cases
    demonstrated.

    Solve both issues by keeping track of the acknowledged link status and
    forwarding it (instead of trying to probe the pl_queue again) in the
    event that we run out of queued input frames, as well as (in CFR mode)
    when we pass the indicated status PTS.

    • [DH] libavfilter/vf_libplacebo.c