Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (72)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • Merge commit ’7bf9647264308d2df74b2b50669f2d02a7ecc90b’

    18 août 2015, par Hendrik Leppkes
    Merge commit ’7bf9647264308d2df74b2b50669f2d02a7ecc90b’
    

    * commit ’7bf9647264308d2df74b2b50669f2d02a7ecc90b’ :
    vp7 : bound checking in vp7_decode_frame_header

    Only partially merged, see 46f72ea507afee6adb0d2324848159063d0e7afc

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavcodec/vp8.c
  • vulkan_encode : set the quality level in session parameters

    23 septembre 2024, par Víctor Manuel Jáquez Leal
    vulkan_encode : set the quality level in session parameters
    

    While running this command

    ./ffmpeg_g -loglevel debug -hwaccel vulkan -init_hw_device vulkan=vk:0,debug=1 -hwaccel_output_format vulkan -i input.y4m -vf 'format=nv12,hwupload' -c:v h264_vulkan -quality 2 output.mp4 -y

    It hit this validation error :

    Validation Error : [ VUID-vkCmdEncodeVideoKHR-None-08318 ] Object 0 : handle =
    0x8f000000008f, type = VK_OBJECT_TYPE_VIDEO_SESSION_KHR ; Object 1 : handle =
    0xfd00000000fd, type = VK_OBJECT_TYPE_VIDEO_SESSION_PARAMETERS_KHR ;
    | MessageID = 0x5dc3dd39
    | vkCmdEncodeVideoKHR() : The currently configured encode quality level (2) for
    VkVideoSessionKHR 0x8f000000008f[] does not match the encode quality level (0)
    VkVideoSessionParametersKHR 0xfd00000000fd[] was created with. The Vulkan spec
    states : The bound video session parameters object must have been created with
    the currently set video encode quality level for the bound video session at the
    time the command is executed on the
    device (https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VUID-vkCmdEncodeVideoKHR-None-08318)

    This patch adds a new function helper for creating session parameters, which
    also sets the quality level and it's called by the H.264 and H.265 Vulkan
    encoders.

    • [DH] libavcodec/vulkan_encode.c
    • [DH] libavcodec/vulkan_encode.h
    • [DH] libavcodec/vulkan_encode_h264.c
    • [DH] libavcodec/vulkan_encode_h265.c
  • avfilter/drawtext - implement fix_bounds

    11 janvier 2018, par Gyan Doshi
    avfilter/drawtext - implement fix_bounds
    

    When enabled, text, including effects like shadow or box, will be
    completely bound within the video frame.

    Default value changed to false to keep continuity of behaviour.

    Fixes #6960.

    Signed-off-by : Kyle Swanson <k@ylo.ph>

    • [DH] libavfilter/vf_drawtext.c