Recherche avancée

Médias (91)

Autres articles (98)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (8394)

  • 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
  • avcodec/profiles : remove duplicate FF_PROFILE_RESERVED entry

    5 mai 2020, par Limin Wang
    avcodec/profiles : remove duplicate FF_PROFILE_RESERVED entry
    

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/profiles.c