Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (77)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12771)

  • avcodec/wmadec : fix WMA gapless playback

    5 octobre 2018, par bnnm
    avcodec/wmadec : fix WMA gapless playback
    

    Fixes trac issue #7473.

    Removes encoder delay (skip samples) and writes remaining frame samples after EOF to get correct sample count.

    Output is now accurate vs players that use Microsoft's codecs (Windows Media Format Runtime).

    Tested vs encode>decode WMAv2 with MS's codecs and most sample rate/bit rate/channel/mode combinations in ASF/XWMA.
    WMAv1 appears to use the same delay, from FFmpeg samples.

    Signed-off-by : bnnm <bananaman255@gmail.com>

    • [DH] libavcodec/wma.h
    • [DH] libavcodec/wmadec.c
    • [DH] tests/fate/wma.mak
    • [DH] tests/ref/fate/flcl1905
  • libavutil/hwcontext_d3d11va : adding more texture information to the D3D11 hwcontext API

    20 août 2021, par Artem Galin
    libavutil/hwcontext_d3d11va : adding more texture information to the D3D11 hwcontext API
    

    Microsoft VideoProcessor requires texture with D3DUSAGE_RENDERTARGET flag as output.
    There is no way to allocate array of textures with D3D11_BIND_RENDER_TARGET flag
    and .ArraySize > 2 by ID3D11Device_CreateTexture2D due to the Microsoft limitation.
    Adding AVD3D11FrameDescriptors array to store array of single textures
    instead of texture with multiple slices resolves this.

    Signed-off-by : Artem Galin <artem.galin@intel.com>

    • [DH] doc/APIchanges
    • [DH] libavutil/hwcontext_d3d11va.c
    • [DH] libavutil/hwcontext_d3d11va.h
    • [DH] libavutil/hwcontext_qsv.c
    • [DH] libavutil/version.h
  • FFMPEG encoding 16bit video data results in 10bit

    12 mars 2023, par Jl arto

    I want to compress a depth map that has 16 bits of information per pixel. In general, such depth maps can be stored in different ways, e.g. p016le, gray16le, yuv420p16le, yuv444p16le, ... but for simplicity, let's assume the depth map is a yuv420p16le (where the y-channel contains the depth).

    &#xA;

    For some reason when encoding with hevc_nvenc (I use an NVIDIA GTX 1660 Ti GPU), ffmpeg (the command line tool) changes the pixel format to a 10 or 12 bit variant (p010le, gray12le, yuv420p10le, yuv444p12le, ...), but I would like to keep the full 16 bits, since this affects the quality of the depth stored.

    &#xA;

    For example :

    &#xA;

    ffmpeg.exe -s:v 1920x1080 -r 30 -pix_fmt yuv420p16le -i depth_yuv420p16le.yuv -c:v hevc_nvenc -pix_fmt yuv444p16le output.mp4&#xA;

    &#xA;

    If I use ffprobe on the output.mp4, it tells me that the underlying pixel format is actually yuv444p10le. (Decoding and looking at the raw pixel data, I can confirm that the precision has decreased from 16 bits to 10 bits).

    &#xA;

    I hope 16 bit compression is possible, since according to

    &#xA;

    ffmpeg -h encoder=hevc_nvenc&#xA;

    &#xA;

    the supported pixel formats are :

    &#xA;

    hevc_nvenc: yuv420p nv12 p010le yuv444p p016le yuv444p16le bgr0 rgb0 cuda d3d11&#xA;

    &#xA;

    But p016le results in a p010le output, and yuv444p16le in yuv444p10le.

    &#xA;

    Does anyone know where the problem could lie ? Should I re-install ffmpeg (version 4.3.2-2021-02-27-essentials_build-www.gyan.dev) ? Is it because of Windows 10 having limited encoding/decoding capabilities ? Will buying the HEVC Video Extensions help solve this problem ?

    &#xA;

    Additional info : using libx256 does not look like it will work for this purpose, since the supported pixel formats are :

    &#xA;

    libx256 : yuv420p yuvj420p yuv422p yuvj422p yuv444p yuvj444p gbrp yuv420p10le yuv422p10le yuv444p10le gbrp10le yuv420p12le yuv422p12le yuv444p12le gbrp12le gray gray10le gray12le&#xA;

    &#xA;

    Any help would be greatly appreciated.

    &#xA;