Tam Nguyen
Tam Nguyen
Fixes #3295 This adds code inside `AVCaptureMovieFileOutput.captureOutput()`, which is called right before `recordAsync()` returns its Promise. It makes use of a pre-existing `error` param, which produces the following info whenever...
Adding Android Camera2 support for controlling fps through `recordAsync()`. The key for this to work was setting `CaptureRequest.CONTROL_AE_TARGET_FPS_RANGE`. Along with this, I made an attempt at implementing `Camera2.getSupportedPreviewFpsRange()` by making...
`RecordOptions.codec` currently accepts string values such as 'H264', but when attempting to pass that option and value into `recordAsync()`, the following logs show up: ``` [native] Video Codec H264 is...
``` *** Error running before_process: /Users/tamnguyen/github/stable-diffusion-webui/extensions/sd-webui-bmab/scripts/sd_webui_bmab.py Traceback (most recent call last): File "/Users/tamnguyen/github/stable-diffusion-webui/modules/scripts.py", line 824, in before_process script.before_process(p, *script_args) File "/Users/tamnguyen/github/stable-diffusion-webui/extensions/sd-webui-bmab/sd_bmab/bmab.py", line 61, in before_process controlnet.update_controlnet_args(p) File "/Users/tamnguyen/github/stable-diffusion-webui/extensions/sd-webui-bmab/sd_bmab/controlnet.py", line 133,...