Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (39)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9984)

  • vulkan : always enable ReadWithoutFormat/WriteWithoutFormat

    18 avril, par Lynne
    vulkan : always enable ReadWithoutFormat/WriteWithoutFormat
    

    This implements support for reading and writing storage images with
    no format.
    The issue is that we define our images as arrays, and arrays can
    only have a single type, which means that f.ex. NV12 needs two
    different images, R8 and RG8.

    The only driver known not to advertise support for the extension
    as a whole is Intel, because they have parial support for odd formats
    we never use. Therefore, just always enable it by default.

    • [DH] libavutil/vulkan.c
  • how to reduce bitrate in hevc_vaapi and maintain good video quality in ffmpeg live streaming

    6 janvier 2017, par cold1746

    i tried the following code but i didint workout

    $ ffmpeg -vaapi_device /dev/dri/renderD128  -i input -vf
    'format=nv12,hwupload,scale_vaapi=720:576' -preset slow -c:v hevc_vaapi -b:v 600k -maxrate 600k -bufsize 300k
    -codec:a aac -b:a 96k -f mpegts -bf 0

    and
    vainfo is

    libva info : VA-API version 0.39.0 libva info : va_getDriverName()
    returns 0 libva info : Trying to open
    /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so libva info : Found init
    function __vaDriverInit_0_39 libva info : va_openDriver() returns 0
    vainfo : VA-API version : 0.39 (libva 1.7.0) vainfo : Driver version :
    Intel i965 driver for Intel(R) Skylake - 1.7.0 vainfo : Supported
    profile and entrypoints
    VAProfileMPEG2Simple : VAEntrypointVLD
    VAProfileMPEG2Simple : VAEntrypointEncSlice
    VAProfileMPEG2Main : VAEntrypointVLD
    VAProfileMPEG2Main : VAEntrypointEncSlice
    VAProfileH264ConstrainedBaseline : VAEntrypointVLD
    VAProfileH264ConstrainedBaseline : VAEntrypointEncSlice
    VAProfileH264Main : VAEntrypointVLD
    VAProfileH264Main : VAEntrypointEncSlice
    VAProfileH264High : VAEntrypointVLD
    VAProfileH264High : VAEntrypointEncSlice
    VAProfileH264MultiviewHigh : VAEntrypointVLD
    VAProfileH264MultiviewHigh : VAEntrypointEncSlice
    VAProfileH264StereoHigh : VAEntrypointVLD
    VAProfileH264StereoHigh : VAEntrypointEncSlice
    VAProfileVC1Simple : VAEntrypointVLD
    VAProfileVC1Main : VAEntrypointVLD
    VAProfileVC1Advanced : VAEntrypointVLD
    VAProfileNone : VAEntrypointVideoProc
    VAProfileJPEGBaseline : VAEntrypointVLD
    VAProfileJPEGBaseline : VAEntrypointEncPicture
    VAProfileVP8Version0_3 : VAEntrypointVLD
    VAProfileVP8Version0_3 : VAEntrypointEncSlice
    VAProfileHEVCMain : VAEntrypointVLD
    VAProfileHEVCMain : VAEntrypointEncSlice

    and mediainfo is

    General Complete name : c.avi Format
     : AVI Format/Info : Audio Video
    Interleave Format profile : OpenDML File
    size : 1.17 GiB Duration
     : 1mn 0s Overall bit rate : 168 Mbps Writing
    application : Lavf56.40.101

    Video ID : 0 Format
     : ProRes Format version : Version 0 Format
    profile : High Codec ID
     : apch Duration : 1mn 0s Bit rate
     : 166 Mbps Width : 1 920 pixels
    Height : 1 080 pixels Display aspect
    ratio : 16:9 Frame rate
     : 24.000 fps Color space : YUV Chroma
    subsampling : 4:2:2 Scan type
     : Progressive Bits/(Pixel*Frame) : 3.343 Stream
    size : 1.16 GiB (99%) Writing library
     : abm0 Matrix coefficients : BT.709

    Audio ID : 1 Format
     : PCM Format settings, Endianness : Little Format
    settings, Sign : Signed Codec ID
     : 1 Duration : 1mn 0s Bit rate mode
     : Constant Bit rate : 1 536 Kbps
    Channel(s) : 2 channels Sampling rate
     : 48.0 KHz Bit depth : 16 bits Stream
    size : 11.0 MiB (1%) Alignment
     : Aligned on interleaves Interleave, duration : 21
    ms (0.50 video frame)

    im getting less file size and good quality for hevc encoding

  • libavcodec/qsvenc : Do not pass RGB solorspace to VPL/MSDK

    13 février 2023, par Wenbin Chen
    libavcodec/qsvenc : Do not pass RGB solorspace to VPL/MSDK
    

    When encode RGB frame, Intel driver convert RGB to YUV, so we cannot
    set RGB colorspace to VPL/MSDK.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>

    • [DH] libavcodec/qsvenc.c