Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (81)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (12108)

  • avcodec/libaomenc : remove the redundant initialization

    17 novembre 2021, par Limin Wang
    avcodec/libaomenc : remove the redundant initialization
    

    For dst->have_sse will be assigned by ctx->have_sse soon(code line 23).

    Reviewed-by : James Zern <jzern-at-google.com@ffmpeg.org>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/libaomenc.c
  • avformat/mpegts : Fix for the DOVI video stream descriptor

    14 octobre 2021, par Limin Wang
    avformat/mpegts : Fix for the DOVI video stream descriptor
    

    By <<Dolby Vision Streams Within the MPEG-2 Transport Stream Format v1.2>>

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

    • [DH] libavformat/mpegts.c
  • lavfi/qsvvpp : support async depth

    31 mars 2021, par Fei Wang
    lavfi/qsvvpp : support async depth
    

    Async depth will allow qsv filter cache few frames, and avoid force
    switch and end filter task frame by frame. This change will improve
    performance for some multi-task case, for example 1:N transcode(
    decode + vpp + encode) with all QSV plugins.

    Performance data test on my Coffee Lake Desktop(i7-8700K) by using
    the following 1:8 transcode test case improvement :
    1. Fps improved from 55 to 130.
    2. Render/Video usage improved from 61%/ 38% to 100%/ 70%.(Data get
    from intel_gpu_top)

    test CMD :
    ffmpeg -v verbose -init_hw_device qsv=hw :/dev/dri/renderD128 -filter_hw_device \
    hw -hwaccel qsv -hwaccel_output_format qsv -c:v h264_qsv -i 1920x1080.264 \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null - \
    - vf 'vpp_qsv=w=1280:h=720:async_depth=4' -c:v h264_qsv -r:v 30 -preset 7 -g 33 -refs 2 -bf 3 -q 24 -f null -

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Reviewed-by : Linjie Fu <linjie.justin.fu@gmail.com>
    Signed-off-by : Zhong Li <zhongli_dev@126.com>

    • [DH] libavfilter/qsvvpp.c
    • [DH] libavfilter/qsvvpp.h
    • [DH] libavfilter/vf_deinterlace_qsv.c
    • [DH] libavfilter/vf_vpp_qsv.c