Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (63)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6575)

  • avcodec/av1dec : Fix resolving zero divisor

    30 novembre 2023, par Michael Niedermayer
    avcodec/av1dec : Fix resolving zero divisor
    

    Fixes : Out of array read
    Fixes : global-buffer-overflow-AV1

    Found-by : "Leonelli, Matteo" <matteo.leonelli@cispa.de>
    Tested-by : "Wang, Fei W" <fei.w.wang@intel.com>
    Reviewed-by : "Wang, Fei W" <fei.w.wang@intel.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/av1dec.c
  • libavutil/hwcontext_qsv : clean padding when upload qsv frames

    23 décembre 2021, par Wenbin Chen
    libavutil/hwcontext_qsv : clean padding when upload qsv frames
    

    Fix #7830
    When we upload a frame that is not padded as MSDK requires, we create a
    new AVFrame to copy data. The frame's padding data is uninitialized so
    it brings run to run problem. For example, If we run the following
    command serveral times we will get different outputs.

    ffmpeg -init_hw_device qsv=qsv:hw -qsv_device /dev/dri/renderD128 \
    - filter_hw_device qsv -f rawvideo -s 192x200 -pix_fmt p010 \
    - i 192x200_P010.yuv -vf "format=nv12,hwupload=extra_hw_frames=16" \
    - c:v hevc_qsv output.265

    According to https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/mediasdk-man.md#encoding-procedures
    "Note : It is the application's responsibility to fill pixels outside
    of crop window when it is smaller than frame to be encoded. Especially
    in cases when crops are not aligned to minimum coding block size (16
    for AVC, 8 for HEVC and VP9)"

    I add a function to fill padding area with border pixel to fix this
    run2run problem, and also move the new AVFrame to global structure
    to reduce redundant allocation operation to increase preformance.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • lavc/vaapi_encode_h264 : disable B frames in baseline profile

    8 janvier 2017, par Jun Zhao
    lavc/vaapi_encode_h264 : disable B frames in baseline profile
    

    Disable B frames when using baseline/constrained baseline profile,
    following H.264 spec Annex A.2.1.

    Signed-off-by : Jun Zhao <jun.zhao@intel.com>
    Signed-off-by : Yi A Wang <yi.a.wang@intel.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/vaapi_encode_h264.c