Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (8850)

  • ffmpeg QSV hardware encoder with x11grab screen capture

    11 janvier 2020, par Toby Eggitt

    I believe I have built ffmpeg with support for my motherboard’s Intel graphics processor chip, but I have not succeeded in showing this working in any way. My goal is to use it for screen capture (the ffmpeg I built does capture screen successfully using the software encoding, but this is far too slow to be useful—it manages about 12fps at a very modest quality).

    My main problem—I think—is that I don’t know how to use these encoders, the examples I found all fail, which makes me suspect that what I’ve built is broken in some way. However, I also have no idea how I can verify that I built this correctly, but the following are true :

    • The five components that I built to get to this all compiled without
      errors (they were libva, gmmlib, intel-media-driver, libmfx, and
      ffmpeg
    • The output of ffmpeg -encoders includes four encoders with _qsv in
      their names including h264_qsv
    • Most of the commands I have tried result in output of this form :
       [h264_qsv @ 0x55ef1dc72040] Low power mode is unsupported
       [h264_qsv @ 0x55ef1dc72040] Current frame rate is unsupported
       [h264_qsv @ 0x55ef1dc72040] Current picture structure is unsupported
       [h264_qsv @ 0x55ef1dc72040] Current resolution is unsupported
       [h264_qsv @ 0x55ef1dc72040] Current pixel format is unsupported
       [h264_qsv @ 0x55ef1dc72040] some encoding parameters are not supported by the QSV runtime. Please double check the input parameters.
       Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    I have the impression this thing might be fussy about many parameters of this sort but have no idea where to find out what it would like. Any suggestions at all, how to verify it, or better yet, how to issue a command that captures screen and encodes with the hardware, would be most welcome.

  • recording live stream video from tv card using ffmpeg at window [on hold]

    6 décembre 2013, par user2688423

    I want to record live stream every 1 second from tv card(tv signal) using ffmpeg in window.

    first of all, to record live video from tv card, I tried below.

    1. First I tried this.

    ffmpeg -list_devices true -f dshow -i dummy

    then the result is

    " [dshow @ 000000000024e6fe0] DirectShow video devices
    [dshow @000000000024e6fe0] "SKYTV HD USB Maxx Video Capture"
    [dshow @
    000000000024e6fe0] DirectShow audio devices
    [dshow @
    000000000024e6fe0] "Analog Audio In(SKYTV HD USB Ma" "

    so I tried

    ffmpeg -f dshow -i video="SKYTV HD USB Maxx Video Capture" -r 20
    -threads 0 D ://test.mkv

    But it didn't work. the Error message is

    "[dshow@000000000034d920] Could not run filter
    video=SKYTV HD USB
    Maxx Video Capture : Input/output error"

    I use the device called 'SKYTV HD USB Maxx Video Capture' for getting tv signal(TV card).

    1. The First way deosn't work, I tried different way.

    ffmpeg -y -f vfwcap -i list

    then the result is
    "

    [dshow @ 00000000003fd760] Driver 0

    [dshow @ 00000000003fd760] Microsoft WDM Image Capture (Win32)
    [dshow @ 00000000003fd760] Version : 6.1.7601.17514 list : Input/output error

    "

    so I tried

    ffmpeg -y -f vfwcap -r 25 -i 0 D ://out.mp4

    then, there is some out.mp4 file in D drive but the file is nothing.
    (I think it is not TV signal)

    what should i do to record live video every 1 second from tv card(tv signal) using ffmpeg in window ? And How can I set channel at tvcard(Because I want to get tv signal, there are many channels).

    Please help..!

  • lavc/vaapi_encode_h265 : Add GPB frame support for hevc_vaapi

    17 mars 2022, par Linjie Fu
    lavc/vaapi_encode_h265 : Add GPB frame support for hevc_vaapi
    

    Use GPB frames to replace regular P/B frames if backend driver does not
    support it.

    - GPB :
    Generalized P and B picture. Regular P/B frames replaced by B
    frames with previous-predict only, L0 == L1. Normal B frames
    still have 2 different ref_lists and allow bi-prediction

    Signed-off-by : Linjie Fu <linjie.fu@intel.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vaapi_encode.c
    • [DH] libavcodec/vaapi_encode.h
    • [DH] libavcodec/vaapi_encode_h265.c