Method to adjust color temperature? - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: Method to adjust color temperature? (/thread-1763.html) Pages:
1
2
|
Method to adjust color temperature? - Analog - 08.03.2021 Is there a method of converting between two color temperatures in Hybrid? I have an NTSC-J (9300k) capture that I'd like to bring inline with the Rec.601/709 (D65/6504k) standard. This is a non-linear conversion so it can't be done with standard RGB adjustments. Thanks! RE: Method to adjust color temperature? - Selur - 08.03.2021 Nope, don't know of any Avisynth or Vapoursynth filter for that. Cu Selur RE: Method to adjust color temperature? - Analog - 08.03.2021 (08.03.2021, 05:47)Selur Wrote: Nope, don't know of any Avisynth or Vapoursynth filter for that. I was afraid of that... Thanks for the response! RE: Method to adjust color temperature? - Selur - 08.03.2021 found a few threads that might give further hints: http://forum.doom9.org/showthread.php?t=172860 http://www.digitalfaq.com/forum/video-capture/10305-capture-device-settings.html https://forum.doom9.org/showthread.php?t=171477 https://forum.doom9.org/showthread.php?t=170309 Cu Selur RE: Method to adjust color temperature? - Analog - 08.03.2021 (08.03.2021, 06:13)Selur Wrote: found a few threads that might give further hints: Thanks for digging up those threads! A few of those posts are with regards to the 0-7.5IRE discrepancy which can luckily be corrected using a waveform parade & pedestal/brightness control during capture. I'm thinking that "CheapColorTemp" script might be my best bet in the AviSynth domain although since its a bit relative & destructive, I might as well use Adobe Premiere to quickly (& arbitrarily) correct it... Without an accurate transfer function, maybe I'll just leave it alone and deal with the slightly blue whites until someone skilled with colorimetry comes along and writes a script to transfer between two known color temps with minimal losses. Once again, always appreciate your help. RE: Method to adjust color temperature? - Analog - 11.11.2023 Hi Selur, Sorry for bumping an old thread. I discovered a color temperature filter was merged into FFmpeg in Jan. 2021. It takes the input file's recorded color temperature as the parameter and outputs as standard 6500K. See release msg: https://www.mail-archive.com/ffmpeg-devel@ffmpeg.org/msg114846.html Application: "ffmpeg -y -i input9300.mkv -vf colortemperature=temperature=9300 out6500.mkv" Could this be added to the next release? Thanks for your help as always! RE: Method to adjust color temperature? - Selur - 11.11.2023 Not sure if I'll add this since I can't show a preview for it. RE: Method to adjust color temperature? - Analog - 13.11.2023 OK, thanks for letting me know. It would certainly be a useful feature for many of us who are capturing Japanese video so if a way to implement it without breaking the preview system would be possible someday, it would be greatly appreciated! Thanks again! RE: Method to adjust color temperature? - Selur - 13.11.2023 I posted over at doom9, but so far no real solution was found. One idea there was to open the source with ffmpeg and pipe into vsrawsource, but that would not allow jumping inside the preview and is rather complicated to integrate into Hybrid. I also found this, which uses OpenCV and using: import cv2 a. Hybrid atm. only supports this when the torch-Addon is used. b. I'm not really sure how 'good' this is. Instead of using the kelvin_table one could probably use something similar to: https://academo.org/demos/colour-temperature-relationship/ which uses: /** => there is still hope Cu Selur RE: Method to adjust color temperature? - Selur - 14.11.2023 Send you a link to a dev version which comes with a 'Change Temperature' option. Let me know whether that works as intended. Cu Selur |