Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (69)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (2612)

  • avcodec/h264_sei : fix the size of user data unregistered

    19 décembre 2019, par Limin Wang
    avcodec/h264_sei : fix the size of user data unregistered
    

    According to the specifications, the payloadSize includes the 16-byte size of UUID.

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/h264_sei.c
  • avfilter : add overlay vaapi filter

    22 novembre 2021, par Xinpeng Sun
    avfilter : add overlay vaapi filter
    

    Overlay one video on the top of another.

    It takes two inputs and has one output. The first input is the "main" video on
    which the second input is overlaid. This filter requires same memory layout for
    all the inputs.

    An example command to use this filter to overlay overlay.mp4 at the top-left
    corner of the main.mp4 :

    ffmpeg -init_hw_device vaapi=foo :/dev/dri/renderD128 \
    - hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i main.mp4 \
    - hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i overlay.mp4 \
    - filter_complex "[0:v][1:v]overlay_vaapi=0:0:100:100:0.5[t1]" \
    - map "[t1]" -an -c:v h264_vaapi -y out_vaapi.mp4

    Signed-off-by : U. Artie Eoff <ullysses.a.eoff@intel.com>
    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
    Signed-off-by : Zachary Zhou <zachary.zhou@intel.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] configure
    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_overlay_vaapi.c
  • swscale/utils : return better error code from initFilter()

    13 juin 2020, par Limin Wang
    swscale/utils : return better error code from initFilter()
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libswscale/utils.c