Recherche avancée

Médias (91)

Autres articles (61)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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

Sur d’autres sites (7598)

  • avcodec/amfenc : add smart access video option

    11 mars, par Evgeny Pavlov
    avcodec/amfenc : add smart access video option
    

    This commit adds option for enabling SmartAccess Video (SAV)
    in AMF encoders. SAV is an AMD hardware-specific feature which
    enables the parallelization of encode and decode streams across
    multiple Video Codec Engine (VCN) hardware instances.

    • [DH] libavcodec/amfenc.h
    • [DH] libavcodec/amfenc_av1.c
    • [DH] libavcodec/amfenc_h264.c
    • [DH] libavcodec/amfenc_hevc.c
  • Revision 3c42657207 : Checking scale factors on access. It is possible to have invalid scale factors

    23 août 2013, par Dmitry Kovalev

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


     Modify /vp9/common/vp9_scale.c


     Modify /vp9/common/vp9_scale.h


     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/encoder/vp9_temporal_filter.c



    Checking scale factors on access.

    It is possible to have invalid scale factors and not access them
    during decoding. Error is reported if we really try to use invalid scale
    factors.

    Change-Id : Ie532d3ea7325ee0c7a6ada08269f804350c80fdf

  • avcodec/opustab : Avoid indirection to access ff_celt_window

    3 octobre 2022, par Andreas Rheinhardt
    avcodec/opustab : Avoid indirection to access ff_celt_window
    

    Currently, it is accessed via a pointer (ff_celt_window)
    exported from opustab.h which points inside a static array
    (ff_celt_window_padded) in opustab.h. Instead export
    ff_celt_window_padded directly and make opustab.h
    a static const pointer pointing inside ff_celt_window_padded.
    Also mark all the declarations in opustab.h as hidden,
    so that the compiler knows that ff_celt_window has a fixed
    offset from the code even when compiling position-independent
    code.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/opusenc.c
    • [DH] libavcodec/opustab.c
    • [DH] libavcodec/opustab.h