Recherche avancée

Médias (91)

Autres articles (48)

  • 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" (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (6964)

  • avcodec/amfenc : add 10 bit encoding in av1_amf

    31 juillet 2024, par Evgeny Pavlov
    avcodec/amfenc : add 10 bit encoding in av1_amf
    

    v2 : refactored after review

    Signed-off-by : Evgeny Pavlov <lucenticus@gmail.com>
    Co-authored-by : Dmitrii Ovchinnikov <ovchinnikov.dmitrii@gmail.com>
    Co-authored-by : Araz Iusubov <Primeadvice@gmail.com>
    Signed-off-by : Dmitrii Ovchinnikov <ovchinnikov.dmitrii@gmail.com>

    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/amfenc_av1.c
  • avcodec/amfenc : Fixes the color information in the output.

    31 juillet 2024, par Michael Fabian 'Xaymar' Dirks
    avcodec/amfenc : Fixes the color information in the output.
    

    added 10 bit support for amf hevc.

    before :

    command - ffmpeg.exe -hide_banner -y -hwaccel d3d11va -hwaccel_output_format d3d11 -i test_10bit_file.mkv -an -c:v h264_amf res.dx11_hw_h264.mkv
    output - Format of input frames context (p010le) is not supported by AMF.
    command - ffmpeg.exe -hide_banner -y -hwaccel d3d11va -hwaccel_output_format d3d11 -i test_10bit_file -an -c:v hevc_amf res.dx11_hw_hevc.mkv
    output - Format of input frames context (p010le) is not supported by AMF.

    after :

    command - ffmpeg.exe -hide_banner -y -hwaccel d3d11va -hwaccel_output_format d3d11 -i test_10bit_file -an -c:v h264_amf res.dx11_hw_h264.mkv
    output - 10-bit input video is not supported by AMF H264 encoder
    command - ffmpeg.exe -hide_banner -y -hwaccel d3d11va -hwaccel_output_format d3d11 -i test_10bit_file -an -c:v hevc_amf res.dx11_hw_hevc.mkv
    output - 10bit file

    v2 - lost line returned in ff_amf_pix_fmts
    v3 - fixes after review
    v4 - extract duplicated code, fix incorrect processing of 10-bit input for h264
    v5 - non-functional changes after review

    Co-authored-by : Evgeny Pavlov <lucenticus@gmail.com>
    Co-authored-by : Araz Iusubov <Primeadvice@gmail.com>
    Signed-off-by : Dmitrii Ovchinnikov <ovchinnikov.dmitrii@gmail.com>

    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/amfenc.h
    • [DH] libavcodec/amfenc_h264.c
    • [DH] libavcodec/amfenc_hevc.c
  • How do I record a Selenium Grid Session (Via VNC, Remote Frame Buffer - RFB) to an H264 encoded MP4 [closed]

    25 février, par Frobbit

    When my integration tests fail, I want to be able to watch the video of the test running. I test a full stack app with docker-compose and I use the single container Selenium-grid. If I save every Secenerio to a file, I can quickly review a failed test.

    &#xA;

    I'm trying to record a Selenium Grid session and save it as an MP4 file using GStreamer and VNC. I need a solution that captures the VNC session running in the Selenium Grid container and writes the output to an H264 encoded mp4 file.

    &#xA;

    Here's the context :

    &#xA;

    I'm using Selenium Grid with a VNC server running in the container.&#xA;I can access the VNC session using the se:vncLocalAddress capability.

    &#xA;

    I would like a tool that can record the VNC remote framebuffer (RFB) output.

    &#xA;

    Can someone provide a reliable way to record a Selenium Grid session to an MP4 file using a tool like GStreamer or ffmpeg ?

    &#xA;