Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (94)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10633)

  • 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