Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (66)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6676)

  • avfilter/buffersrc : make channel_layout a CHLAYOUT type AVOption

    2 janvier, par James Almer
    avfilter/buffersrc : make channel_layout a CHLAYOUT type AVOption
    

    The string type is a remnant of the old channel layout API implementation.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/buffersrc.c
  • 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

  • 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