Aleksoid1978 / VideoRenderer

Внешний видео-рендерер
GNU General Public License v3.0
983 stars 108 forks source link

CLI to transcode SDR to RTX HDR? #138

Closed alexandergunnarson closed 3 months ago

alexandergunnarson commented 3 months ago

Hey! This repo of yours is pretty much the only place I’ve seen the RTX HDR driver API being used directly. (At least I think it’s being used here, per this commit.) I’m looking for a CLI tool that takes an SDR video and outputs a video upmapped to HDR via RTX HDR. Is such a CLI tool available in this repo? If not, is there some C++ API in your repo that I can hook into? I’m trying to automate the upmapping on a cloud instance.

Note that there’s a related discussion on on the Vips repo about this.

Thanks so much! This kind of thing would be incredibly useful for a large subset of people I think.

clsid2 commented 3 months ago

This is a DirectShow video renderer. The ONLY way to use it is to write a DirectShow player.

v0lt commented 3 months ago

To understand how this works, see commit 6f0329a. You can also look at the implementation in Chromium.

There will be no console utility here.

alexandergunnarson commented 3 months ago

Thanks for your fast feedback!