Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (96)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (12683)

  • GStreamer force decodebin2 output type

    6 septembre 2014, par user975326

    I’m trying to write a program in C which replicates the pipeline :

    gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink

    DecodeBin2 has a dynamic pad and I’ve attached a callback to handle its creation. I am unable to link it to ffmpegcolorspace however because the pad capability is always video/quicktime. I would like it to be video/x-raw-yuv or something else which is compatible with ffmpegcolorspace.

    Is this possible to force/select the output type of decodebin2 ?

    Thanks.

    EDIT : Please do not recommend playbin. I’m trying to learn how how to make pipelines.

  • vp8 : change mv_{min,max}.{x,y} type to int

    8 juin 2015, par Andreas Cadhalpun
    vp8 : change mv_min,max.x,y type to int
    

    If one of the dimensions is larger than 8176, s->mb_width or
    s->mb_height is larger than 511, leading to an int16_t overflow of
    s->mv_max.x,y. This then causes av_clip to be called with amin > amax.

    Changing the type to int avoids the overflow and has no negative
    effect, because s->mv_max is only used in clamp_mv for clipping.
    Since mv_max.x,y is positive and mv_min.x,y negative, av_clip can’t
    increase the absolute value. The input to av_clip is an int16_t, and
    thus the output fits into int16_t as well.

    For additional safety, s->mv_min,max.x,y are clipped to int16_t range
    before use.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/vp8.c
    • [DH] libavcodec/vp8.h
  • Revision 35fadf1d25 : bilinearpredict_neon : fix type conversion warnings make bifilter4_coeff[][] uin

    11 juillet 2014, par James Zern

    Changed Paths :
     Modify /vp8/common/arm/neon/bilinearpredict_neon.c



    bilinearpredict_neon : fix type conversion warnings

    make bifilter4_coeff[][] uint8_t, no values exceed this range and
    they’re loaded with vdup_n_u8().

    Change-Id : I921983e9edd828d29820e40ac30a7801dbe0fb4f