Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (105)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8244)

  • lavfi/vaapi_vpp : Use dynamic frame pool in outlink if possible

    26 mars 2024, par Haihao Xiang
    lavfi/vaapi_vpp : Use dynamic frame pool in outlink if possible
    

    This can avoid to exhaust the buffers within outlink when libva2 is
    available.

    For example :
    $ ffmpeg -hwaccel_output_format vaapi -hwaccel vaapi -i input.mp4 \
    - vf 'scale_vaapi=w=720:h=480' -c:v hevc_vaapi -f null -
    ...
    [vf#0:0 @ 0x55acad91f400] Error while filtering : Cannot allocate memory
    [vf#0:0 @ 0x55acad91f400] Task finished with error code : -12 (Cannot
    allocate memory)
    [vf#0:0 @ 0x55acad91f400] Terminating thread with return code -12
    (Cannot allocate memory)

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavfilter/vaapi_vpp.c
  • lavu/hwcontext_qsv : add support for 12bit content on Linux

    6 octobre 2022, par Fei Wang
    lavu/hwcontext_qsv : add support for 12bit content on Linux
    

    P012, Y212 and XV36 are used for 12bit content in FFmpeg VAAPI, so
    these formats should be used in FFmpeg QSV too, however the SDK only
    declares support for P016, Y216 and Y416. So this commit fudged mappings
    between AV_PIX_FMT_P012 and MFX_FOURCC_P016, AV_PIX_FMT_Y212 and
    MFX_FOURCC_Y216, AV_PIX_FMT_XV36 and MFX_FOURCC_Y416.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • libavcodec/qsvenc : fix a memory leak problem

    20 janvier 2022, par Wenbin Chen
    libavcodec/qsvenc : fix a memory leak problem
    

    "qf->frame" ref to input frame but it isn't released. av_frame_unref()
    is added before refering qf->frame to new frame to make sure the previous
    reference is released.

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

    • [DH] libavcodec/qsvenc.c