Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (7390)

  • lavu/hwcontext_qsv : make qsv hwdevice works with oneVPL

    4 janvier 2021, par Haihao Xiang
    lavu/hwcontext_qsv : make qsv hwdevice works with oneVPL
    

    In oneVPL, MFXLoad() and MFXCreateSession() are required to create a
    workable mfx session[1]

    Add config filters for D3D9/D3D11 session (galinart)

    The default device is changed to d3d11va for oneVPL when both d3d11va
    and dxva2 are enabled on Microsoft Windows

    This is in preparation for oneVPL support

    [1] https://spec.oneapi.io/versions/latest/elements/oneVPL/source/programming_guide/VPL_prg_session.html#onevpl-dispatcher

    Co-authored-by : galinart <artem.galin@intel.com>
    Signed-off-by : galinart <artem.galin@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavutil/hwcontext_qsv.c
  • input : Add a workaround for swscale overread bugs

    22 octobre 2017, par Henrik Gramner
    input : Add a workaround for swscale overread bugs
    

    swscale can read past the end of the input buffer, which may result in
    crashes if such a read crosses a page boundary into an invalid page.

    Work around this by adding some padding space at the end of the buffer when
    using memory-mapped input frames. This may sometimes require copying the
    last frame into a new buffer on Windows since the Microsoft memory-mapping
    implementation has very limited capabilities compared to POSIX systems.

    • [DH] input/input.c
    • [DH] input/input.h
  • How do I send buffer to a virtual camera driver ?

    15 juin 2022, par rvega01

    I'm currently working on a project in a Windows environment where I have a Node.js application that accepts an RTSP video stream from a button click and I would like to stream the video data to a virtual camera driver and have it displayed within Microsoft Teams and Skype. The driver that I'm using and have installed (https://github.com/robot9706/VirtualCameraDriver) mentions that the filter implemented in the driver contains a property with a GUID that I can send buffer to.

    &#xA;

    I was wondering if anyone know of a javascript/node.js library, ffmpeg/gstreamer command, or any solution that comes to mind that can allow me to send video data to that GUID. I have tried outputting the RTSP stream to a videosink with g-streamer but I was unable to specify the display name for the output to be directed to.

    &#xA;

    With ffmpeg, I was able to find the driver info with DShow but I can only implement the driver as an video input and I'm unable to select the driver as an output through DShow. If there is an gstreamer/ffmpeg solution, please let me know as I'm inexperienced with video streaming and I have looked through many threads here but I'm unable to find an answer.

    &#xA;