You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have an IMGUI_VIDEO_CAPTURE_ENCODER_PATH definition included in imgui_capture_tool.h much like IMGUI_CAPTURE_DEFAULT_VIDEO_PARAMS[...]. In my world it would be conveniently sourced during ImGuiTestEngine_Postswap;
struct IMGUI_API ImGuiCaptureContext would contain char* VideoCaptureEncoderPath = IMGUI_VIDEO_CAPTURE_ENCODER_PATH or along those lines so we don't have to input it via the UI.
Thoughts?
The text was updated successfully, but these errors were encountered:
struct IMGUI_API ImGuiCaptureContext would contain char* VideoCaptureEncoderPath = IMGUI_VIDEO_CAPTURE_ENCODER_PATH or along those lines so we don't have to input it via the UI.
If you want to change the default value or force the value, you can write to test_io.VideoCaptureEncoderPath[] ?
If you ship or use a software that has an ffmpeg executable you can should setup that path yourself in the code.
We don't ship ffmpeg.exe in neither Test Suite or Test Engine so it wouldn't make sense to set a default.
As a sidenote, IMGUI_CAPTURE_DEFAULT_VIDEO_PARAMS_FOR_FFMPEG should probably have the suffix dropped.
I don't understand either. They are specifically default params in the case of using FFMPEG as an encoder.
We don't assume the encoder is FFMPEG but provide default params for that case.
It would be nice to have an
IMGUI_VIDEO_CAPTURE_ENCODER_PATH
definition included inimgui_capture_tool.h
much likeIMGUI_CAPTURE_DEFAULT_VIDEO_PARAMS
[...]. In my world it would be conveniently sourced duringImGuiTestEngine_Postswap
;struct IMGUI_API ImGuiCaptureContext
would containchar* VideoCaptureEncoderPath = IMGUI_VIDEO_CAPTURE_ENCODER_PATH
or along those lines so we don't have to input it via the UI.Thoughts?
The text was updated successfully, but these errors were encountered: