Dennis E. Mungai

Results 23 comments of Dennis E. Mungai

Sure, I'll take a look at the thread. On Sat, 3 Apr 2021 at 13:03, Marco Ravich ***@***.***> wrote: > OK, seems the (greatest ?) hardware accelerated video encoders expert...

Also see https://stackoverflow.com/questions/55687189/how-to-use-gpu-to-accelerate-the-processing-speed-of-ffmpeg-filter/55747785#55747785 On Sat, 26 Sep 2020, 02:54 John, wrote: > Thank you for your interest and forwarding information about NVENC. I will > certainly review it and see...

Hello, Here's a rudimentary example, gleaned from documentation: ``` gst-launch-1.0 \ udpsrc uri=udp://$ip_addr:$port ! decodebin3 ! tee name=t \ t. ! queue ! x264enc bitrate=100000 ! mux. \ t. !...

@0x09 a good example would be a video filter capable of detecting upscaled video. In a similar fashion as the framemd5 and hash muxers that can be used to perform...

@fhvwy , That is well and good. However, on prebuilt applications where that variable cannot be set, a global option (such as the solution he described above) would be very...

See this issue on the same in libva-utils: https://github.com/intel/libva-utils/issues/120 Assumptions are dangerous, and they make error handling harder than it should be. An optional environment variable that would allow a...

Applications such as FFmpeg have [robust hwaccel init codepaths](http://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options) that allow for device selection on a per-session basis (encode, decode, filter chain usage, etc) as shown here. However, that cannot...

Another prime example of why this is needed: https://trac.ffmpeg.org/ticket/7649

A similar case here on an EVOC P775TM1-R. The hardware ID is `HDAUDIO\FUNC_01&VEN_10EC&DEV_0899&SUBSYS_15587711`, and the query returns a result [here](https://github.com/alanfox2000/realtek-universal-audio-driver/search?q=HDAUDIO%5CFUNC_01%26VEN_10EC%26DEV_0230%26SUBSYS_17AA3820&unscoped_q=HDAUDIO%5CFUNC_01%26VEN_10EC%26DEV_0230%26SUBSYS_17AA3820). Main page, showing details: ![image](https://user-images.githubusercontent.com/2356871/75606582-36c10080-5aff-11ea-9689-c9ac5343057b.png) No equalizer shown: ![image](https://user-images.githubusercontent.com/2356871/75606592-4dffee00-5aff-11ea-815b-e13c159c668b.png)

Hello there, Note that KVM needs hardware assisted virtualization to run on the host, and in virtualized environment, you'll need to have a platform that supports nested virtualization . Current...