Chris Griffith
Chris Griffith
I am also having this issue for videos that have been trimmed using `ffmpeg` fast seek methods. (AKA putting `-ss` / `-to` before the video input instead of after.)
Example files https://drive.google.com/drive/folders/1Fqpt6BnZE8IxD0QNpHK5QDAWAwE6gRrf?usp=sharing (Video is royalty free from https://pixabay.com/) Encoded with command: `ffmpeg-y -i "paint_reference.mp4" -map 0:0 -c:v libx265 -x265-params "bframes=4:b-adapt=2:frame-threads=0:strong-intra-smoothing=0:hdr10_opt=0:aq-mode=0" -crf 26 -preset slow "paint_slow_26_strong-intra-smoothing=0_hdr10_opt=0_aq-mode=0.mkv"` Without forcing fps speed...
Ah good catch, yes the metrics were slowing down the encode significantly. Updated: * VCE speed – 118.10 fps * VCE quality – 96.47 fps Which I just have to...
Two year check-in I guess lol. Was curious if this still may be added or dropped for Vulkan Video (or if Vulkan Video will need this to operate?) https://www.phoronix.com/scan.php?page=news_item&px=Vulkan-1.2.196-H265-Encode
So far I can launch it: ```python def start_cutelog(self): from cutelog.main_window import MainWindow import sys if sys.platform == 'win32': import ctypes appid = 'busimus.cutelog' ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(appid) self.mw = MainWindow(logging.getLogger('my_log'), self) self.mw_close_event...
Hey @JacobHayes thanks for the great add! This is something I have struggled with before https://github.com/cdgriffith/Box/issues/15 so I'm going to do some prodding to see if I can make it...
My two thoughts tonight before sleep takes me: 1. (Not required for round 1), look into expanding this to work with BoxList as well. 2. It's great to track this,...
Sorry for delay, This is actually already / still in discussion https://github.com/cdgriffith/Box/issues/195 . Feel free to add thoughts there!
I am also an IDIOT and forgot about my own code. There is `box_from_file` already! https://github.com/cdgriffith/Box/blob/master/box/from_file.py#L94-#L96 ``` from box import box_from_file box_from_file(".black.toml") # Box({'tool': {'black': {'line-length': 120, 'target-version': ['py36', 'py37',...
To clarify why it isn't a class function of, it's meant to be more powerful that it can return either a `Box` or `BoxList` as needed. I am re-opening this...