diff --git a/.config/fish/completions/jotta-cli.fish b/.config/fish/completions/jotta-cli.fish new file mode 100644 index 0000000..f189c3c --- /dev/null +++ b/.config/fish/completions/jotta-cli.fish @@ -0,0 +1,235 @@ +# fish completion for jotta-cli -*- shell-script -*- + +function __jotta_cli_debug + set -l file "$BASH_COMP_DEBUG_FILE" + if test -n "$file" + echo "$argv" >> $file + end +end + +function __jotta_cli_perform_completion + __jotta_cli_debug "Starting __jotta_cli_perform_completion" + + # Extract all args except the last one + set -l args (commandline -opc) + # Extract the last arg and escape it in case it is a space + set -l lastArg (string escape -- (commandline -ct)) + + __jotta_cli_debug "args: $args" + __jotta_cli_debug "last arg: $lastArg" + + # Disable ActiveHelp which is not supported for fish shell + set -l requestComp "JOTTA_CLI_ACTIVE_HELP=0 $args[1] __complete $args[2..-1] $lastArg" + + __jotta_cli_debug "Calling $requestComp" + set -l results (eval $requestComp 2> /dev/null) + + # Some programs may output extra empty lines after the directive. + # Let's ignore them or else it will break completion. + # Ref: https://github.com/spf13/cobra/issues/1279 + for line in $results[-1..1] + if test (string trim -- $line) = "" + # Found an empty line, remove it + set results $results[1..-2] + else + # Found non-empty line, we have our proper output + break + end + end + + set -l comps $results[1..-2] + set -l directiveLine $results[-1] + + # For Fish, when completing a flag with an = (e.g., -n=) + # completions must be prefixed with the flag + set -l flagPrefix (string match -r -- '-.*=' "$lastArg") + + __jotta_cli_debug "Comps: $comps" + __jotta_cli_debug "DirectiveLine: $directiveLine" + __jotta_cli_debug "flagPrefix: $flagPrefix" + + for comp in $comps + printf "%s%s\n" "$flagPrefix" "$comp" + end + + printf "%s\n" "$directiveLine" +end + +# this function limits calls to __jotta_cli_perform_completion, by caching the result behind $__jotta_cli_perform_completion_once_result +function __jotta_cli_perform_completion_once + __jotta_cli_debug "Starting __jotta_cli_perform_completion_once" + + if test -n "$__jotta_cli_perform_completion_once_result" + __jotta_cli_debug "Seems like a valid result already exists, skipping __jotta_cli_perform_completion" + return 0 + end + + set --global __jotta_cli_perform_completion_once_result (__jotta_cli_perform_completion) + if test -z "$__jotta_cli_perform_completion_once_result" + __jotta_cli_debug "No completions, probably due to a failure" + return 1 + end + + __jotta_cli_debug "Performed completions and set __jotta_cli_perform_completion_once_result" + return 0 +end + +# this function is used to clear the $__jotta_cli_perform_completion_once_result variable after completions are run +function __jotta_cli_clear_perform_completion_once_result + __jotta_cli_debug "" + __jotta_cli_debug "========= clearing previously set __jotta_cli_perform_completion_once_result variable ==========" + set --erase __jotta_cli_perform_completion_once_result + __jotta_cli_debug "Successfully erased the variable __jotta_cli_perform_completion_once_result" +end + +function __jotta_cli_requires_order_preservation + __jotta_cli_debug "" + __jotta_cli_debug "========= checking if order preservation is required ==========" + + __jotta_cli_perform_completion_once + if test -z "$__jotta_cli_perform_completion_once_result" + __jotta_cli_debug "Error determining if order preservation is required" + return 1 + end + + set -l directive (string sub --start 2 $__jotta_cli_perform_completion_once_result[-1]) + __jotta_cli_debug "Directive is: $directive" + + set -l shellCompDirectiveKeepOrder 32 + set -l keeporder (math (math --scale 0 $directive / $shellCompDirectiveKeepOrder) % 2) + __jotta_cli_debug "Keeporder is: $keeporder" + + if test $keeporder -ne 0 + __jotta_cli_debug "This does require order preservation" + return 0 + end + + __jotta_cli_debug "This doesn't require order preservation" + return 1 +end + + +# This function does two things: +# - Obtain the completions and store them in the global __jotta_cli_comp_results +# - Return false if file completion should be performed +function __jotta_cli_prepare_completions + __jotta_cli_debug "" + __jotta_cli_debug "========= starting completion logic ==========" + + # Start fresh + set --erase __jotta_cli_comp_results + + __jotta_cli_perform_completion_once + __jotta_cli_debug "Completion results: $__jotta_cli_perform_completion_once_result" + + if test -z "$__jotta_cli_perform_completion_once_result" + __jotta_cli_debug "No completion, probably due to a failure" + # Might as well do file completion, in case it helps + return 1 + end + + set -l directive (string sub --start 2 $__jotta_cli_perform_completion_once_result[-1]) + set --global __jotta_cli_comp_results $__jotta_cli_perform_completion_once_result[1..-2] + + __jotta_cli_debug "Completions are: $__jotta_cli_comp_results" + __jotta_cli_debug "Directive is: $directive" + + set -l shellCompDirectiveError 1 + set -l shellCompDirectiveNoSpace 2 + set -l shellCompDirectiveNoFileComp 4 + set -l shellCompDirectiveFilterFileExt 8 + set -l shellCompDirectiveFilterDirs 16 + + if test -z "$directive" + set directive 0 + end + + set -l compErr (math (math --scale 0 $directive / $shellCompDirectiveError) % 2) + if test $compErr -eq 1 + __jotta_cli_debug "Received error directive: aborting." + # Might as well do file completion, in case it helps + return 1 + end + + set -l filefilter (math (math --scale 0 $directive / $shellCompDirectiveFilterFileExt) % 2) + set -l dirfilter (math (math --scale 0 $directive / $shellCompDirectiveFilterDirs) % 2) + if test $filefilter -eq 1; or test $dirfilter -eq 1 + __jotta_cli_debug "File extension filtering or directory filtering not supported" + # Do full file completion instead + return 1 + end + + set -l nospace (math (math --scale 0 $directive / $shellCompDirectiveNoSpace) % 2) + set -l nofiles (math (math --scale 0 $directive / $shellCompDirectiveNoFileComp) % 2) + + __jotta_cli_debug "nospace: $nospace, nofiles: $nofiles" + + # If we want to prevent a space, or if file completion is NOT disabled, + # we need to count the number of valid completions. + # To do so, we will filter on prefix as the completions we have received + # may not already be filtered so as to allow fish to match on different + # criteria than the prefix. + if test $nospace -ne 0; or test $nofiles -eq 0 + set -l prefix (commandline -t | string escape --style=regex) + __jotta_cli_debug "prefix: $prefix" + + set -l completions (string match -r -- "^$prefix.*" $__jotta_cli_comp_results) + set --global __jotta_cli_comp_results $completions + __jotta_cli_debug "Filtered completions are: $__jotta_cli_comp_results" + + # Important not to quote the variable for count to work + set -l numComps (count $__jotta_cli_comp_results) + __jotta_cli_debug "numComps: $numComps" + + if test $numComps -eq 1; and test $nospace -ne 0 + # We must first split on \t to get rid of the descriptions to be + # able to check what the actual completion will be. + # We don't need descriptions anyway since there is only a single + # real completion which the shell will expand immediately. + set -l split (string split --max 1 \t $__jotta_cli_comp_results[1]) + + # Fish won't add a space if the completion ends with any + # of the following characters: @=/:., + set -l lastChar (string sub -s -1 -- $split) + if not string match -r -q "[@=/:.,]" -- "$lastChar" + # In other cases, to support the "nospace" directive we trick the shell + # by outputting an extra, longer completion. + __jotta_cli_debug "Adding second completion to perform nospace directive" + set --global __jotta_cli_comp_results $split[1] $split[1]. + __jotta_cli_debug "Completions are now: $__jotta_cli_comp_results" + end + end + + if test $numComps -eq 0; and test $nofiles -eq 0 + # To be consistent with bash and zsh, we only trigger file + # completion when there are no other completions + __jotta_cli_debug "Requesting file completion" + return 1 + end + end + + return 0 +end + +# Since Fish completions are only loaded once the user triggers them, we trigger them ourselves +# so we can properly delete any completions provided by another script. +# Only do this if the program can be found, or else fish may print some errors; besides, +# the existing completions will only be loaded if the program can be found. +if type -q "jotta-cli" + # The space after the program name is essential to trigger completion for the program + # and not completion of the program name itself. + # Also, we use '> /dev/null 2>&1' since '&>' is not supported in older versions of fish. + complete --do-complete "jotta-cli " > /dev/null 2>&1 +end + +# Remove any pre-existing completions for the program since we will be handling all of them. +complete -c jotta-cli -e + +# this will get called after the two calls below and clear the $__jotta_cli_perform_completion_once_result global +complete -c jotta-cli -n '__jotta_cli_clear_perform_completion_once_result' +# The call to __jotta_cli_prepare_completions will setup __jotta_cli_comp_results +# which provides the program's completion choices. +# If this doesn't require order preservation, we don't use the -k flag +complete -c jotta-cli -n 'not __jotta_cli_requires_order_preservation && __jotta_cli_prepare_completions' -f -a '$__jotta_cli_comp_results' +# otherwise we use the -k flag +complete -k -c jotta-cli -n '__jotta_cli_requires_order_preservation && __jotta_cli_prepare_completions' -f -a '$__jotta_cli_comp_results' diff --git a/obs-settings/Settings-files/logs/2025-11-28 17-26-24.txt b/obs-settings/Settings-files/logs/2025-11-28 17-26-24.txt deleted file mode 100644 index 6c82795..0000000 --- a/obs-settings/Settings-files/logs/2025-11-28 17-26-24.txt +++ /dev/null @@ -1,314 +0,0 @@ -17:26:24.525: Platform: Wayland -17:26:24.525: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -17:26:24.525: CPU Speed: 4381.008MHz -17:26:24.525: Physical Cores: 8, Logical Cores: 8 -17:26:24.525: Physical Memory: 31168MB Total, 231MB Free -17:26:24.525: Kernel Version: Linux 6.17.9-1-default -17:26:24.525: Flatpak Branch: stable -17:26:24.525: Flatpak Arch: x86_64 -17:26:24.525: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -17:26:24.525: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -17:26:24.525: App Extensions: -17:26:24.525: - com.obsproject.Studio.Plugin.OBSVkCapture -17:26:24.525: - com.obsproject.Studio.Plugin.SourceClone -17:26:24.525: - com.obsproject.Studio.Plugin.SourceRecord -17:26:24.526: - com.obsproject.Studio.Plugin.WaylandHotkeys -17:26:24.526: - org.freedesktop.LinuxAudio.Plugins.TAP -17:26:24.526: - org.freedesktop.LinuxAudio.Plugins.swh -17:26:24.526: - com.obsproject.Studio.Locale -17:26:24.526: Runtime Extensions: -17:26:24.526: - org.freedesktop.Platform.GL.default -17:26:24.526: - org.freedesktop.Platform.openh264 -17:26:24.526: - org.gtk.Gtk3theme.Breeze -17:26:24.526: - org.kde.Platform.Locale -17:26:24.526: - org.freedesktop.Platform.GL.default -17:26:24.526: Flatpak Framework Version: 1.16.1 -17:26:24.526: Desktop Environment: KDE (KDE) -17:26:24.526: Session Type: wayland -17:26:24.527: Current Date/Time: 2025-11-28, 17:26:24 -17:26:24.527: Browser Hardware Acceleration: true -17:26:24.527: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -17:26:24.527: Portable mode: false -17:26:24.566: OBS 32.0.2 (linux) -17:26:24.566: --------------------------------- -17:26:24.567: --------------------------------- -17:26:24.567: audio settings reset: -17:26:24.567: samples per sec: 48000 -17:26:24.567: speakers: 2 -17:26:24.567: max buffering: 960 milliseconds -17:26:24.567: buffering type: dynamically increasing -17:26:24.569: --------------------------------- -17:26:24.569: Initializing OpenGL... -17:26:24.569: Using EGL/Wayland -17:26:24.575: Initialized EGL 1.5 -17:26:24.587: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -17:26:24.587: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -17:26:24.615: --------------------------------- -17:26:24.615: video settings reset: -17:26:24.615: base resolution: 3440x1440 -17:26:24.615: output resolution: 3440x1440 -17:26:24.615: downscale filter: Bicubic -17:26:24.615: fps: 60/1 -17:26:24.615: format: NV12 -17:26:24.615: YUV mode: Rec. 709/Partial -17:26:24.615: NV12 texture support enabled -17:26:24.615: P010 texture support not available -17:26:24.623: Audio monitoring device: -17:26:24.623: name: Default -17:26:24.623: id: default -17:26:24.625: --------------------------------- -17:26:24.639: No AJA devices found, skipping loading AJA UI plugin -17:26:24.639: Failed to initialize module 'aja-output-ui.so' -17:26:24.650: No AJA devices found, skipping loading AJA plugin -17:26:24.650: Failed to initialize module 'aja.so' -17:26:24.940: [pipewire] Available capture sources: -17:26:24.940: [pipewire] - Monitor source -17:26:24.940: [pipewire] - Window source -17:26:24.965: v4l2loopback not installed, virtual camera not registered -17:26:24.968: [obs-browser]: Version 2.26.3 -17:26:24.968: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -17:26:24.980: VAAPI: API version 1.22 -17:26:24.981: FFmpeg VAAPI H264 encoding supported -17:26:24.985: FFmpeg VAAPI AV1 encoding supported -17:26:24.988: FFmpeg VAAPI HEVC encoding supported -17:26:24.994: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -17:26:24.994: -17:26:24.994: NVENC not supported -17:26:24.994: Failed to initialize module 'obs-nvenc.so' -17:26:25.030: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -17:26:25.030: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -17:26:25.030: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -17:26:25.033: [obs-websocket] [obs_module_load] Module loaded. -17:26:25.042: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -17:26:25.048: [Source Clone] loaded version 0.2.0 -17:26:25.049: [Source Record] loaded version 0.4.6 -17:26:25.049: --------------------------------- -17:26:25.050: Loaded Modules: -17:26:25.050: source-record.so -17:26:25.050: source-clone.so -17:26:25.050: obs-wayland-hotkeys.so -17:26:25.050: linux-vkcapture.so -17:26:25.050: text-freetype2.so -17:26:25.050: rtmp-services.so -17:26:25.050: obs-x264.so -17:26:25.050: obs-websocket.so -17:26:25.050: obs-webrtc.so -17:26:25.050: obs-vst.so -17:26:25.050: obs-transitions.so -17:26:25.050: obs-qsv11.so -17:26:25.050: obs-outputs.so -17:26:25.050: obs-libfdk.so -17:26:25.050: obs-filters.so -17:26:25.050: obs-ffmpeg.so -17:26:25.050: obs-browser.so -17:26:25.050: linux-v4l2.so -17:26:25.050: linux-pulseaudio.so -17:26:25.050: linux-pipewire.so -17:26:25.050: linux-jack.so -17:26:25.050: linux-capture.so -17:26:25.050: image-source.so -17:26:25.050: frontend-tools.so -17:26:25.050: --------------------------------- -17:26:25.051: --------------------------------- -17:26:25.051: Available Encoders: -17:26:25.051: Video Encoders: -17:26:25.051: - ffmpeg_svt_av1 (SVT-AV1) -17:26:25.051: - ffmpeg_aom_av1 (AOM AV1) -17:26:25.051: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -17:26:25.051: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -17:26:25.051: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -17:26:25.051: - obs_x264 (x264) -17:26:25.051: Audio Encoders: -17:26:25.051: - ffmpeg_aac (FFmpeg AAC) -17:26:25.051: - ffmpeg_opus (FFmpeg Opus) -17:26:25.051: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -17:26:25.051: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -17:26:25.051: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -17:26:25.051: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -17:26:25.051: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -17:26:25.051: - libfdk_aac (libfdk AAC) -17:26:25.051: ==== Startup complete =============================================== -17:26:25.081: All scene data cleared -17:26:25.081: ------------------------------------------------ -17:26:25.085: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:26:25.085: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -17:26:25.085: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -17:26:25.085: [Loaded global audio device]: 'Desktop Audio' -17:26:25.085: - filter: 'Compressor' (compressor_filter) -17:26:25.085: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:26:25.085: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -17:26:25.085: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -17:26:25.085: [Loaded global audio device]: 'Mic/Aux' -17:26:25.086: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -17:26:25.086: - filter: 'Compressor' (compressor_filter) -17:26:25.086: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:26:25.086: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:26:25.086: pulse-input: Started recording from 'GameSink.monitor' -17:26:25.086: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:26:25.086: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:26:25.086: pulse-input: Started recording from 'DiscordSink.monitor' -17:26:25.087: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:26:25.087: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:26:25.087: pulse-input: Started recording from 'MusicSink.monitor' -17:26:25.087: PipeWire initialized -17:26:25.087: PipeWire initialized -17:26:25.087: v4l2-input: Start capture from /dev/video0 -17:26:25.101: Device for 'Audio Output Capture' source is also used for audio monitoring: -17:26:25.101: Deduplication logic is being applied to all monitored sources. -17:26:25.101: -17:26:25.194: v4l2-input: Input: 0 -17:26:25.224: v4l2-input: Resolution: 864x480 -17:26:25.224: v4l2-input: Pixelformat: YUYV -17:26:25.224: v4l2-input: Linesize: 1728 Bytes -17:26:25.239: v4l2-input: Framerate: 24.00 fps -17:26:25.239: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -17:26:25.240: Switched to scene 'Scene' -17:26:25.240: ------------------------------------------------ -17:26:25.240: Loaded scenes: -17:26:25.240: - scene 'Scene': -17:26:25.240: - source: 'Game Sink' (pulse_output_capture) -17:26:25.240: - source: 'Discord Sink' (pulse_output_capture) -17:26:25.240: - source: 'Music Sink' (pulse_output_capture) -17:26:25.241: - source: 'App' (pipewire-screen-capture-source) -17:26:25.241: - source: 'Screen' (pipewire-screen-capture-source) -17:26:25.241: - source: 'Cam' (v4l2_input) -17:26:25.241: - scene 'Cam Scene': -17:26:25.241: - source: 'Cam' (v4l2_input) -17:26:25.241: - source: 'Game Sink' (pulse_output_capture) -17:26:25.241: - source: 'Discord Sink' (pulse_output_capture) -17:26:25.241: - source: 'Music Sink' (pulse_output_capture) -17:26:25.241: ------------------------------------------------ -17:26:25.313: [pipewire] Screencast session created -17:26:25.313: [pipewire] Screencast session created -17:26:25.362: [pipewire] Asking for monitor and window -17:26:25.362: [pipewire] Asking for monitor and window -17:26:25.381: [pipewire] source selected, setting up screencast -17:26:25.385: [pipewire] source selected, setting up screencast -17:26:25.398: [pipewire] Server version: 1.5.83 -17:26:25.398: [pipewire] Library version: 1.2.4 -17:26:25.398: [pipewire] Header version: 1.2.4 -17:26:25.398: [pipewire] Created stream 0x5638ee626260 -17:26:25.398: [pipewire] Stream 0x5638ee626260 state: "connecting" (error: none) -17:26:25.398: [pipewire] Playing stream 0x5638ee626260 -17:26:25.405: [pipewire] Stream 0x5638ee626260 state: "paused" (error: none) -17:26:25.406: [pipewire] Server version: 1.5.83 -17:26:25.406: [pipewire] Library version: 1.2.4 -17:26:25.406: [pipewire] Header version: 1.2.4 -17:26:25.406: [pipewire] Created stream 0x5638ee653930 -17:26:25.406: [pipewire] Stream 0x5638ee653930 state: "connecting" (error: none) -17:26:25.406: [pipewire] Playing stream 0x5638ee653930 -17:26:25.406: [pipewire] Stream 0x5638ee653930 state: "paused" (error: none) -17:26:25.414: [pipewire] Negotiated format: -17:26:25.414: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:26:25.414: [pipewire] Modifier: 0x0 -17:26:25.414: [pipewire] Size: 1922x1145 -17:26:25.414: [pipewire] Framerate: 0/1 -17:26:25.415: [pipewire] Negotiated format: -17:26:25.415: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:26:25.415: [pipewire] Modifier: 0x200000028a6bf04 -17:26:25.415: [pipewire] Size: 1922x1145 -17:26:25.415: [pipewire] Framerate: 0/1 -17:26:25.416: [pipewire] Stream 0x5638ee626260 state: "streaming" (error: none) -17:26:25.431: [pipewire] Negotiated format: -17:26:25.431: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:26:25.431: [pipewire] Modifier: 0x0 -17:26:25.431: [pipewire] Size: 3440x1440 -17:26:25.431: [pipewire] Framerate: 0/1 -17:26:25.431: [pipewire] Negotiated format: -17:26:25.431: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:26:25.431: [pipewire] Modifier: 0x200000028a37f04 -17:26:25.431: [pipewire] Size: 3440x1440 -17:26:25.431: [pipewire] Framerate: 0/1 -17:26:25.432: [pipewire] Stream 0x5638ee653930 state: "streaming" (error: none) -17:26:25.655: adding 42 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Desktop Audio) -17:26:25.655: -17:26:25.741: adding 21 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -17:26:25.741: -17:33:36.595: [pipewire] Stream 0x5638ee626260 state: "paused" (error: none) -17:33:38.024: ==== Shutting down ================================================== -17:33:38.027: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -17:33:38.027: pulse-input: Got 17316 packets with 20779200 frames -17:33:38.027: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -17:33:38.027: pulse-input: Got 17313 packets with 20775600 frames -17:33:38.027: [pipewire] Stream 0x5638ee626260 state: "unconnected" (error: none) -17:33:38.028: [pipewire] Stream 0x5638ee653930 state: "paused" (error: none) -17:33:38.029: [pipewire] Stream 0x5638ee653930 state: "unconnected" (error: none) -17:33:38.095: v4l2-input: /dev/video0: Stopped capture after 6505 frames -17:33:38.148: pulse-input: Stopped recording from 'GameSink.monitor' -17:33:38.148: pulse-input: Got 17318 packets with 20781600 frames -17:33:38.148: pulse-input: Stopped recording from 'DiscordSink.monitor' -17:33:38.148: pulse-input: Got 17319 packets with 20782800 frames -17:33:38.148: pulse-input: Stopped recording from 'MusicSink.monitor' -17:33:38.148: pulse-input: Got 17319 packets with 20782800 frames -17:33:38.168: All scene data cleared -17:33:38.168: ------------------------------------------------ -17:33:38.210: [linux-vkcapture] plugin unloaded -17:33:38.211: [obs-websocket] [obs_module_unload] Shutting down... -17:33:38.211: Tried to call obs_frontend_remove_event_callback with no callbacks! -17:33:38.211: [obs-websocket] [obs_module_unload] Finished shutting down. -17:33:38.216: [Scripting] Total detached callbacks: 0 -17:33:38.216: Freeing OBS context data -17:33:38.227: == Profiler Results ============================= -17:33:38.227: run_program_init: 1304.12 ms -17:33:38.227: ┣OBSApp::AppInit: 15.125 ms -17:33:38.227: ┃ ┗OBSApp::InitLocale: 1.614 ms -17:33:38.227: ┗OBSApp::OBSInit: 770.654 ms -17:33:38.227: ┣obs_startup: 1.704 ms -17:33:38.227: ┗OBSBasic::OBSInit: 729.249 ms -17:33:38.227: ┣OBSBasic::InitBasicConfig: 0.668 ms -17:33:38.227: ┣OBSBasic::ResetAudio: 0.179 ms -17:33:38.227: ┣OBSBasic::ResetVideo: 55.41 ms -17:33:38.227: ┃ ┗obs_init_graphics: 47.178 ms -17:33:38.227: ┃ ┗shader compilation: 26.868 ms -17:33:38.227: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -17:33:38.227: ┣OBSBasic::InitHotkeys: 0.011 ms -17:33:38.227: ┣obs_load_all_modules2: 424.883 ms -17:33:38.227: ┃ ┣obs_init_module(aja-output-ui.so): 0.055 ms -17:33:38.227: ┃ ┣obs_init_module(aja.so): 0.043 ms -17:33:38.227: ┃ ┣obs_init_module(frontend-tools.so): 72.099 ms -17:33:38.227: ┃ ┣obs_init_module(image-source.so): 0.004 ms -17:33:38.227: ┃ ┣obs_init_module(linux-capture.so): 0 ms -17:33:38.227: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -17:33:38.227: ┃ ┣obs_init_module(linux-pipewire.so): 9.844 ms -17:33:38.227: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -17:33:38.227: ┃ ┣obs_init_module(linux-v4l2.so): 21.076 ms -17:33:38.227: ┃ ┣obs_init_module(obs-browser.so): 0.04 ms -17:33:38.227: ┃ ┣obs_init_module(obs-ffmpeg.so): 17.493 ms -17:33:38.227: ┃ ┣obs_init_module(obs-filters.so): 0.01 ms -17:33:38.227: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms -17:33:38.227: ┃ ┣obs_init_module(obs-nvenc.so): 0.084 ms -17:33:38.227: ┃ ┃ ┗nvenc_check: 0.067 ms -17:33:38.227: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -17:33:38.227: ┃ ┣obs_init_module(obs-qsv11.so): 11.877 ms -17:33:38.227: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -17:33:38.227: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -17:33:38.227: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms -17:33:38.227: ┃ ┣obs_init_module(obs-websocket.so): 3.038 ms -17:33:38.227: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -17:33:38.227: ┃ ┣obs_init_module(rtmp-services.so): 1.034 ms -17:33:38.227: ┃ ┣obs_init_module(text-freetype2.so): 0.011 ms -17:33:38.227: ┃ ┣obs_init_module(linux-vkcapture.so): 0.055 ms -17:33:38.227: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -17:33:38.227: ┃ ┣obs_init_module(source-clone.so): 0.02 ms -17:33:38.227: ┃ ┗obs_init_module(source-record.so): 0.032 ms -17:33:38.227: ┣OBSBasic::InitService: 1.568 ms -17:33:38.227: ┣OBSBasic::ResetOutputs: 3.287 ms -17:33:38.227: ┣OBSBasic::CreateHotkeys: 0.015 ms -17:33:38.227: ┣OBSBasic::InitPrimitives: 0.051 ms -17:33:38.227: ┗OBSBasic::Load: 190.252 ms -17:33:38.227: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.011 ms, 99th percentile=0 ms, 100% below 25 ms -17:33:38.227: audio_thread(Audio): min=0.003 ms, median=0.042 ms, max=1.033 ms, 99th percentile=0.092 ms -17:33:38.227: obs_graphics_thread(16.6667 ms): min=0.047 ms, median=0.184 ms, max=600.216 ms, 99th percentile=0.415 ms, 99.9769% below 16.667 ms -17:33:38.227: ┣tick_sources: min=0 ms, median=0.003 ms, max=0.312 ms, 99th percentile=0.009 ms -17:33:38.227: ┣output_frame: min=0.037 ms, median=0.108 ms, max=5.738 ms, 99th percentile=0.24 ms -17:33:38.227: ┃ ┗gs_context(video->graphics): min=0.036 ms, median=0.107 ms, max=5.738 ms, 99th percentile=0.24 ms -17:33:38.227: ┃ ┣render_video: min=0.006 ms, median=0.103 ms, max=5.732 ms, 99th percentile=0.224 ms -17:33:38.227: ┃ ┃ ┗render_main_texture: min=0.005 ms, median=0.101 ms, max=5.723 ms, 99th percentile=0.221 ms -17:33:38.227: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=1.8 ms, 99th percentile=0.035 ms -17:33:38.227: ┗render_displays: min=0.002 ms, median=0.061 ms, max=600.086 ms, 99th percentile=0.175 ms -17:33:38.227: ================================================= -17:33:38.227: == Profiler Time Between Calls ================== -17:33:38.227: obs_hotkey_thread(25 ms): min=25.005 ms, median=25.055 ms, max=28.971 ms, 99.844% within ±2% of 25 ms (0% lower, 0.156015% higher) -17:33:38.227: obs_graphics_thread(16.6667 ms): min=1.467 ms, median=16.667 ms, max=600.221 ms, 99.6532% within ±2% of 16.667 ms (0.173377% lower, 0.173377% higher) -17:33:38.228: ================================================= -17:33:38.231: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-28 17-37-05.txt b/obs-settings/Settings-files/logs/2025-11-28 17-37-05.txt deleted file mode 100644 index 1796c49..0000000 --- a/obs-settings/Settings-files/logs/2025-11-28 17-37-05.txt +++ /dev/null @@ -1,296 +0,0 @@ -17:37:05.650: Platform: Wayland -17:37:05.650: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -17:37:05.650: CPU Speed: 5014.871MHz -17:37:05.650: Physical Cores: 8, Logical Cores: 8 -17:37:05.650: Physical Memory: 31168MB Total, 16605MB Free -17:37:05.650: Kernel Version: Linux 6.17.9-1-default -17:37:05.650: Flatpak Branch: stable -17:37:05.650: Flatpak Arch: x86_64 -17:37:05.650: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -17:37:05.650: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -17:37:05.650: App Extensions: -17:37:05.650: - com.obsproject.Studio.Plugin.OBSVkCapture -17:37:05.650: - com.obsproject.Studio.Plugin.SourceClone -17:37:05.650: - com.obsproject.Studio.Plugin.SourceRecord -17:37:05.650: - com.obsproject.Studio.Plugin.WaylandHotkeys -17:37:05.650: - org.freedesktop.LinuxAudio.Plugins.TAP -17:37:05.650: - org.freedesktop.LinuxAudio.Plugins.swh -17:37:05.650: - com.obsproject.Studio.Locale -17:37:05.650: Runtime Extensions: -17:37:05.650: - org.freedesktop.Platform.GL.default -17:37:05.650: - org.freedesktop.Platform.openh264 -17:37:05.650: - org.gtk.Gtk3theme.Breeze -17:37:05.650: - org.kde.Platform.Locale -17:37:05.650: - org.freedesktop.Platform.GL.default -17:37:05.650: Flatpak Framework Version: 1.16.1 -17:37:05.651: Desktop Environment: KDE (KDE) -17:37:05.651: Session Type: wayland -17:37:05.652: Current Date/Time: 2025-11-28, 17:37:05 -17:37:05.652: Browser Hardware Acceleration: true -17:37:05.652: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -17:37:05.652: Portable mode: false -17:37:05.690: OBS 32.0.2 (linux) -17:37:05.690: --------------------------------- -17:37:05.691: --------------------------------- -17:37:05.691: audio settings reset: -17:37:05.691: samples per sec: 48000 -17:37:05.691: speakers: 2 -17:37:05.691: max buffering: 960 milliseconds -17:37:05.691: buffering type: dynamically increasing -17:37:05.692: --------------------------------- -17:37:05.692: Initializing OpenGL... -17:37:05.692: Using EGL/Wayland -17:37:05.698: Initialized EGL 1.5 -17:37:05.709: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -17:37:05.709: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -17:37:05.734: --------------------------------- -17:37:05.734: video settings reset: -17:37:05.734: base resolution: 3440x1440 -17:37:05.734: output resolution: 3440x1440 -17:37:05.734: downscale filter: Bicubic -17:37:05.734: fps: 60/1 -17:37:05.734: format: NV12 -17:37:05.734: YUV mode: Rec. 709/Partial -17:37:05.734: NV12 texture support enabled -17:37:05.734: P010 texture support not available -17:37:05.737: Audio monitoring device: -17:37:05.737: name: Default -17:37:05.737: id: default -17:37:05.738: --------------------------------- -17:37:05.752: No AJA devices found, skipping loading AJA UI plugin -17:37:05.752: Failed to initialize module 'aja-output-ui.so' -17:37:05.764: No AJA devices found, skipping loading AJA plugin -17:37:05.764: Failed to initialize module 'aja.so' -17:37:06.056: [pipewire] Available capture sources: -17:37:06.056: [pipewire] - Monitor source -17:37:06.056: [pipewire] - Window source -17:37:06.081: v4l2loopback not installed, virtual camera not registered -17:37:06.085: [obs-browser]: Version 2.26.3 -17:37:06.085: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -17:37:06.096: VAAPI: API version 1.22 -17:37:06.098: FFmpeg VAAPI H264 encoding supported -17:37:06.102: FFmpeg VAAPI AV1 encoding supported -17:37:06.105: FFmpeg VAAPI HEVC encoding supported -17:37:06.112: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -17:37:06.112: -17:37:06.112: NVENC not supported -17:37:06.112: Failed to initialize module 'obs-nvenc.so' -17:37:06.147: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -17:37:06.147: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -17:37:06.147: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -17:37:06.150: [obs-websocket] [obs_module_load] Module loaded. -17:37:06.155: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -17:37:06.162: [Source Clone] loaded version 0.2.0 -17:37:06.163: [Source Record] loaded version 0.4.6 -17:37:06.163: --------------------------------- -17:37:06.163: Loaded Modules: -17:37:06.163: source-record.so -17:37:06.163: source-clone.so -17:37:06.163: obs-wayland-hotkeys.so -17:37:06.163: linux-vkcapture.so -17:37:06.163: text-freetype2.so -17:37:06.163: rtmp-services.so -17:37:06.163: obs-x264.so -17:37:06.163: obs-websocket.so -17:37:06.163: obs-webrtc.so -17:37:06.163: obs-vst.so -17:37:06.163: obs-transitions.so -17:37:06.163: obs-qsv11.so -17:37:06.163: obs-outputs.so -17:37:06.163: obs-libfdk.so -17:37:06.163: obs-filters.so -17:37:06.163: obs-ffmpeg.so -17:37:06.163: obs-browser.so -17:37:06.163: linux-v4l2.so -17:37:06.163: linux-pulseaudio.so -17:37:06.163: linux-pipewire.so -17:37:06.163: linux-jack.so -17:37:06.163: linux-capture.so -17:37:06.163: image-source.so -17:37:06.163: frontend-tools.so -17:37:06.163: --------------------------------- -17:37:06.164: --------------------------------- -17:37:06.164: Available Encoders: -17:37:06.164: Video Encoders: -17:37:06.164: - ffmpeg_svt_av1 (SVT-AV1) -17:37:06.164: - ffmpeg_aom_av1 (AOM AV1) -17:37:06.164: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -17:37:06.164: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -17:37:06.164: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -17:37:06.164: - obs_x264 (x264) -17:37:06.164: Audio Encoders: -17:37:06.164: - ffmpeg_aac (FFmpeg AAC) -17:37:06.164: - ffmpeg_opus (FFmpeg Opus) -17:37:06.164: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -17:37:06.164: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -17:37:06.164: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -17:37:06.164: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -17:37:06.164: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -17:37:06.164: - libfdk_aac (libfdk AAC) -17:37:06.164: ==== Startup complete =============================================== -17:37:06.204: All scene data cleared -17:37:06.204: ------------------------------------------------ -17:37:06.209: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:37:06.209: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -17:37:06.209: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -17:37:06.209: [Loaded global audio device]: 'Desktop Audio' -17:37:06.209: - filter: 'Compressor' (compressor_filter) -17:37:06.209: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:37:06.209: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -17:37:06.209: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -17:37:06.209: [Loaded global audio device]: 'Mic/Aux' -17:37:06.209: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -17:37:06.210: - filter: 'Compressor' (compressor_filter) -17:37:06.210: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:37:06.210: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:37:06.210: pulse-input: Started recording from 'GameSink.monitor' -17:37:06.210: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:37:06.210: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:37:06.210: pulse-input: Started recording from 'DiscordSink.monitor' -17:37:06.210: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:37:06.211: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:37:06.211: pulse-input: Started recording from 'MusicSink.monitor' -17:37:06.211: PipeWire initialized -17:37:06.211: PipeWire initialized -17:37:06.211: v4l2-input: Start capture from /dev/video0 -17:37:06.224: Device for 'Audio Output Capture' source is also used for audio monitoring: -17:37:06.224: Deduplication logic is being applied to all monitored sources. -17:37:06.224: -17:37:06.320: v4l2-input: Input: 0 -17:37:06.350: v4l2-input: Resolution: 864x480 -17:37:06.350: v4l2-input: Pixelformat: YUYV -17:37:06.350: v4l2-input: Linesize: 1728 Bytes -17:37:06.365: v4l2-input: Framerate: 24.00 fps -17:37:06.365: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -17:37:06.367: Switched to scene 'Scene' -17:37:06.367: ------------------------------------------------ -17:37:06.367: Loaded scenes: -17:37:06.367: - scene 'Scene': -17:37:06.367: - source: 'Game Sink' (pulse_output_capture) -17:37:06.367: - source: 'Discord Sink' (pulse_output_capture) -17:37:06.367: - source: 'Music Sink' (pulse_output_capture) -17:37:06.367: - source: 'App' (pipewire-screen-capture-source) -17:37:06.367: - source: 'Screen' (pipewire-screen-capture-source) -17:37:06.367: - source: 'Cam' (v4l2_input) -17:37:06.367: - scene 'Cam Scene': -17:37:06.367: - source: 'Cam' (v4l2_input) -17:37:06.367: - source: 'Game Sink' (pulse_output_capture) -17:37:06.367: - source: 'Discord Sink' (pulse_output_capture) -17:37:06.367: - source: 'Music Sink' (pulse_output_capture) -17:37:06.367: ------------------------------------------------ -17:37:06.434: [pipewire] Screencast session created -17:37:06.434: [pipewire] Screencast session created -17:37:06.479: [pipewire] Asking for monitor and window -17:37:06.479: [pipewire] Asking for monitor and window -17:37:06.672: [pipewire] source selected, setting up screencast -17:37:06.684: [pipewire] Server version: 1.5.83 -17:37:06.684: [pipewire] Library version: 1.2.4 -17:37:06.684: [pipewire] Header version: 1.2.4 -17:37:06.684: [pipewire] Created stream 0x561d2a9865d0 -17:37:06.684: [pipewire] Stream 0x561d2a9865d0 state: "connecting" (error: none) -17:37:06.684: [pipewire] Playing stream 0x561d2a9865d0 -17:37:06.685: [pipewire] Stream 0x561d2a9865d0 state: "paused" (error: none) -17:37:06.715: [pipewire] Negotiated format: -17:37:06.715: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:37:06.715: [pipewire] Modifier: 0x0 -17:37:06.715: [pipewire] Size: 3440x1440 -17:37:06.715: [pipewire] Framerate: 0/1 -17:37:06.716: [pipewire] Negotiated format: -17:37:06.716: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:37:06.716: [pipewire] Modifier: 0x200000028a37f04 -17:37:06.716: [pipewire] Size: 3440x1440 -17:37:06.716: [pipewire] Framerate: 0/1 -17:37:06.723: [pipewire] Stream 0x561d2a9865d0 state: "streaming" (error: none) -17:37:06.779: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -17:37:06.779: -17:37:06.864: adding 42 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -17:37:06.864: -17:37:11.020: [pipewire] Failed to start screencast, denied or cancelled by user -17:40:20.656: adding 85 milliseconds of audio buffering, total audio buffering is now 149 milliseconds (source: Mic/Aux) -17:40:20.656: -18:10:07.561: ==== Shutting down ================================================== -18:10:07.564: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -18:10:07.564: pulse-input: Got 79252 packets with 95102400 frames -18:10:07.564: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -18:10:07.564: pulse-input: Got 79246 packets with 95095200 frames -18:10:07.564: [pipewire] Stream 0x561d2a9865d0 state: "paused" (error: none) -18:10:07.564: [pipewire] Stream 0x561d2a9865d0 state: "unconnected" (error: none) -18:10:07.599: v4l2-input: /dev/video0: Stopped capture after 29716 frames -18:10:07.652: pulse-input: Stopped recording from 'GameSink.monitor' -18:10:07.652: pulse-input: Got 79254 packets with 95104800 frames -18:10:07.652: pulse-input: Stopped recording from 'DiscordSink.monitor' -18:10:07.652: pulse-input: Got 79255 packets with 95106000 frames -18:10:07.652: pulse-input: Stopped recording from 'MusicSink.monitor' -18:10:07.652: pulse-input: Got 79255 packets with 95106000 frames -18:10:07.686: All scene data cleared -18:10:07.686: ------------------------------------------------ -18:10:07.728: [linux-vkcapture] plugin unloaded -18:10:07.729: [obs-websocket] [obs_module_unload] Shutting down... -18:10:07.729: Tried to call obs_frontend_remove_event_callback with no callbacks! -18:10:07.729: [obs-websocket] [obs_module_unload] Finished shutting down. -18:10:07.733: [Scripting] Total detached callbacks: 0 -18:10:07.733: Freeing OBS context data -18:10:07.741: == Profiler Results ============================= -18:10:07.741: run_program_init: 1303.78 ms -18:10:07.741: ┣OBSApp::AppInit: 13.565 ms -18:10:07.741: ┃ ┗OBSApp::InitLocale: 1.53 ms -18:10:07.741: ┗OBSApp::OBSInit: 766.639 ms -18:10:07.741: ┣obs_startup: 1.72 ms -18:10:07.741: ┗OBSBasic::OBSInit: 726.673 ms -18:10:07.741: ┣OBSBasic::InitBasicConfig: 0.655 ms -18:10:07.741: ┣OBSBasic::ResetAudio: 0.158 ms -18:10:07.741: ┣OBSBasic::ResetVideo: 45.845 ms -18:10:07.741: ┃ ┗obs_init_graphics: 43.186 ms -18:10:07.741: ┃ ┗shader compilation: 24.649 ms -18:10:07.741: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -18:10:07.741: ┣OBSBasic::InitHotkeys: 0.01 ms -18:10:07.741: ┣obs_load_all_modules2: 424.533 ms -18:10:07.741: ┃ ┣obs_init_module(aja-output-ui.so): 0.047 ms -18:10:07.741: ┃ ┣obs_init_module(aja.so): 0.041 ms -18:10:07.741: ┃ ┣obs_init_module(frontend-tools.so): 71.525 ms -18:10:07.741: ┃ ┣obs_init_module(image-source.so): 0.004 ms -18:10:07.741: ┃ ┣obs_init_module(linux-capture.so): 0 ms -18:10:07.741: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -18:10:07.741: ┃ ┣obs_init_module(linux-pipewire.so): 9.704 ms -18:10:07.741: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -18:10:07.741: ┃ ┣obs_init_module(linux-v4l2.so): 21.711 ms -18:10:07.741: ┃ ┣obs_init_module(obs-browser.so): 0.041 ms -18:10:07.741: ┃ ┣obs_init_module(obs-ffmpeg.so): 17.919 ms -18:10:07.741: ┃ ┣obs_init_module(obs-filters.so): 0.011 ms -18:10:07.741: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms -18:10:07.741: ┃ ┣obs_init_module(obs-nvenc.so): 0.119 ms -18:10:07.741: ┃ ┃ ┗nvenc_check: 0.092 ms -18:10:07.741: ┃ ┣obs_init_module(obs-outputs.so): 0.003 ms -18:10:07.741: ┃ ┣obs_init_module(obs-qsv11.so): 12.202 ms -18:10:07.741: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -18:10:07.741: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -18:10:07.741: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms -18:10:07.741: ┃ ┣obs_init_module(obs-websocket.so): 2.824 ms -18:10:07.741: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -18:10:07.741: ┃ ┣obs_init_module(rtmp-services.so): 0.918 ms -18:10:07.741: ┃ ┣obs_init_module(text-freetype2.so): 0.01 ms -18:10:07.741: ┃ ┣obs_init_module(linux-vkcapture.so): 0.049 ms -18:10:07.741: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -18:10:07.741: ┃ ┣obs_init_module(source-clone.so): 0.018 ms -18:10:07.741: ┃ ┗obs_init_module(source-record.so): 0.03 ms -18:10:07.741: ┣OBSBasic::InitService: 1.533 ms -18:10:07.741: ┣OBSBasic::ResetOutputs: 2.99 ms -18:10:07.741: ┣OBSBasic::CreateHotkeys: 0.015 ms -18:10:07.741: ┣OBSBasic::InitPrimitives: 0.049 ms -18:10:07.741: ┗OBSBasic::Load: 202.597 ms -18:10:07.741: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.152 ms, 99th percentile=0 ms, 100% below 25 ms -18:10:07.741: audio_thread(Audio): min=0.003 ms, median=0.049 ms, max=3.894 ms, 99th percentile=0.089 ms -18:10:07.741: obs_graphics_thread(16.6667 ms): min=0.044 ms, median=0.18 ms, max=32.898 ms, 99th percentile=0.392 ms, 99.9992% below 16.667 ms -18:10:07.741: ┣tick_sources: min=0 ms, median=0.003 ms, max=0.33 ms, 99th percentile=0.007 ms -18:10:07.741: ┣output_frame: min=0.033 ms, median=0.095 ms, max=5.739 ms, 99th percentile=0.199 ms -18:10:07.741: ┃ ┗gs_context(video->graphics): min=0.033 ms, median=0.095 ms, max=5.739 ms, 99th percentile=0.199 ms -18:10:07.741: ┃ ┣render_video: min=0.006 ms, median=0.092 ms, max=5.735 ms, 99th percentile=0.193 ms -18:10:07.741: ┃ ┃ ┗render_main_texture: min=0.005 ms, median=0.091 ms, max=5.732 ms, 99th percentile=0.19 ms -18:10:07.741: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=2.755 ms, 99th percentile=0.001 ms -18:10:07.741: ┗render_displays: min=0.002 ms, median=0.07 ms, max=32.784 ms, 99th percentile=0.203 ms -18:10:07.741: ================================================= -18:10:07.741: == Profiler Time Between Calls ================== -18:10:07.741: obs_hotkey_thread(25 ms): min=25.005 ms, median=25.055 ms, max=29.36 ms, 99.8584% within ±2% of 25 ms (0% lower, 0.141582% higher) -18:10:07.741: obs_graphics_thread(16.6667 ms): min=0.391 ms, median=16.667 ms, max=32.9 ms, 99.7191% within ±2% of 16.667 ms (0.141274% lower, 0.139592% higher) -18:10:07.741: ================================================= -18:10:07.745: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-28 19-18-08.txt b/obs-settings/Settings-files/logs/2025-11-28 19-18-08.txt deleted file mode 100644 index 2d7e346..0000000 --- a/obs-settings/Settings-files/logs/2025-11-28 19-18-08.txt +++ /dev/null @@ -1,471 +0,0 @@ -19:18:08.794: Platform: Wayland -19:18:08.794: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -19:18:08.794: CPU Speed: 4390.007MHz -19:18:08.794: Physical Cores: 8, Logical Cores: 8 -19:18:08.794: Physical Memory: 31168MB Total, 18770MB Free -19:18:08.794: Kernel Version: Linux 6.17.9-1-default -19:18:08.794: Flatpak Branch: stable -19:18:08.794: Flatpak Arch: x86_64 -19:18:08.794: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -19:18:08.794: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -19:18:08.794: App Extensions: -19:18:08.794: - com.obsproject.Studio.Plugin.OBSVkCapture -19:18:08.794: - com.obsproject.Studio.Plugin.SourceClone -19:18:08.794: - com.obsproject.Studio.Plugin.SourceRecord -19:18:08.794: - com.obsproject.Studio.Plugin.WaylandHotkeys -19:18:08.794: - org.freedesktop.LinuxAudio.Plugins.TAP -19:18:08.794: - org.freedesktop.LinuxAudio.Plugins.swh -19:18:08.794: - com.obsproject.Studio.Locale -19:18:08.794: Runtime Extensions: -19:18:08.794: - org.freedesktop.Platform.GL.default -19:18:08.794: - org.freedesktop.Platform.openh264 -19:18:08.794: - org.gtk.Gtk3theme.Breeze -19:18:08.794: - org.kde.Platform.Locale -19:18:08.794: - org.freedesktop.Platform.GL.default -19:18:08.794: Flatpak Framework Version: 1.16.1 -19:18:08.794: Desktop Environment: KDE (KDE) -19:18:08.794: Session Type: wayland -19:18:08.795: Current Date/Time: 2025-11-28, 19:18:08 -19:18:08.795: Browser Hardware Acceleration: true -19:18:08.795: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -19:18:08.795: Portable mode: false -19:18:08.826: OBS 32.0.2 (linux) -19:18:08.826: --------------------------------- -19:18:08.828: --------------------------------- -19:18:08.828: audio settings reset: -19:18:08.828: samples per sec: 48000 -19:18:08.828: speakers: 2 -19:18:08.828: max buffering: 960 milliseconds -19:18:08.828: buffering type: dynamically increasing -19:18:08.829: --------------------------------- -19:18:08.829: Initializing OpenGL... -19:18:08.829: Using EGL/Wayland -19:18:08.837: Initialized EGL 1.5 -19:18:08.849: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -19:18:08.849: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -19:18:08.876: --------------------------------- -19:18:08.876: video settings reset: -19:18:08.876: base resolution: 3440x1440 -19:18:08.876: output resolution: 3440x1440 -19:18:08.876: downscale filter: Bicubic -19:18:08.876: fps: 60/1 -19:18:08.876: format: NV12 -19:18:08.876: YUV mode: Rec. 709/Partial -19:18:08.877: NV12 texture support enabled -19:18:08.877: P010 texture support not available -19:18:08.880: Audio monitoring device: -19:18:08.880: name: Default -19:18:08.880: id: default -19:18:08.881: --------------------------------- -19:18:08.894: No AJA devices found, skipping loading AJA UI plugin -19:18:08.894: Failed to initialize module 'aja-output-ui.so' -19:18:08.906: No AJA devices found, skipping loading AJA plugin -19:18:08.906: Failed to initialize module 'aja.so' -19:18:09.192: [pipewire] Available capture sources: -19:18:09.192: [pipewire] - Monitor source -19:18:09.192: [pipewire] - Window source -19:18:09.216: v4l2loopback not installed, virtual camera not registered -19:18:09.220: [obs-browser]: Version 2.26.3 -19:18:09.220: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -19:18:09.232: VAAPI: API version 1.22 -19:18:09.233: FFmpeg VAAPI H264 encoding supported -19:18:09.236: FFmpeg VAAPI AV1 encoding supported -19:18:09.240: FFmpeg VAAPI HEVC encoding supported -19:18:09.246: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -19:18:09.246: -19:18:09.246: NVENC not supported -19:18:09.246: Failed to initialize module 'obs-nvenc.so' -19:18:09.282: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -19:18:09.282: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -19:18:09.282: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -19:18:09.285: [obs-websocket] [obs_module_load] Module loaded. -19:18:09.290: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -19:18:09.296: [Source Clone] loaded version 0.2.0 -19:18:09.297: [Source Record] loaded version 0.4.6 -19:18:09.298: --------------------------------- -19:18:09.298: Loaded Modules: -19:18:09.298: source-record.so -19:18:09.298: source-clone.so -19:18:09.298: obs-wayland-hotkeys.so -19:18:09.298: linux-vkcapture.so -19:18:09.298: text-freetype2.so -19:18:09.298: rtmp-services.so -19:18:09.298: obs-x264.so -19:18:09.298: obs-websocket.so -19:18:09.298: obs-webrtc.so -19:18:09.298: obs-vst.so -19:18:09.298: obs-transitions.so -19:18:09.298: obs-qsv11.so -19:18:09.298: obs-outputs.so -19:18:09.298: obs-libfdk.so -19:18:09.298: obs-filters.so -19:18:09.298: obs-ffmpeg.so -19:18:09.298: obs-browser.so -19:18:09.298: linux-v4l2.so -19:18:09.298: linux-pulseaudio.so -19:18:09.298: linux-pipewire.so -19:18:09.298: linux-jack.so -19:18:09.298: linux-capture.so -19:18:09.298: image-source.so -19:18:09.298: frontend-tools.so -19:18:09.298: --------------------------------- -19:18:09.299: --------------------------------- -19:18:09.299: Available Encoders: -19:18:09.299: Video Encoders: -19:18:09.299: - ffmpeg_svt_av1 (SVT-AV1) -19:18:09.299: - ffmpeg_aom_av1 (AOM AV1) -19:18:09.299: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -19:18:09.299: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -19:18:09.299: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -19:18:09.299: - obs_x264 (x264) -19:18:09.299: Audio Encoders: -19:18:09.299: - ffmpeg_aac (FFmpeg AAC) -19:18:09.299: - ffmpeg_opus (FFmpeg Opus) -19:18:09.299: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -19:18:09.299: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -19:18:09.299: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -19:18:09.299: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -19:18:09.299: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -19:18:09.299: - libfdk_aac (libfdk AAC) -19:18:09.299: ==== Startup complete =============================================== -19:18:09.342: All scene data cleared -19:18:09.342: ------------------------------------------------ -19:18:09.347: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -19:18:09.347: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -19:18:09.347: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -19:18:09.347: [Loaded global audio device]: 'Desktop Audio' -19:18:09.347: - filter: 'Compressor' (compressor_filter) -19:18:09.347: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -19:18:09.347: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -19:18:09.347: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -19:18:09.348: [Loaded global audio device]: 'Mic/Aux' -19:18:09.348: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -19:18:09.348: - filter: 'Compressor' (compressor_filter) -19:18:09.348: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -19:18:09.348: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -19:18:09.348: pulse-input: Started recording from 'GameSink.monitor' -19:18:09.348: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -19:18:09.349: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -19:18:09.349: pulse-input: Started recording from 'DiscordSink.monitor' -19:18:09.349: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -19:18:09.349: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -19:18:09.349: pulse-input: Started recording from 'MusicSink.monitor' -19:18:09.349: PipeWire initialized -19:18:09.350: PipeWire initialized -19:18:09.350: v4l2-input: Start capture from /dev/video0 -19:18:09.362: Device for 'Audio Output Capture' source is also used for audio monitoring: -19:18:09.362: Deduplication logic is being applied to all monitored sources. -19:18:09.362: -19:18:09.457: v4l2-input: Input: 0 -19:18:09.487: v4l2-input: Resolution: 864x480 -19:18:09.487: v4l2-input: Pixelformat: YUYV -19:18:09.487: v4l2-input: Linesize: 1728 Bytes -19:18:09.502: v4l2-input: Framerate: 24.00 fps -19:18:09.502: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -19:18:09.503: Switched to scene 'Scene' -19:18:09.503: ------------------------------------------------ -19:18:09.503: Loaded scenes: -19:18:09.503: - scene 'Scene': -19:18:09.503: - source: 'Game Sink' (pulse_output_capture) -19:18:09.503: - source: 'Discord Sink' (pulse_output_capture) -19:18:09.503: - source: 'Music Sink' (pulse_output_capture) -19:18:09.503: - source: 'App' (pipewire-screen-capture-source) -19:18:09.503: - source: 'Screen' (pipewire-screen-capture-source) -19:18:09.504: - source: 'Cam' (v4l2_input) -19:18:09.504: - scene 'Cam Scene': -19:18:09.504: - source: 'Cam' (v4l2_input) -19:18:09.504: - source: 'Game Sink' (pulse_output_capture) -19:18:09.504: - source: 'Discord Sink' (pulse_output_capture) -19:18:09.504: - source: 'Music Sink' (pulse_output_capture) -19:18:09.504: ------------------------------------------------ -19:18:09.571: [pipewire] Screencast session created -19:18:09.571: [pipewire] Screencast session created -19:18:09.655: [pipewire] Asking for monitor and window -19:18:09.655: [pipewire] Asking for monitor and window -19:18:09.779: [pipewire] source selected, setting up screencast -19:18:09.789: [pipewire] Server version: 1.5.83 -19:18:09.789: [pipewire] Library version: 1.2.4 -19:18:09.789: [pipewire] Header version: 1.2.4 -19:18:09.789: [pipewire] Created stream 0x55f117480b90 -19:18:09.789: [pipewire] Stream 0x55f117480b90 state: "connecting" (error: none) -19:18:09.789: [pipewire] Playing stream 0x55f117480b90 -19:18:09.790: [pipewire] Stream 0x55f117480b90 state: "paused" (error: none) -19:18:09.831: [pipewire] Negotiated format: -19:18:09.831: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -19:18:09.831: [pipewire] Modifier: 0x0 -19:18:09.831: [pipewire] Size: 3440x1440 -19:18:09.831: [pipewire] Framerate: 0/1 -19:18:09.832: [pipewire] Negotiated format: -19:18:09.832: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -19:18:09.832: [pipewire] Modifier: 0x200000028a37f04 -19:18:09.832: [pipewire] Size: 3440x1440 -19:18:09.832: [pipewire] Framerate: 0/1 -19:18:09.843: [pipewire] Stream 0x55f117480b90 state: "streaming" (error: none) -19:18:09.938: adding 42 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Desktop Audio) -19:18:09.938: -19:18:10.023: adding 21 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -19:18:10.023: -19:18:22.009: --------------------------------- -19:18:22.009: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -19:18:22.009: device: /dev/dri/by-path/pci-0000:03:00.0-render -19:18:22.009: rate_control: CBR -19:18:22.009: profile: 100 -19:18:22.009: level: -99 -19:18:22.009: qp: 0 -19:18:22.009: bitrate: 35000 -19:18:22.009: maxrate: 35000 -19:18:22.009: keyint: 120 -19:18:22.009: width: 3440 -19:18:22.009: height: 1440 -19:18:22.009: b-frames: 0 -19:18:22.009: ffmpeg opts: -19:18:22.009: -19:18:22.013: libfdk_aac encoder created -19:18:22.013: libfdk_aac bitrate: 160, channels: 2 -19:18:22.013: libfdk_aac encoder created -19:18:22.013: libfdk_aac bitrate: 160, channels: 2 -19:18:22.014: libfdk_aac encoder created -19:18:22.014: libfdk_aac bitrate: 160, channels: 2 -19:18:22.014: libfdk_aac encoder created -19:18:22.014: libfdk_aac bitrate: 160, channels: 2 -19:18:22.019: ==== Replay Buffer Start =========================================== -19:18:23.868: Output 'Replay Buffer': stopping -19:18:23.868: Output 'Replay Buffer': Total frames output: 103 -19:18:23.868: Output 'Replay Buffer': Total drawn frames: 111 -19:18:23.870: ==== Replay Buffer Stop ============================================ -19:18:23.876: libfdk_aac encoder destroyed -19:18:23.876: libfdk_aac encoder destroyed -19:18:23.876: libfdk_aac encoder destroyed -19:18:23.876: libfdk_aac encoder destroyed -19:18:24.542: --------------------------------- -19:18:24.542: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -19:18:24.542: device: /dev/dri/by-path/pci-0000:03:00.0-render -19:18:24.542: rate_control: CBR -19:18:24.542: profile: 100 -19:18:24.542: level: -99 -19:18:24.542: qp: 0 -19:18:24.542: bitrate: 35000 -19:18:24.542: maxrate: 35000 -19:18:24.542: keyint: 120 -19:18:24.542: width: 3440 -19:18:24.542: height: 1440 -19:18:24.542: b-frames: 0 -19:18:24.542: ffmpeg opts: -19:18:24.542: -19:18:24.546: libfdk_aac encoder created -19:18:24.546: libfdk_aac bitrate: 160, channels: 2 -19:18:24.546: libfdk_aac encoder created -19:18:24.546: libfdk_aac bitrate: 160, channels: 2 -19:18:24.546: libfdk_aac encoder created -19:18:24.546: libfdk_aac bitrate: 160, channels: 2 -19:18:24.546: libfdk_aac encoder created -19:18:24.546: libfdk_aac bitrate: 160, channels: 2 -19:18:24.549: ==== Recording Start =============================================== -19:18:24.549: [mp4 output: 'adv_file_output'] Writing Hybrid MP4/MOV file '/home/glennigen/Videos/obs-replay/2025-11-28_19-18-24.mp4'... -19:18:37.415: [mp4 muxer: 'adv_file_output'] Flushing final fragment... -19:18:37.415: [mp4 muxer: 'adv_file_output'] Number of fragments: 7 -19:18:37.415: [mp4 muxer: 'adv_file_output'] Full moov size: 15 KiB -19:18:37.415: [mp4 muxer: 'adv_file_output'] Final mdat size: 55212 KiB -19:18:37.415: Output 'adv_file_output': stopping -19:18:37.415: Output 'adv_file_output': Total frames output: 763 -19:18:37.415: Output 'adv_file_output': Total drawn frames: 772 -19:18:37.415: [mp4 output: 'adv_file_output'] Waiting for file writer to finish... -19:18:37.416: ==== Recording Stop ================================================ -19:18:37.417: [mp4 output: 'adv_file_output'] File output complete. Finalization took 2 ms. -19:18:37.426: libfdk_aac encoder destroyed -19:18:37.426: libfdk_aac encoder destroyed -19:18:37.426: libfdk_aac encoder destroyed -19:18:37.426: libfdk_aac encoder destroyed -19:18:40.696: [pipewire] Failed to start screencast, denied or cancelled by user -19:21:54.386: adding 106 milliseconds of audio buffering, total audio buffering is now 170 milliseconds (source: Mic/Aux) -19:21:54.386: -19:42:58.885: --------------------------------- -19:42:58.885: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -19:42:58.885: device: /dev/dri/by-path/pci-0000:03:00.0-render -19:42:58.885: rate_control: CBR -19:42:58.885: profile: 100 -19:42:58.885: level: -99 -19:42:58.885: qp: 0 -19:42:58.885: bitrate: 35000 -19:42:58.885: maxrate: 35000 -19:42:58.885: keyint: 120 -19:42:58.885: width: 3440 -19:42:58.885: height: 1440 -19:42:58.885: b-frames: 0 -19:42:58.885: ffmpeg opts: -19:42:58.885: -19:42:58.889: libfdk_aac encoder created -19:42:58.889: libfdk_aac bitrate: 160, channels: 2 -19:42:58.889: libfdk_aac encoder created -19:42:58.889: libfdk_aac bitrate: 160, channels: 2 -19:42:58.889: libfdk_aac encoder created -19:42:58.889: libfdk_aac bitrate: 160, channels: 2 -19:42:58.889: libfdk_aac encoder created -19:42:58.889: libfdk_aac bitrate: 160, channels: 2 -19:42:58.893: ==== Recording Start =============================================== -19:42:58.893: [mp4 output: 'adv_file_output'] Writing Hybrid MP4/MOV file '/home/glennigen/Videos/obs-replay/2025-11-28_19-42-58.mp4'... -19:43:05.597: [mp4 muxer: 'adv_file_output'] Flushing final fragment... -19:43:05.597: [mp4 muxer: 'adv_file_output'] Number of fragments: 4 -19:43:05.597: [mp4 muxer: 'adv_file_output'] Full moov size: 9 KiB -19:43:05.597: [mp4 muxer: 'adv_file_output'] Final mdat size: 28079 KiB -19:43:05.597: Output 'adv_file_output': stopping -19:43:05.597: Output 'adv_file_output': Total frames output: 388 -19:43:05.597: Output 'adv_file_output': Total drawn frames: 403 -19:43:05.597: [mp4 output: 'adv_file_output'] Waiting for file writer to finish... -19:43:05.597: ==== Recording Stop ================================================ -19:43:05.598: [mp4 output: 'adv_file_output'] File output complete. Finalization took 1 ms. -19:43:05.609: libfdk_aac encoder destroyed -19:43:05.609: libfdk_aac encoder destroyed -19:43:05.609: libfdk_aac encoder destroyed -19:43:05.609: libfdk_aac encoder destroyed -19:43:07.694: --------------------------------- -19:43:07.694: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -19:43:07.694: device: /dev/dri/by-path/pci-0000:03:00.0-render -19:43:07.694: rate_control: CBR -19:43:07.694: profile: 100 -19:43:07.694: level: -99 -19:43:07.694: qp: 0 -19:43:07.694: bitrate: 35000 -19:43:07.694: maxrate: 35000 -19:43:07.694: keyint: 120 -19:43:07.694: width: 3440 -19:43:07.694: height: 1440 -19:43:07.694: b-frames: 0 -19:43:07.694: ffmpeg opts: -19:43:07.694: -19:43:07.699: libfdk_aac encoder created -19:43:07.699: libfdk_aac bitrate: 160, channels: 2 -19:43:07.699: libfdk_aac encoder created -19:43:07.699: libfdk_aac bitrate: 160, channels: 2 -19:43:07.699: libfdk_aac encoder created -19:43:07.699: libfdk_aac bitrate: 160, channels: 2 -19:43:07.699: libfdk_aac encoder created -19:43:07.699: libfdk_aac bitrate: 160, channels: 2 -19:43:07.703: ==== Recording Start =============================================== -19:43:07.703: [mp4 output: 'adv_file_output'] Writing Hybrid MP4/MOV file '/home/glennigen/Videos/obs-replay/2025-11-28_19-43-07.mp4'... -19:43:13.596: [mp4 muxer: 'adv_file_output'] Flushing final fragment... -19:43:13.597: [mp4 muxer: 'adv_file_output'] Number of fragments: 3 -19:43:13.597: [mp4 muxer: 'adv_file_output'] Full moov size: 8 KiB -19:43:13.597: [mp4 muxer: 'adv_file_output'] Final mdat size: 24452 KiB -19:43:13.597: Output 'adv_file_output': stopping -19:43:13.597: Output 'adv_file_output': Total frames output: 338 -19:43:13.597: Output 'adv_file_output': Total drawn frames: 354 -19:43:13.597: [mp4 output: 'adv_file_output'] Waiting for file writer to finish... -19:43:13.597: ==== Recording Stop ================================================ -19:43:13.601: [mp4 output: 'adv_file_output'] File output complete. Finalization took 4 ms. -19:43:13.608: libfdk_aac encoder destroyed -19:43:13.608: libfdk_aac encoder destroyed -19:43:13.608: libfdk_aac encoder destroyed -19:43:13.608: libfdk_aac encoder destroyed -19:54:49.896: ==== Shutting down ================================================== -19:54:49.900: [pipewire] Stream 0x55f117480b90 state: "paused" (error: none) -19:54:49.900: [pipewire] Stream 0x55f117480b90 state: "unconnected" (error: none) -19:54:49.903: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -19:54:49.903: pulse-input: Got 88020 packets with 105624000 frames -19:54:49.903: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -19:54:49.903: pulse-input: Got 88012 packets with 105614400 frames -19:54:49.917: v4l2-input: /dev/video0: Stopped capture after 33001 frames -19:54:49.972: pulse-input: Stopped recording from 'GameSink.monitor' -19:54:49.972: pulse-input: Got 88022 packets with 105626400 frames -19:54:49.972: pulse-input: Stopped recording from 'DiscordSink.monitor' -19:54:49.972: pulse-input: Got 88021 packets with 105625200 frames -19:54:49.972: pulse-input: Stopped recording from 'MusicSink.monitor' -19:54:49.972: pulse-input: Got 88016 packets with 105619200 frames -19:54:49.980: All scene data cleared -19:54:49.980: ------------------------------------------------ -19:54:50.023: [linux-vkcapture] plugin unloaded -19:54:50.024: [obs-websocket] [obs_module_unload] Shutting down... -19:54:50.024: Tried to call obs_frontend_remove_event_callback with no callbacks! -19:54:50.024: [obs-websocket] [obs_module_unload] Finished shutting down. -19:54:50.029: [Scripting] Total detached callbacks: 0 -19:54:50.029: Freeing OBS context data -19:54:50.037: == Profiler Results ============================= -19:54:50.037: run_program_init: 1287.8 ms -19:54:50.037: ┣OBSApp::AppInit: 14.932 ms -19:54:50.037: ┃ ┗OBSApp::InitLocale: 1.274 ms -19:54:50.037: ┗OBSApp::OBSInit: 763.956 ms -19:54:50.037: ┣obs_startup: 1.414 ms -19:54:50.037: ┗OBSBasic::OBSInit: 731.208 ms -19:54:50.037: ┣OBSBasic::InitBasicConfig: 1.298 ms -19:54:50.037: ┣OBSBasic::ResetAudio: 0.179 ms -19:54:50.037: ┣OBSBasic::ResetVideo: 51.406 ms -19:54:50.037: ┃ ┗obs_init_graphics: 48.254 ms -19:54:50.037: ┃ ┗shader compilation: 26.975 ms -19:54:50.037: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -19:54:50.037: ┣OBSBasic::InitHotkeys: 0.011 ms -19:54:50.037: ┣obs_load_all_modules2: 416.183 ms -19:54:50.037: ┃ ┣obs_init_module(aja-output-ui.so): 0.067 ms -19:54:50.037: ┃ ┣obs_init_module(aja.so): 0.045 ms -19:54:50.037: ┃ ┣obs_init_module(frontend-tools.so): 67.224 ms -19:54:50.037: ┃ ┣obs_init_module(image-source.so): 0.004 ms -19:54:50.037: ┃ ┣obs_init_module(linux-capture.so): 0 ms -19:54:50.037: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -19:54:50.037: ┃ ┣obs_init_module(linux-pipewire.so): 9.661 ms -19:54:50.037: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -19:54:50.037: ┃ ┣obs_init_module(linux-v4l2.so): 20.481 ms -19:54:50.037: ┃ ┣obs_init_module(obs-browser.so): 0.039 ms -19:54:50.037: ┃ ┣obs_init_module(obs-ffmpeg.so): 17.867 ms -19:54:50.037: ┃ ┣obs_init_module(obs-filters.so): 0.01 ms -19:54:50.037: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms -19:54:50.037: ┃ ┣obs_init_module(obs-nvenc.so): 0.081 ms -19:54:50.037: ┃ ┃ ┗nvenc_check: 0.064 ms -19:54:50.037: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -19:54:50.037: ┃ ┣obs_init_module(obs-qsv11.so): 12.486 ms -19:54:50.037: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -19:54:50.037: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -19:54:50.037: ┃ ┣obs_init_module(obs-webrtc.so): 0.007 ms -19:54:50.037: ┃ ┣obs_init_module(obs-websocket.so): 3.105 ms -19:54:50.037: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -19:54:50.037: ┃ ┣obs_init_module(rtmp-services.so): 0.72 ms -19:54:50.037: ┃ ┣obs_init_module(text-freetype2.so): 0.005 ms -19:54:50.037: ┃ ┣obs_init_module(linux-vkcapture.so): 0.045 ms -19:54:50.037: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.003 ms -19:54:50.037: ┃ ┣obs_init_module(source-clone.so): 0.024 ms -19:54:50.037: ┃ ┗obs_init_module(source-record.so): 0.025 ms -19:54:50.037: ┣OBSBasic::InitService: 1.405 ms -19:54:50.037: ┣OBSBasic::ResetOutputs: 3.311 ms -19:54:50.037: ┣OBSBasic::CreateHotkeys: 0.018 ms -19:54:50.037: ┣OBSBasic::InitPrimitives: 0.053 ms -19:54:50.037: ┗OBSBasic::Load: 205.287 ms -19:54:50.037: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.013 ms, 99th percentile=0 ms, 100% below 25 ms -19:54:50.037: audio_thread(Audio): min=0.003 ms, median=0.038 ms, max=5.149 ms, 99th percentile=0.268 ms -19:54:50.037: ┗receive_audio: min=0 ms, median=0.037 ms, max=4.568 ms, 99th percentile=0.204 ms, 0.0497378 calls per parent call -19:54:50.037: ┣buffer_audio: min=0 ms, median=0 ms, max=0.012 ms, 99th percentile=0.001 ms -19:54:50.037: ┗do_encode: min=0.024 ms, median=0.038 ms, max=4.567 ms, 99th percentile=0.204 ms -19:54:50.037: ┣encode(Track1): min=0.032 ms, median=0.124 ms, max=0.642 ms, 99th percentile=0.179 ms, 0.25 calls per parent call -19:54:50.037: ┣send_packet: min=0 ms, median=0.001 ms, max=4.54 ms, 99th percentile=0.05 ms -19:54:50.037: ┣encode(Track2): min=0.025 ms, median=0.03 ms, max=0.059 ms, 99th percentile=0.04 ms, 0.25 calls per parent call -19:54:50.037: ┣encode(Track3): min=0.024 ms, median=0.028 ms, max=0.239 ms, 99th percentile=0.209 ms, 0.25 calls per parent call -19:54:50.037: ┗encode(Track4): min=0.024 ms, median=0.027 ms, max=0.072 ms, 99th percentile=0.037 ms, 0.25 calls per parent call -19:54:50.037: obs_graphics_thread(16.6667 ms): min=0.051 ms, median=0.178 ms, max=42.727 ms, 99th percentile=0.296 ms, 99.9985% below 16.667 ms -19:54:50.037: ┣tick_sources: min=0 ms, median=0.003 ms, max=5.057 ms, 99th percentile=0.004 ms -19:54:50.037: ┣output_frame: min=0.04 ms, median=0.105 ms, max=6.413 ms, 99th percentile=0.158 ms -19:54:50.037: ┃ ┗gs_context(video->graphics): min=0.04 ms, median=0.105 ms, max=6.411 ms, 99th percentile=0.158 ms -19:54:50.037: ┃ ┣render_video: min=0.006 ms, median=0.101 ms, max=6.406 ms, 99th percentile=0.153 ms -19:54:50.037: ┃ ┃ ┣render_main_texture: min=0.005 ms, median=0.099 ms, max=6.404 ms, 99th percentile=0.143 ms -19:54:50.038: ┃ ┃ ┣render_convert_texture: min=0.011 ms, median=0.015 ms, max=0.613 ms, 99th percentile=0.032 ms, 0.012418 calls per parent call -19:54:50.038: ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.001 ms, max=0.014 ms, 99th percentile=0.002 ms, 0.012418 calls per parent call -19:54:50.038: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=0.222 ms, 99th percentile=0.001 ms -19:54:50.038: ┗render_displays: min=0.002 ms, median=0.061 ms, max=42.587 ms, 99th percentile=0.134 ms -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=0.149 ms, median=0.238 ms, max=1.504 ms, 99th percentile=1.066 ms, 100% below 16.667 ms -19:54:50.038: ┣gpu_encode_frame: min=0.146 ms, median=0.234 ms, max=1.503 ms, 99th percentile=1.011 ms -19:54:50.038: ┗send_packet: min=0.001 ms, median=0.002 ms, max=0.053 ms, 99th percentile=0.012 ms -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=0.12 ms, median=0.206 ms, max=5.597 ms, 99th percentile=1.069 ms, 100% below 16.667 ms -19:54:50.038: ┣gpu_encode_frame: min=0.117 ms, median=0.201 ms, max=5.58 ms, 99th percentile=1.017 ms -19:54:50.038: ┗send_packet: min=0.001 ms, median=0.003 ms, max=1.094 ms, 99th percentile=0.008 ms -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=0.128 ms, median=0.213 ms, max=3.548 ms, 99th percentile=0.864 ms, 100% below 16.667 ms -19:54:50.038: ┣gpu_encode_frame: min=0.124 ms, median=0.208 ms, max=3.537 ms, 99th percentile=0.862 ms -19:54:50.038: ┗send_packet: min=0.001 ms, median=0.003 ms, max=0.042 ms, 99th percentile=0.019 ms -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=0.118 ms, median=0.208 ms, max=4.611 ms, 99th percentile=0.861 ms, 100% below 16.667 ms -19:54:50.038: ┣gpu_encode_frame: min=0.115 ms, median=0.203 ms, max=1.106 ms, 99th percentile=0.572 ms -19:54:50.038: ┗send_packet: min=0.001 ms, median=0.003 ms, max=4.401 ms, 99th percentile=0.031 ms -19:54:50.038: ================================================= -19:54:50.038: == Profiler Time Between Calls ================== -19:54:50.038: obs_hotkey_thread(25 ms): min=25.004 ms, median=25.055 ms, max=29.185 ms, 99.9693% within ±2% of 25 ms (0% lower, 0.0307342% higher) -19:54:50.038: obs_graphics_thread(16.6667 ms): min=7.284 ms, median=16.667 ms, max=42.73 ms, 99.9432% within ±2% of 16.667 ms (0.0280165% lower, 0.0287737% higher) -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=16.424 ms, median=16.664 ms, max=16.933 ms, 100% within ±2% of 16.667 ms (0% lower, 0% higher) -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=16.446 ms, median=16.667 ms, max=16.888 ms, 100% within ±2% of 16.667 ms (0% lower, 0% higher) -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=16.469 ms, median=16.666 ms, max=16.865 ms, 100% within ±2% of 16.667 ms (0% lower, 0% higher) -19:54:50.038: obs_gpu_encode_thread(16.6667 ms): min=12.779 ms, median=16.665 ms, max=20.56 ms, 98.2906% within ±2% of 16.667 ms (0.854701% lower, 0.854701% higher) -19:54:50.038: ================================================= -19:54:50.042: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-29 12-55-44.txt b/obs-settings/Settings-files/logs/2025-11-29 12-55-44.txt deleted file mode 100644 index e6b5e16..0000000 --- a/obs-settings/Settings-files/logs/2025-11-29 12-55-44.txt +++ /dev/null @@ -1,304 +0,0 @@ -12:55:44.286: Platform: Wayland -12:55:44.286: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -12:55:44.286: CPU Speed: 4988.434MHz -12:55:44.286: Physical Cores: 8, Logical Cores: 8 -12:55:44.286: Physical Memory: 31168MB Total, 1409MB Free -12:55:44.286: Kernel Version: Linux 6.17.9-1-default -12:55:44.286: Flatpak Branch: stable -12:55:44.286: Flatpak Arch: x86_64 -12:55:44.286: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -12:55:44.286: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -12:55:44.286: App Extensions: -12:55:44.286: - com.obsproject.Studio.Plugin.OBSVkCapture -12:55:44.286: - com.obsproject.Studio.Plugin.SourceClone -12:55:44.286: - com.obsproject.Studio.Plugin.SourceRecord -12:55:44.286: - com.obsproject.Studio.Plugin.WaylandHotkeys -12:55:44.286: - org.freedesktop.LinuxAudio.Plugins.TAP -12:55:44.286: - org.freedesktop.LinuxAudio.Plugins.swh -12:55:44.286: - com.obsproject.Studio.Locale -12:55:44.286: Runtime Extensions: -12:55:44.286: - org.freedesktop.Platform.GL.default -12:55:44.286: - org.freedesktop.Platform.openh264 -12:55:44.286: - org.gtk.Gtk3theme.Breeze -12:55:44.286: - org.kde.Platform.Locale -12:55:44.286: - org.freedesktop.Platform.GL.default -12:55:44.286: Flatpak Framework Version: 1.16.1 -12:55:44.286: Desktop Environment: GNOME (GNOME) -12:55:44.286: Session Type: wayland -12:55:44.287: Current Date/Time: 2025-11-29, 12:55:44 -12:55:44.287: Browser Hardware Acceleration: true -12:55:44.287: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -12:55:44.287: Portable mode: false -12:55:44.313: OBS 32.0.2 (linux) -12:55:44.313: --------------------------------- -12:55:44.314: --------------------------------- -12:55:44.314: audio settings reset: -12:55:44.314: samples per sec: 48000 -12:55:44.314: speakers: 2 -12:55:44.314: max buffering: 960 milliseconds -12:55:44.314: buffering type: dynamically increasing -12:55:44.314: --------------------------------- -12:55:44.314: Initializing OpenGL... -12:55:44.314: Using EGL/Wayland -12:55:44.503: Initialized EGL 1.5 -12:55:44.517: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -12:55:44.517: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -12:55:44.543: --------------------------------- -12:55:44.543: video settings reset: -12:55:44.543: base resolution: 3440x1440 -12:55:44.543: output resolution: 3440x1440 -12:55:44.543: downscale filter: Bicubic -12:55:44.543: fps: 60/1 -12:55:44.543: format: NV12 -12:55:44.543: YUV mode: Rec. 709/Partial -12:55:44.543: NV12 texture support enabled -12:55:44.543: P010 texture support not available -12:55:44.546: Audio monitoring device: -12:55:44.546: name: Default -12:55:44.546: id: default -12:55:44.549: --------------------------------- -12:55:44.563: No AJA devices found, skipping loading AJA UI plugin -12:55:44.563: Failed to initialize module 'aja-output-ui.so' -12:55:44.575: No AJA devices found, skipping loading AJA plugin -12:55:44.575: Failed to initialize module 'aja.so' -12:55:44.826: [pipewire] Available capture sources: -12:55:44.826: [pipewire] - Monitor source -12:55:44.826: [pipewire] - Window source -12:55:44.836: v4l2loopback not installed, virtual camera not registered -12:55:44.839: [obs-browser]: Version 2.26.3 -12:55:44.839: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -12:55:44.859: VAAPI: API version 1.22 -12:55:44.860: FFmpeg VAAPI H264 encoding supported -12:55:44.863: FFmpeg VAAPI AV1 encoding supported -12:55:44.866: FFmpeg VAAPI HEVC encoding supported -12:55:44.869: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -12:55:44.869: -12:55:44.869: NVENC not supported -12:55:44.869: Failed to initialize module 'obs-nvenc.so' -12:55:44.893: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -12:55:44.893: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -12:55:44.893: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -12:55:44.895: [obs-websocket] [obs_module_load] Module loaded. -12:55:44.900: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -12:55:44.900: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -12:55:44.901: Failed to load 'en-GB' text for module: 'source-clone.so' -12:55:44.901: [Source Clone] loaded version 0.2.0 -12:55:44.902: Failed to load 'en-GB' text for module: 'source-record.so' -12:55:44.902: [Source Record] loaded version 0.4.6 -12:55:44.902: --------------------------------- -12:55:44.902: Loaded Modules: -12:55:44.902: source-record.so -12:55:44.902: source-clone.so -12:55:44.902: obs-wayland-hotkeys.so -12:55:44.902: linux-vkcapture.so -12:55:44.902: text-freetype2.so -12:55:44.902: rtmp-services.so -12:55:44.902: obs-x264.so -12:55:44.902: obs-websocket.so -12:55:44.902: obs-webrtc.so -12:55:44.902: obs-vst.so -12:55:44.902: obs-transitions.so -12:55:44.902: obs-qsv11.so -12:55:44.902: obs-outputs.so -12:55:44.902: obs-libfdk.so -12:55:44.902: obs-filters.so -12:55:44.902: obs-ffmpeg.so -12:55:44.902: obs-browser.so -12:55:44.902: linux-v4l2.so -12:55:44.902: linux-pulseaudio.so -12:55:44.902: linux-pipewire.so -12:55:44.902: linux-jack.so -12:55:44.902: linux-capture.so -12:55:44.902: image-source.so -12:55:44.902: frontend-tools.so -12:55:44.903: --------------------------------- -12:55:44.903: --------------------------------- -12:55:44.903: Available Encoders: -12:55:44.903: Video Encoders: -12:55:44.903: - ffmpeg_svt_av1 (SVT-AV1) -12:55:44.903: - ffmpeg_aom_av1 (AOM AV1) -12:55:44.903: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -12:55:44.903: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -12:55:44.903: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -12:55:44.903: - obs_x264 (x264) -12:55:44.903: Audio Encoders: -12:55:44.903: - ffmpeg_aac (FFmpeg AAC) -12:55:44.903: - ffmpeg_opus (FFmpeg Opus) -12:55:44.903: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -12:55:44.903: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -12:55:44.903: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -12:55:44.903: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -12:55:44.903: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -12:55:44.903: - libfdk_aac (libfdk AAC) -12:55:44.903: ==== Startup complete =============================================== -12:55:44.933: All scene data cleared -12:55:44.933: ------------------------------------------------ -12:55:44.937: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -12:55:44.937: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -12:55:44.937: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -12:55:44.937: [Loaded global audio device]: 'Desktop Audio' -12:55:44.937: - filter: 'Compressor' (compressor_filter) -12:55:44.937: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -12:55:44.937: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -12:55:44.937: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -12:55:44.937: [Loaded global audio device]: 'Mic/Aux' -12:55:44.937: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -12:55:44.937: - filter: 'Compressor' (compressor_filter) -12:55:44.938: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -12:55:44.938: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -12:55:44.938: pulse-input: Started recording from 'GameSink.monitor' -12:55:44.938: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -12:55:44.938: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -12:55:44.938: pulse-input: Started recording from 'DiscordSink.monitor' -12:55:44.939: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -12:55:44.939: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -12:55:44.939: pulse-input: Started recording from 'MusicSink.monitor' -12:55:44.939: PipeWire initialized -12:55:44.939: PipeWire initialized -12:55:44.939: v4l2-input: Start capture from /dev/video0 -12:55:44.954: Device for 'Audio Output Capture' source is also used for audio monitoring: -12:55:44.954: Deduplication logic is being applied to all monitored sources. -12:55:44.954: -12:55:45.047: v4l2-input: Input: 0 -12:55:45.077: v4l2-input: Resolution: 864x480 -12:55:45.077: v4l2-input: Pixelformat: YUYV -12:55:45.077: v4l2-input: Linesize: 1728 Bytes -12:55:45.092: v4l2-input: Framerate: 24.00 fps -12:55:45.092: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -12:55:45.093: Switched to scene 'Scene' -12:55:45.093: ------------------------------------------------ -12:55:45.093: Loaded scenes: -12:55:45.093: - scene 'Scene': -12:55:45.093: - source: 'Game Sink' (pulse_output_capture) -12:55:45.093: - source: 'Discord Sink' (pulse_output_capture) -12:55:45.093: - source: 'Music Sink' (pulse_output_capture) -12:55:45.093: - source: 'App' (pipewire-screen-capture-source) -12:55:45.093: - source: 'Screen' (pipewire-screen-capture-source) -12:55:45.093: - source: 'Cam' (v4l2_input) -12:55:45.093: - scene 'Cam Scene': -12:55:45.093: - source: 'Cam' (v4l2_input) -12:55:45.093: - source: 'Game Sink' (pulse_output_capture) -12:55:45.093: - source: 'Discord Sink' (pulse_output_capture) -12:55:45.093: - source: 'Music Sink' (pulse_output_capture) -12:55:45.094: ------------------------------------------------ -12:55:45.229: [pipewire] Screencast session created -12:55:45.229: [pipewire] Screencast session created -12:55:45.248: [pipewire] Asking for monitor and window -12:55:45.248: [pipewire] Asking for monitor and window -12:55:45.509: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -12:55:45.509: -12:55:45.596: adding 42 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -12:55:45.596: -12:55:53.639: [pipewire] Failed to start screencast, denied or cancelled by user -12:55:54.320: [pipewire] Failed to start screencast, denied or cancelled by user -12:55:58.183: Creating a popup with a parent, QWidgetWindow(0x55f2441d6a70, name="OBSBasicWindow") which does not match the current topmost grabbing popup, QWidgetWindow(0x55f24608a8c0, name="QMenuClassWindow") With some shell surface protocols, this is not allowed. The wayland QPA plugin is currently handling it by setting the parent to the topmost grabbing popup. Note, however, that this may cause positioning errors and popups closing unxpectedly. Please fix the transient parent of the popup. -12:56:02.243: PipeWire initialized -12:56:02.244: [pipewire] Screencast session created -12:56:02.245: [pipewire] Asking for monitor and window -12:56:04.881: [pipewire] source selected, setting up screencast -12:56:04.889: [pipewire] Server version: 1.5.83 -12:56:04.889: [pipewire] Library version: 1.2.4 -12:56:04.889: [pipewire] Header version: 1.2.4 -12:56:04.889: [pipewire] Created stream 0x55f2471af070 -12:56:04.889: [pipewire] Stream 0x55f2471af070 state: "connecting" (error: none) -12:56:04.890: [pipewire] Playing stream 0x55f2471af070 -12:56:04.890: [pipewire] Stream 0x55f2471af070 state: "paused" (error: none) -12:56:04.903: [pipewire] Negotiated format: -12:56:04.903: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -12:56:04.903: [pipewire] Modifier: 0x0 -12:56:04.903: [pipewire] Size: 3440x1440 -12:56:04.903: [pipewire] Framerate: 0/1 -12:56:04.903: [pipewire] Negotiated format: -12:56:04.903: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -12:56:04.903: [pipewire] Modifier: 0x200000028a01f04 -12:56:04.903: [pipewire] Size: 3440x1440 -12:56:04.903: [pipewire] Framerate: 0/1 -12:56:04.921: [pipewire] Stream 0x55f2471af070 state: "streaming" (error: none) -12:57:19.597: [pipewire] Stream 0x55f2471af070 state: "paused" (error: none) -12:57:28.743: ==== Shutting down ================================================== -12:57:28.746: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -12:57:28.746: pulse-input: Got 4150 packets with 4980000 frames -12:57:28.746: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -12:57:28.746: pulse-input: Got 4148 packets with 4977600 frames -12:57:28.746: [pipewire] Stream 0x55f2471af070 state: "unconnected" (error: none) -12:57:28.812: v4l2-input: /dev/video0: Stopped capture after 1568 frames -12:57:28.866: pulse-input: Stopped recording from 'GameSink.monitor' -12:57:28.866: pulse-input: Got 4153 packets with 4983600 frames -12:57:28.866: pulse-input: Stopped recording from 'DiscordSink.monitor' -12:57:28.866: pulse-input: Got 4153 packets with 4983600 frames -12:57:28.866: pulse-input: Stopped recording from 'MusicSink.monitor' -12:57:28.866: pulse-input: Got 4153 packets with 4983600 frames -12:57:28.890: All scene data cleared -12:57:28.890: ------------------------------------------------ -12:57:28.894: virtual void QtWaylandClient::QWaylandTextInputv3::zwp_text_input_v3_leave(wl_surface*) Got leave event for surface 0x0 with focusing surface 0x55f245de87b0 -12:57:28.894: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x0 with focusing surface 0x55f245de87b0 -12:57:28.933: [linux-vkcapture] plugin unloaded -12:57:28.934: [obs-websocket] [obs_module_unload] Shutting down... -12:57:28.934: Tried to call obs_frontend_remove_event_callback with no callbacks! -12:57:28.934: [obs-websocket] [obs_module_unload] Finished shutting down. -12:57:28.938: [Scripting] Total detached callbacks: 0 -12:57:28.938: Freeing OBS context data -12:57:28.944: == Profiler Results ============================= -12:57:28.944: run_program_init: 972.19 ms -12:57:28.944: ┣OBSApp::AppInit: 12.142 ms -12:57:28.944: ┃ ┗OBSApp::InitLocale: 1.669 ms -12:57:28.944: ┗OBSApp::OBSInit: 844.162 ms -12:57:28.944: ┣obs_startup: 1.263 ms -12:57:28.944: ┗OBSBasic::OBSInit: 816.38 ms -12:57:28.944: ┣OBSBasic::InitBasicConfig: 0.576 ms -12:57:28.944: ┣OBSBasic::ResetAudio: 0.151 ms -12:57:28.944: ┣OBSBasic::ResetVideo: 231.58 ms -12:57:28.944: ┃ ┗obs_init_graphics: 229.091 ms -12:57:28.944: ┃ ┗shader compilation: 25.106 ms -12:57:28.944: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -12:57:28.944: ┣OBSBasic::InitHotkeys: 0.013 ms -12:57:28.944: ┣obs_load_all_modules2: 353.695 ms -12:57:28.944: ┃ ┣obs_init_module(aja-output-ui.so): 0.048 ms -12:57:28.944: ┃ ┣obs_init_module(aja.so): 0.039 ms -12:57:28.944: ┃ ┣obs_init_module(frontend-tools.so): 57.171 ms -12:57:28.944: ┃ ┣obs_init_module(image-source.so): 0.003 ms -12:57:28.944: ┃ ┣obs_init_module(linux-capture.so): 0 ms -12:57:28.944: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -12:57:28.944: ┃ ┣obs_init_module(linux-pipewire.so): 9.003 ms -12:57:28.944: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -12:57:28.944: ┃ ┣obs_init_module(linux-v4l2.so): 7.928 ms -12:57:28.944: ┃ ┣obs_init_module(obs-browser.so): 0.033 ms -12:57:28.944: ┃ ┣obs_init_module(obs-ffmpeg.so): 25.24 ms -12:57:28.944: ┃ ┣obs_init_module(obs-filters.so): 0.009 ms -12:57:28.944: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms -12:57:28.944: ┃ ┣obs_init_module(obs-nvenc.so): 0.086 ms -12:57:28.944: ┃ ┃ ┗nvenc_check: 0.068 ms -12:57:28.944: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -12:57:28.944: ┃ ┣obs_init_module(obs-qsv11.so): 11.437 ms -12:57:28.944: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -12:57:28.944: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -12:57:28.944: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms -12:57:28.944: ┃ ┣obs_init_module(obs-websocket.so): 2.786 ms -12:57:28.944: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -12:57:28.944: ┃ ┣obs_init_module(rtmp-services.so): 0.649 ms -12:57:28.945: ┃ ┣obs_init_module(text-freetype2.so): 0.004 ms -12:57:28.945: ┃ ┣obs_init_module(linux-vkcapture.so): 0.033 ms -12:57:28.945: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -12:57:28.945: ┃ ┣obs_init_module(source-clone.so): 0.009 ms -12:57:28.945: ┃ ┗obs_init_module(source-record.so): 0.018 ms -12:57:28.945: ┣OBSBasic::InitService: 1.469 ms -12:57:28.945: ┣OBSBasic::ResetOutputs: 3.001 ms -12:57:28.945: ┣OBSBasic::CreateHotkeys: 0.015 ms -12:57:28.945: ┣OBSBasic::InitPrimitives: 0.057 ms -12:57:28.945: ┗OBSBasic::Load: 191.039 ms -12:57:28.945: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.011 ms, 99th percentile=0 ms, 100% below 25 ms -12:57:28.945: audio_thread(Audio): min=0.003 ms, median=0.037 ms, max=2.407 ms, 99th percentile=0.082 ms -12:57:28.945: obs_graphics_thread(16.6667 ms): min=0.04 ms, median=0.162 ms, max=32.995 ms, 99th percentile=0.398 ms, 99.9521% below 16.667 ms -12:57:28.945: ┣tick_sources: min=0 ms, median=0.003 ms, max=9.261 ms, 99th percentile=0.009 ms -12:57:28.945: ┣output_frame: min=0.034 ms, median=0.091 ms, max=4.599 ms, 99th percentile=0.209 ms -12:57:28.945: ┃ ┗gs_context(video->graphics): min=0.034 ms, median=0.091 ms, max=4.599 ms, 99th percentile=0.208 ms -12:57:28.945: ┃ ┣render_video: min=0.002 ms, median=0.088 ms, max=4.595 ms, 99th percentile=0.184 ms -12:57:28.945: ┃ ┃ ┗render_main_texture: min=0.001 ms, median=0.086 ms, max=4.594 ms, 99th percentile=0.18 ms -12:57:28.945: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=0.051 ms, 99th percentile=0.002 ms -12:57:28.945: ┗render_displays: min=0.002 ms, median=0.059 ms, max=32.53 ms, 99th percentile=0.277 ms -12:57:28.945: ================================================= -12:57:28.945: == Profiler Time Between Calls ================== -12:57:28.945: obs_hotkey_thread(25 ms): min=25.005 ms, median=25.055 ms, max=27.01 ms, 99.8802% within ±2% of 25 ms (0% lower, 0.11976% higher) -12:57:28.945: obs_graphics_thread(16.6667 ms): min=0.905 ms, median=16.667 ms, max=32.998 ms, 99.5368% within ±2% of 16.667 ms (0.25555% lower, 0.207635% higher) -12:57:28.945: ================================================= -12:57:28.946: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-29 14-59-21.txt b/obs-settings/Settings-files/logs/2025-11-29 14-59-21.txt deleted file mode 100644 index 72aad12..0000000 --- a/obs-settings/Settings-files/logs/2025-11-29 14-59-21.txt +++ /dev/null @@ -1,404 +0,0 @@ -14:59:21.925: Platform: Wayland -14:59:21.925: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -14:59:21.925: CPU Speed: 4814.800MHz -14:59:21.925: Physical Cores: 8, Logical Cores: 8 -14:59:21.925: Physical Memory: 31168MB Total, 8993MB Free -14:59:21.925: Kernel Version: Linux 6.17.9-1-default -14:59:21.926: Flatpak Branch: stable -14:59:21.926: Flatpak Arch: x86_64 -14:59:21.926: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -14:59:21.926: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -14:59:21.926: App Extensions: -14:59:21.926: - com.obsproject.Studio.Plugin.OBSVkCapture -14:59:21.926: - com.obsproject.Studio.Plugin.SourceClone -14:59:21.926: - com.obsproject.Studio.Plugin.SourceRecord -14:59:21.926: - com.obsproject.Studio.Plugin.WaylandHotkeys -14:59:21.926: - org.freedesktop.LinuxAudio.Plugins.TAP -14:59:21.926: - org.freedesktop.LinuxAudio.Plugins.swh -14:59:21.926: - com.obsproject.Studio.Locale -14:59:21.926: Runtime Extensions: -14:59:21.926: - org.freedesktop.Platform.GL.default -14:59:21.926: - org.freedesktop.Platform.openh264 -14:59:21.926: - org.gtk.Gtk3theme.Breeze -14:59:21.926: - org.kde.Platform.Locale -14:59:21.926: - org.freedesktop.Platform.GL.default -14:59:21.926: Flatpak Framework Version: 1.16.1 -14:59:21.926: Desktop Environment: GNOME (gnome) -14:59:21.926: Session Type: wayland -14:59:21.927: Current Date/Time: 2025-11-29, 14:59:21 -14:59:21.927: Browser Hardware Acceleration: true -14:59:21.927: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -14:59:21.927: Portable mode: false -14:59:21.969: OBS 32.0.2 (linux) -14:59:21.969: --------------------------------- -14:59:21.970: --------------------------------- -14:59:21.970: audio settings reset: -14:59:21.970: samples per sec: 48000 -14:59:21.970: speakers: 2 -14:59:21.970: max buffering: 960 milliseconds -14:59:21.970: buffering type: dynamically increasing -14:59:21.971: --------------------------------- -14:59:21.971: Initializing OpenGL... -14:59:21.971: Using EGL/Wayland -14:59:22.199: Initialized EGL 1.5 -14:59:22.211: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -14:59:22.211: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -14:59:22.237: --------------------------------- -14:59:22.237: video settings reset: -14:59:22.237: base resolution: 3440x1440 -14:59:22.237: output resolution: 3440x1440 -14:59:22.237: downscale filter: Bicubic -14:59:22.237: fps: 60/1 -14:59:22.237: format: NV12 -14:59:22.237: YUV mode: Rec. 709/Partial -14:59:22.237: NV12 texture support enabled -14:59:22.237: P010 texture support not available -14:59:22.240: Audio monitoring device: -14:59:22.240: name: Default -14:59:22.240: id: default -14:59:22.241: --------------------------------- -14:59:22.256: No AJA devices found, skipping loading AJA UI plugin -14:59:22.257: Failed to initialize module 'aja-output-ui.so' -14:59:22.268: No AJA devices found, skipping loading AJA plugin -14:59:22.268: Failed to initialize module 'aja.so' -14:59:22.561: [pipewire] Available capture sources: -14:59:22.561: [pipewire] - Monitor source -14:59:22.561: [pipewire] - Window source -14:59:22.583: v4l2loopback not installed, virtual camera not registered -14:59:22.586: [obs-browser]: Version 2.26.3 -14:59:22.586: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -14:59:22.598: VAAPI: API version 1.22 -14:59:22.600: FFmpeg VAAPI H264 encoding supported -14:59:22.603: FFmpeg VAAPI AV1 encoding supported -14:59:22.606: FFmpeg VAAPI HEVC encoding supported -14:59:22.614: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -14:59:22.614: -14:59:22.614: NVENC not supported -14:59:22.614: Failed to initialize module 'obs-nvenc.so' -14:59:22.648: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -14:59:22.648: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -14:59:22.648: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -14:59:22.651: [obs-websocket] [obs_module_load] Module loaded. -14:59:22.657: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -14:59:22.657: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -14:59:22.664: Failed to load 'en-GB' text for module: 'source-clone.so' -14:59:22.664: [Source Clone] loaded version 0.2.0 -14:59:22.665: Failed to load 'en-GB' text for module: 'source-record.so' -14:59:22.665: [Source Record] loaded version 0.4.6 -14:59:22.665: --------------------------------- -14:59:22.665: Loaded Modules: -14:59:22.665: source-record.so -14:59:22.665: source-clone.so -14:59:22.665: obs-wayland-hotkeys.so -14:59:22.665: linux-vkcapture.so -14:59:22.665: text-freetype2.so -14:59:22.665: rtmp-services.so -14:59:22.665: obs-x264.so -14:59:22.665: obs-websocket.so -14:59:22.665: obs-webrtc.so -14:59:22.665: obs-vst.so -14:59:22.665: obs-transitions.so -14:59:22.665: obs-qsv11.so -14:59:22.665: obs-outputs.so -14:59:22.665: obs-libfdk.so -14:59:22.665: obs-filters.so -14:59:22.665: obs-ffmpeg.so -14:59:22.665: obs-browser.so -14:59:22.665: linux-v4l2.so -14:59:22.665: linux-pulseaudio.so -14:59:22.665: linux-pipewire.so -14:59:22.665: linux-jack.so -14:59:22.665: linux-capture.so -14:59:22.665: image-source.so -14:59:22.665: frontend-tools.so -14:59:22.665: --------------------------------- -14:59:22.666: --------------------------------- -14:59:22.666: Available Encoders: -14:59:22.666: Video Encoders: -14:59:22.666: - ffmpeg_svt_av1 (SVT-AV1) -14:59:22.666: - ffmpeg_aom_av1 (AOM AV1) -14:59:22.666: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -14:59:22.666: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -14:59:22.666: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -14:59:22.666: - obs_x264 (x264) -14:59:22.666: Audio Encoders: -14:59:22.666: - ffmpeg_aac (FFmpeg AAC) -14:59:22.666: - ffmpeg_opus (FFmpeg Opus) -14:59:22.666: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -14:59:22.666: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -14:59:22.666: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -14:59:22.666: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -14:59:22.666: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -14:59:22.666: - libfdk_aac (libfdk AAC) -14:59:22.666: ==== Startup complete =============================================== -14:59:22.696: All scene data cleared -14:59:22.697: ------------------------------------------------ -14:59:22.700: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:59:22.701: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -14:59:22.701: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -14:59:22.701: [Loaded global audio device]: 'Desktop Audio' -14:59:22.701: - filter: 'Compressor' (compressor_filter) -14:59:22.701: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:59:22.701: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -14:59:22.701: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -14:59:22.701: [Loaded global audio device]: 'Mic/Aux' -14:59:22.701: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -14:59:22.701: - filter: 'Compressor' (compressor_filter) -14:59:22.701: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:59:22.702: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:59:22.702: pulse-input: Started recording from 'GameSink.monitor' -14:59:22.702: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:59:22.702: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:59:22.702: pulse-input: Started recording from 'DiscordSink.monitor' -14:59:22.702: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:59:22.702: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:59:22.703: pulse-input: Started recording from 'MusicSink.monitor' -14:59:22.703: PipeWire initialized -14:59:22.703: PipeWire initialized -14:59:22.703: v4l2-input: Start capture from /dev/video0 -14:59:22.717: Device for 'Audio Output Capture' source is also used for audio monitoring: -14:59:22.717: Deduplication logic is being applied to all monitored sources. -14:59:22.717: -14:59:22.808: v4l2-input: Input: 0 -14:59:22.838: v4l2-input: Resolution: 864x480 -14:59:22.838: v4l2-input: Pixelformat: YUYV -14:59:22.839: v4l2-input: Linesize: 1728 Bytes -14:59:22.853: v4l2-input: Framerate: 24.00 fps -14:59:22.854: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -14:59:22.855: Switched to scene 'Scene' -14:59:22.855: ------------------------------------------------ -14:59:22.855: Loaded scenes: -14:59:22.855: - scene 'Scene': -14:59:22.855: - source: 'Game Sink' (pulse_output_capture) -14:59:22.855: - source: 'Discord Sink' (pulse_output_capture) -14:59:22.855: - source: 'Music Sink' (pulse_output_capture) -14:59:22.855: - source: 'App' (pipewire-screen-capture-source) -14:59:22.855: - source: 'Screen' (pipewire-screen-capture-source) -14:59:22.855: - source: 'Cam' (v4l2_input) -14:59:22.855: - scene 'Cam Scene': -14:59:22.855: - source: 'Cam' (v4l2_input) -14:59:22.855: - source: 'Game Sink' (pulse_output_capture) -14:59:22.855: - source: 'Discord Sink' (pulse_output_capture) -14:59:22.855: - source: 'Music Sink' (pulse_output_capture) -14:59:22.855: ------------------------------------------------ -14:59:22.917: [pipewire] Screencast session created -14:59:22.917: [pipewire] Screencast session created -14:59:22.939: [pipewire] Asking for monitor and window -14:59:22.939: [pipewire] Asking for monitor and window -14:59:23.021: [pipewire] source selected, setting up screencast -14:59:23.033: [pipewire] Server version: 1.5.83 -14:59:23.033: [pipewire] Library version: 1.2.4 -14:59:23.033: [pipewire] Header version: 1.2.4 -14:59:23.033: [pipewire] Created stream 0x55641923f2f0 -14:59:23.033: [pipewire] Stream 0x55641923f2f0 state: "connecting" (error: none) -14:59:23.033: [pipewire] Playing stream 0x55641923f2f0 -14:59:23.033: [pipewire] Stream 0x55641923f2f0 state: "paused" (error: none) -14:59:23.049: [pipewire] Negotiated format: -14:59:23.049: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:59:23.049: [pipewire] Modifier: 0x0 -14:59:23.049: [pipewire] Size: 3440x1440 -14:59:23.049: [pipewire] Framerate: 0/1 -14:59:23.049: [pipewire] Negotiated format: -14:59:23.049: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:59:23.049: [pipewire] Modifier: 0x200000028a01f04 -14:59:23.049: [pipewire] Size: 3440x1440 -14:59:23.049: [pipewire] Framerate: 0/1 -14:59:23.067: [pipewire] Stream 0x55641923f2f0 state: "streaming" (error: none) -14:59:23.250: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -14:59:23.250: -14:59:23.336: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Music Sink) -14:59:23.336: -14:59:23.357: adding 21 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -14:59:23.357: -14:59:30.745: [pipewire] source selected, setting up screencast -14:59:30.747: [pipewire] Server version: 1.5.83 -14:59:30.747: [pipewire] Library version: 1.2.4 -14:59:30.747: [pipewire] Header version: 1.2.4 -14:59:30.747: [pipewire] Created stream 0x55641b4805b0 -14:59:30.747: [pipewire] Stream 0x55641b4805b0 state: "connecting" (error: none) -14:59:30.754: [pipewire] Playing stream 0x55641b4805b0 -14:59:30.755: [pipewire] Stream 0x55641b4805b0 state: "paused" (error: none) -14:59:30.772: [pipewire] Negotiated format: -14:59:30.772: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:59:30.772: [pipewire] Modifier: 0x0 -14:59:30.772: [pipewire] Size: 3440x1440 -14:59:30.772: [pipewire] Framerate: 0/1 -14:59:30.774: [pipewire] Negotiated format: -14:59:30.774: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:59:30.774: [pipewire] Modifier: 0x200000028a01f04 -14:59:30.774: [pipewire] Size: 3440x1440 -14:59:30.774: [pipewire] Framerate: 0/1 -14:59:30.778: [pipewire] Stream 0x55641b4805b0 state: "streaming" (error: none) -15:00:04.849: [pipewire] Stream 0x55641923f2f0 state: "paused" (error: none) -15:00:04.852: [pipewire] Stream 0x55641b4805b0 state: "paused" (error: none) -15:00:12.736: [pipewire] Stream 0x55641923f2f0 state: "unconnected" (error: none) -15:00:12.737: PipeWire initialized -15:00:12.738: [pipewire] Screencast session created -15:00:12.739: [pipewire] Asking for monitor and window -15:00:16.864: [pipewire] source selected, setting up screencast -15:00:16.866: [pipewire] Server version: 1.5.83 -15:00:16.866: [pipewire] Library version: 1.2.4 -15:00:16.866: [pipewire] Header version: 1.2.4 -15:00:16.866: [pipewire] Created stream 0x55641b536ab0 -15:00:16.866: [pipewire] Stream 0x55641b536ab0 state: "connecting" (error: none) -15:00:16.866: [pipewire] Playing stream 0x55641b536ab0 -15:00:16.867: [pipewire] Stream 0x55641b536ab0 state: "paused" (error: none) -15:00:16.895: [pipewire] Negotiated format: -15:00:16.895: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:00:16.895: [pipewire] Modifier: 0x0 -15:00:16.895: [pipewire] Size: 3440x1440 -15:00:16.895: [pipewire] Framerate: 0/1 -15:00:16.897: [pipewire] Negotiated format: -15:00:16.897: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:00:16.897: [pipewire] Modifier: 0x200000028a01f04 -15:00:16.897: [pipewire] Size: 3440x1440 -15:00:16.897: [pipewire] Framerate: 0/1 -15:00:16.902: [pipewire] Stream 0x55641b536ab0 state: "streaming" (error: none) -15:04:12.433: --------------------------------- -15:04:12.433: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -15:04:12.433: device: /dev/dri/by-path/pci-0000:03:00.0-render -15:04:12.433: rate_control: CBR -15:04:12.433: profile: 100 -15:04:12.433: level: -99 -15:04:12.433: qp: 0 -15:04:12.433: bitrate: 35000 -15:04:12.433: maxrate: 35000 -15:04:12.433: keyint: 120 -15:04:12.433: width: 3440 -15:04:12.433: height: 1440 -15:04:12.433: b-frames: 0 -15:04:12.433: ffmpeg opts: -15:04:12.433: -15:04:12.437: libfdk_aac encoder created -15:04:12.437: libfdk_aac bitrate: 160, channels: 2 -15:04:12.437: libfdk_aac encoder created -15:04:12.437: libfdk_aac bitrate: 160, channels: 2 -15:04:12.437: libfdk_aac encoder created -15:04:12.438: libfdk_aac bitrate: 160, channels: 2 -15:04:12.438: libfdk_aac encoder created -15:04:12.438: libfdk_aac bitrate: 160, channels: 2 -15:04:12.446: ==== Replay Buffer Start =========================================== -15:04:36.929: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b514dc0 -15:04:37.629: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641d49e2d0 -15:04:37.663: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x556419250eb0 -15:04:37.693: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b534820 -15:04:38.572: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b4a3590 -15:04:38.711: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641925dce0 -15:04:38.800: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x556419242560 -15:04:39.490: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b485af0 -15:04:39.514: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b534820 -15:04:39.549: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b49fe70 -15:04:40.749: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b4b06f0 -15:04:42.605: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b534820 -15:04:44.283: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641b4a4f70 -15:04:46.157: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55641b74c310 with focusing surface 0x55641925f6c0 -15:04:54.152: Output 'Replay Buffer': stopping -15:04:54.152: Output 'Replay Buffer': Total frames output: 2495 -15:04:54.152: Output 'Replay Buffer': Total drawn frames: 2502 -15:04:54.152: ==== Replay Buffer Stop ============================================ -15:04:54.153: libfdk_aac encoder destroyed -15:04:54.153: libfdk_aac encoder destroyed -15:04:54.153: libfdk_aac encoder destroyed -15:04:54.153: libfdk_aac encoder destroyed -15:04:56.293: ==== Shutting down ================================================== -15:04:56.296: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -15:04:56.296: pulse-input: Got 13343 packets with 16011600 frames -15:04:56.296: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -15:04:56.296: pulse-input: Got 13339 packets with 16006800 frames -15:04:56.297: [pipewire] Stream 0x55641b4805b0 state: "unconnected" (error: none) -15:04:56.309: [pipewire] Stream 0x55641b536ab0 state: "paused" (error: none) -15:04:56.310: [pipewire] Stream 0x55641b536ab0 state: "unconnected" (error: none) -15:04:56.375: v4l2-input: /dev/video0: Stopped capture after 5000 frames -15:04:56.430: pulse-input: Stopped recording from 'GameSink.monitor' -15:04:56.430: pulse-input: Got 13346 packets with 16015200 frames -15:04:56.430: pulse-input: Stopped recording from 'DiscordSink.monitor' -15:04:56.430: pulse-input: Got 13346 packets with 16015200 frames -15:04:56.430: pulse-input: Stopped recording from 'MusicSink.monitor' -15:04:56.430: pulse-input: Got 13346 packets with 16015200 frames -15:04:56.461: All scene data cleared -15:04:56.461: ------------------------------------------------ -15:04:56.498: [linux-vkcapture] plugin unloaded -15:04:56.499: [obs-websocket] [obs_module_unload] Shutting down... -15:04:56.499: Tried to call obs_frontend_remove_event_callback with no callbacks! -15:04:56.499: [obs-websocket] [obs_module_unload] Finished shutting down. -15:04:56.503: [Scripting] Total detached callbacks: 0 -15:04:56.503: Freeing OBS context data -15:04:56.510: == Profiler Results ============================= -15:04:56.510: run_program_init: 1198.78 ms -15:04:56.510: ┣OBSApp::AppInit: 15.178 ms -15:04:56.510: ┃ ┗OBSApp::InitLocale: 2.549 ms -15:04:56.510: ┗OBSApp::OBSInit: 971.309 ms -15:04:56.510: ┣obs_startup: 1.771 ms -15:04:56.510: ┗OBSBasic::OBSInit: 927.377 ms -15:04:56.510: ┣OBSBasic::InitBasicConfig: 0.83 ms -15:04:56.510: ┣OBSBasic::ResetAudio: 0.155 ms -15:04:56.510: ┣OBSBasic::ResetVideo: 269.707 ms -15:04:56.510: ┃ ┗obs_init_graphics: 266.917 ms -15:04:56.510: ┃ ┗shader compilation: 25.57 ms -15:04:56.510: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -15:04:56.510: ┣OBSBasic::InitHotkeys: 0.012 ms -15:04:56.510: ┣obs_load_all_modules2: 423.525 ms -15:04:56.510: ┃ ┣obs_init_module(aja-output-ui.so): 0.051 ms -15:04:56.510: ┃ ┣obs_init_module(aja.so): 0.041 ms -15:04:56.510: ┃ ┣obs_init_module(frontend-tools.so): 72.679 ms -15:04:56.510: ┃ ┣obs_init_module(image-source.so): 0.005 ms -15:04:56.510: ┃ ┣obs_init_module(linux-capture.so): 0 ms -15:04:56.510: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -15:04:56.510: ┃ ┣obs_init_module(linux-pipewire.so): 8.951 ms -15:04:56.510: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -15:04:56.510: ┃ ┣obs_init_module(linux-v4l2.so): 16.556 ms -15:04:56.510: ┃ ┣obs_init_module(obs-browser.so): 0.037 ms -15:04:56.510: ┃ ┣obs_init_module(obs-ffmpeg.so): 17.194 ms -15:04:56.510: ┃ ┣obs_init_module(obs-filters.so): 0.009 ms -15:04:56.510: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms -15:04:56.510: ┃ ┣obs_init_module(obs-nvenc.so): 0.081 ms -15:04:56.510: ┃ ┃ ┗nvenc_check: 0.064 ms -15:04:56.510: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -15:04:56.510: ┃ ┣obs_init_module(obs-qsv11.so): 11.023 ms -15:04:56.510: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -15:04:56.510: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -15:04:56.510: ┃ ┣obs_init_module(obs-webrtc.so): 0.01 ms -15:04:56.510: ┃ ┣obs_init_module(obs-websocket.so): 2.857 ms -15:04:56.510: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -15:04:56.510: ┃ ┣obs_init_module(rtmp-services.so): 0.746 ms -15:04:56.510: ┃ ┣obs_init_module(text-freetype2.so): 0.01 ms -15:04:56.510: ┃ ┣obs_init_module(linux-vkcapture.so): 0.042 ms -15:04:56.510: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -15:04:56.510: ┃ ┣obs_init_module(source-clone.so): 0.009 ms -15:04:56.510: ┃ ┗obs_init_module(source-record.so): 0.017 ms -15:04:56.510: ┣OBSBasic::InitService: 1.366 ms -15:04:56.510: ┣OBSBasic::ResetOutputs: 3.001 ms -15:04:56.510: ┣OBSBasic::CreateHotkeys: 0.016 ms -15:04:56.510: ┣OBSBasic::InitPrimitives: 0.054 ms -15:04:56.510: ┗OBSBasic::Load: 187.491 ms -15:04:56.510: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.009 ms, 99th percentile=0.001 ms, 100% below 25 ms -15:04:56.510: audio_thread(Audio): min=0.003 ms, median=0.051 ms, max=1.468 ms, 99th percentile=0.455 ms -15:04:56.510: ┗receive_audio: min=0 ms, median=0.069 ms, max=1.282 ms, 99th percentile=0.211 ms, 0.498948 calls per parent call -15:04:56.510: ┣buffer_audio: min=0 ms, median=0 ms, max=0.032 ms, 99th percentile=0.001 ms -15:04:56.510: ┗do_encode: min=0.025 ms, median=0.069 ms, max=1.282 ms, 99th percentile=0.21 ms -15:04:56.510: ┣encode(Track1): min=0.034 ms, median=0.093 ms, max=0.317 ms, 99th percentile=0.149 ms, 0.25 calls per parent call -15:04:56.510: ┣send_packet: min=0 ms, median=0.001 ms, max=1.155 ms, 99th percentile=0.009 ms -15:04:56.510: ┣encode(Track2): min=0.026 ms, median=0.029 ms, max=0.045 ms, 99th percentile=0.041 ms, 0.25 calls per parent call -15:04:56.510: ┣encode(Track3): min=0.029 ms, median=0.152 ms, max=0.306 ms, 99th percentile=0.225 ms, 0.25 calls per parent call -15:04:56.510: ┗encode(Track4): min=0.025 ms, median=0.029 ms, max=0.201 ms, 99th percentile=0.124 ms, 0.25 calls per parent call -15:04:56.510: obs_graphics_thread(16.6667 ms): min=0.047 ms, median=0.214 ms, max=39.357 ms, 99th percentile=0.474 ms, 99.9801% below 16.667 ms -15:04:56.510: ┣tick_sources: min=0 ms, median=0.004 ms, max=15.977 ms, 99th percentile=0.011 ms -15:04:56.510: ┣output_frame: min=0.036 ms, median=0.107 ms, max=4.304 ms, 99th percentile=0.272 ms -15:04:56.510: ┃ ┗gs_context(video->graphics): min=0.036 ms, median=0.107 ms, max=4.304 ms, 99th percentile=0.272 ms -15:04:56.510: ┃ ┣render_video: min=0.006 ms, median=0.103 ms, max=4.298 ms, 99th percentile=0.264 ms -15:04:56.510: ┃ ┃ ┣render_main_texture: min=0.004 ms, median=0.098 ms, max=3.276 ms, 99th percentile=0.244 ms -15:04:56.510: ┃ ┃ ┣render_convert_texture: min=0.012 ms, median=0.015 ms, max=0.378 ms, 99th percentile=0.028 ms, 0.124813 calls per parent call -15:04:56.510: ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.001 ms, max=0.017 ms, 99th percentile=0.002 ms, 0.124813 calls per parent call -15:04:56.510: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=0.209 ms, 99th percentile=0.031 ms -15:04:56.510: ┗render_displays: min=0.002 ms, median=0.091 ms, max=39.168 ms, 99th percentile=0.259 ms -15:04:56.510: obs_gpu_encode_thread(16.6667 ms): min=0.131 ms, median=0.284 ms, max=15.535 ms, 99th percentile=5.463 ms, 100% below 16.667 ms -15:04:56.510: ┣gpu_encode_frame: min=0.129 ms, median=0.28 ms, max=15.531 ms, 99th percentile=5.459 ms -15:04:56.510: ┗send_packet: min=0.001 ms, median=0.002 ms, max=0.031 ms, 99th percentile=0.005 ms -15:04:56.510: OBSBasicSettings::LoadThemeList: 0.103 ms -15:04:56.510: ================================================= -15:04:56.511: == Profiler Time Between Calls ================== -15:04:56.511: obs_hotkey_thread(25 ms): min=25.005 ms, median=25.055 ms, max=33.306 ms, 99.7004% within ±2% of 25 ms (0% lower, 0.299625% higher) -15:04:56.511: obs_graphics_thread(16.6667 ms): min=1.733 ms, median=16.667 ms, max=39.361 ms, 99.4814% within ±2% of 16.667 ms (0.259313% lower, 0.259313% higher) -15:04:56.511: obs_gpu_encode_thread(16.6667 ms): min=12.363 ms, median=16.666 ms, max=21.009 ms, 99.36% within ±2% of 16.667 ms (0.32% lower, 0.32% higher) -15:04:56.511: ================================================= -15:04:56.515: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-29 15-04-58.txt b/obs-settings/Settings-files/logs/2025-11-29 15-04-58.txt deleted file mode 100644 index 64bc636..0000000 --- a/obs-settings/Settings-files/logs/2025-11-29 15-04-58.txt +++ /dev/null @@ -1,364 +0,0 @@ -15:04:58.705: Platform: Wayland -15:04:58.705: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -15:04:58.705: CPU Speed: 4866.007MHz -15:04:58.706: Physical Cores: 8, Logical Cores: 8 -15:04:58.706: Physical Memory: 31168MB Total, 6284MB Free -15:04:58.706: Kernel Version: Linux 6.17.9-1-default -15:04:58.706: Flatpak Branch: stable -15:04:58.706: Flatpak Arch: x86_64 -15:04:58.706: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -15:04:58.706: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -15:04:58.706: App Extensions: -15:04:58.706: - com.obsproject.Studio.Plugin.OBSVkCapture -15:04:58.706: - com.obsproject.Studio.Plugin.SourceClone -15:04:58.706: - com.obsproject.Studio.Plugin.SourceRecord -15:04:58.706: - com.obsproject.Studio.Plugin.WaylandHotkeys -15:04:58.706: - org.freedesktop.LinuxAudio.Plugins.TAP -15:04:58.706: - org.freedesktop.LinuxAudio.Plugins.swh -15:04:58.706: - com.obsproject.Studio.Locale -15:04:58.706: Runtime Extensions: -15:04:58.706: - org.freedesktop.Platform.GL.default -15:04:58.706: - org.freedesktop.Platform.openh264 -15:04:58.706: - org.gtk.Gtk3theme.Breeze -15:04:58.706: - org.kde.Platform.Locale -15:04:58.706: - org.freedesktop.Platform.GL.default -15:04:58.706: Flatpak Framework Version: 1.16.1 -15:04:58.706: Desktop Environment: GNOME (gnome) -15:04:58.706: Session Type: wayland -15:04:58.707: Current Date/Time: 2025-11-29, 15:04:58 -15:04:58.707: Browser Hardware Acceleration: true -15:04:58.707: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -15:04:58.707: Portable mode: false -15:04:58.732: OBS 32.0.2 (linux) -15:04:58.732: --------------------------------- -15:04:58.733: --------------------------------- -15:04:58.733: audio settings reset: -15:04:58.733: samples per sec: 48000 -15:04:58.733: speakers: 2 -15:04:58.733: max buffering: 960 milliseconds -15:04:58.733: buffering type: dynamically increasing -15:04:58.733: --------------------------------- -15:04:58.733: Initializing OpenGL... -15:04:58.733: Using EGL/Wayland -15:04:58.754: Initialized EGL 1.5 -15:04:58.763: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -15:04:58.763: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -15:04:58.783: --------------------------------- -15:04:58.783: video settings reset: -15:04:58.783: base resolution: 3440x1440 -15:04:58.783: output resolution: 3440x1440 -15:04:58.783: downscale filter: Bicubic -15:04:58.783: fps: 60/1 -15:04:58.783: format: NV12 -15:04:58.783: YUV mode: Rec. 709/Partial -15:04:58.783: NV12 texture support enabled -15:04:58.783: P010 texture support not available -15:04:58.786: Audio monitoring device: -15:04:58.786: name: Default -15:04:58.786: id: default -15:04:58.787: --------------------------------- -15:04:58.790: No AJA devices found, skipping loading AJA UI plugin -15:04:58.790: Failed to initialize module 'aja-output-ui.so' -15:04:58.792: No AJA devices found, skipping loading AJA plugin -15:04:58.792: Failed to initialize module 'aja.so' -15:04:58.862: [pipewire] Available capture sources: -15:04:58.862: [pipewire] - Monitor source -15:04:58.862: [pipewire] - Window source -15:04:58.869: v4l2loopback not installed, virtual camera not registered -15:04:58.869: [obs-browser]: Version 2.26.3 -15:04:58.869: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -15:04:58.873: VAAPI: API version 1.22 -15:04:58.873: FFmpeg VAAPI H264 encoding supported -15:04:58.876: FFmpeg VAAPI AV1 encoding supported -15:04:58.879: FFmpeg VAAPI HEVC encoding supported -15:04:58.880: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -15:04:58.880: -15:04:58.880: NVENC not supported -15:04:58.880: Failed to initialize module 'obs-nvenc.so' -15:04:58.896: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -15:04:58.896: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -15:04:58.896: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -15:04:58.899: [obs-websocket] [obs_module_load] Module loaded. -15:04:58.900: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -15:04:58.901: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -15:04:58.901: Skipping module 'obs-wayland-hotkeys', is disabled -15:04:58.901: Failed to load 'en-GB' text for module: 'source-clone.so' -15:04:58.901: [Source Clone] loaded version 0.2.0 -15:04:58.901: Failed to load 'en-GB' text for module: 'source-record.so' -15:04:58.901: [Source Record] loaded version 0.4.6 -15:04:58.901: --------------------------------- -15:04:58.901: Loaded Modules: -15:04:58.901: source-record.so -15:04:58.901: source-clone.so -15:04:58.901: linux-vkcapture.so -15:04:58.901: text-freetype2.so -15:04:58.901: rtmp-services.so -15:04:58.901: obs-x264.so -15:04:58.901: obs-websocket.so -15:04:58.901: obs-webrtc.so -15:04:58.901: obs-vst.so -15:04:58.901: obs-transitions.so -15:04:58.901: obs-qsv11.so -15:04:58.901: obs-outputs.so -15:04:58.901: obs-libfdk.so -15:04:58.901: obs-filters.so -15:04:58.901: obs-ffmpeg.so -15:04:58.901: obs-browser.so -15:04:58.901: linux-v4l2.so -15:04:58.901: linux-pulseaudio.so -15:04:58.901: linux-pipewire.so -15:04:58.901: linux-jack.so -15:04:58.901: linux-capture.so -15:04:58.901: image-source.so -15:04:58.901: frontend-tools.so -15:04:58.901: --------------------------------- -15:04:58.901: --------------------------------- -15:04:58.901: Available Encoders: -15:04:58.901: Video Encoders: -15:04:58.901: - ffmpeg_svt_av1 (SVT-AV1) -15:04:58.901: - ffmpeg_aom_av1 (AOM AV1) -15:04:58.901: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -15:04:58.901: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -15:04:58.901: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -15:04:58.901: - obs_x264 (x264) -15:04:58.901: Audio Encoders: -15:04:58.901: - ffmpeg_aac (FFmpeg AAC) -15:04:58.901: - ffmpeg_opus (FFmpeg Opus) -15:04:58.901: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -15:04:58.901: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -15:04:58.901: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -15:04:58.901: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -15:04:58.901: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -15:04:58.901: - libfdk_aac (libfdk AAC) -15:04:58.901: ==== Startup complete =============================================== -15:04:58.926: All scene data cleared -15:04:58.926: ------------------------------------------------ -15:04:58.930: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:04:58.930: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -15:04:58.930: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -15:04:58.930: [Loaded global audio device]: 'Desktop Audio' -15:04:58.930: - filter: 'Compressor' (compressor_filter) -15:04:58.930: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:04:58.930: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -15:04:58.930: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -15:04:58.931: [Loaded global audio device]: 'Mic/Aux' -15:04:58.931: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -15:04:58.931: - filter: 'Compressor' (compressor_filter) -15:04:58.931: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:04:58.931: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:04:58.931: pulse-input: Started recording from 'GameSink.monitor' -15:04:58.932: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:04:58.932: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:04:58.932: pulse-input: Started recording from 'DiscordSink.monitor' -15:04:58.932: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:04:58.932: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:04:58.932: pulse-input: Started recording from 'MusicSink.monitor' -15:04:58.932: PipeWire initialized -15:04:58.932: PipeWire initialized -15:04:58.932: v4l2-input: Start capture from /dev/video0 -15:04:58.946: Device for 'Audio Output Capture' source is also used for audio monitoring: -15:04:58.946: Deduplication logic is being applied to all monitored sources. -15:04:58.946: -15:04:59.059: v4l2-input: Input: 0 -15:04:59.088: v4l2-input: Resolution: 864x480 -15:04:59.088: v4l2-input: Pixelformat: YUYV -15:04:59.089: v4l2-input: Linesize: 1728 Bytes -15:04:59.103: v4l2-input: Framerate: 24.00 fps -15:04:59.104: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -15:04:59.105: Switched to scene 'Scene' -15:04:59.105: ------------------------------------------------ -15:04:59.105: Loaded scenes: -15:04:59.105: - scene 'Scene': -15:04:59.105: - source: 'Game Sink' (pulse_output_capture) -15:04:59.105: - source: 'Discord Sink' (pulse_output_capture) -15:04:59.105: - source: 'Music Sink' (pulse_output_capture) -15:04:59.105: - source: 'App' (pipewire-screen-capture-source) -15:04:59.105: - source: 'Screen' (pipewire-screen-capture-source) -15:04:59.105: - source: 'Cam' (v4l2_input) -15:04:59.105: - scene 'Cam Scene': -15:04:59.105: - source: 'Cam' (v4l2_input) -15:04:59.105: - source: 'Game Sink' (pulse_output_capture) -15:04:59.105: - source: 'Discord Sink' (pulse_output_capture) -15:04:59.105: - source: 'Music Sink' (pulse_output_capture) -15:04:59.105: ------------------------------------------------ -15:04:59.154: [pipewire] Screencast session created -15:04:59.155: [pipewire] Screencast session created -15:04:59.174: [pipewire] Asking for monitor and window -15:04:59.174: [pipewire] Asking for monitor and window -15:04:59.206: [pipewire] source selected, setting up screencast -15:04:59.214: [pipewire] source selected, setting up screencast -15:04:59.218: [pipewire] Server version: 1.5.83 -15:04:59.218: [pipewire] Library version: 1.2.4 -15:04:59.218: [pipewire] Header version: 1.2.4 -15:04:59.218: [pipewire] Created stream 0x559c472a1310 -15:04:59.218: [pipewire] Stream 0x559c472a1310 state: "connecting" (error: none) -15:04:59.218: [pipewire] Playing stream 0x559c472a1310 -15:04:59.223: [pipewire] Stream 0x559c472a1310 state: "paused" (error: none) -15:04:59.224: [pipewire] Server version: 1.5.83 -15:04:59.224: [pipewire] Library version: 1.2.4 -15:04:59.224: [pipewire] Header version: 1.2.4 -15:04:59.224: [pipewire] Created stream 0x559c49507fe0 -15:04:59.225: [pipewire] Stream 0x559c49507fe0 state: "connecting" (error: none) -15:04:59.225: [pipewire] Playing stream 0x559c49507fe0 -15:04:59.225: [pipewire] Stream 0x559c49507fe0 state: "paused" (error: none) -15:04:59.249: [pipewire] Negotiated format: -15:04:59.249: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:04:59.249: [pipewire] Modifier: 0x0 -15:04:59.249: [pipewire] Size: 3440x1440 -15:04:59.249: [pipewire] Framerate: 0/1 -15:04:59.250: [pipewire] Negotiated format: -15:04:59.250: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:04:59.250: [pipewire] Modifier: 0x200000028a01f04 -15:04:59.250: [pipewire] Size: 3440x1440 -15:04:59.250: [pipewire] Framerate: 0/1 -15:04:59.255: [pipewire] Negotiated format: -15:04:59.255: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:04:59.255: [pipewire] Modifier: 0x0 -15:04:59.255: [pipewire] Size: 3440x1440 -15:04:59.255: [pipewire] Framerate: 0/1 -15:04:59.255: [pipewire] Negotiated format: -15:04:59.255: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:04:59.255: [pipewire] Modifier: 0x200000028a01f04 -15:04:59.255: [pipewire] Size: 3440x1440 -15:04:59.256: [pipewire] Framerate: 0/1 -15:04:59.262: [pipewire] Stream 0x559c472a1310 state: "streaming" (error: none) -15:04:59.264: [pipewire] Stream 0x559c49507fe0 state: "streaming" (error: none) -15:04:59.480: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -15:04:59.480: -15:04:59.522: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Discord Sink) -15:04:59.522: -15:04:59.544: adding 21 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -15:04:59.544: -15:05:02.126: --------------------------------- -15:05:02.126: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -15:05:02.126: device: /dev/dri/by-path/pci-0000:03:00.0-render -15:05:02.126: rate_control: CBR -15:05:02.126: profile: 100 -15:05:02.126: level: -99 -15:05:02.126: qp: 0 -15:05:02.126: bitrate: 35000 -15:05:02.126: maxrate: 35000 -15:05:02.126: keyint: 120 -15:05:02.126: width: 3440 -15:05:02.126: height: 1440 -15:05:02.126: b-frames: 0 -15:05:02.126: ffmpeg opts: -15:05:02.126: -15:05:02.131: libfdk_aac encoder created -15:05:02.131: libfdk_aac bitrate: 160, channels: 2 -15:05:02.131: libfdk_aac encoder created -15:05:02.131: libfdk_aac bitrate: 160, channels: 2 -15:05:02.131: libfdk_aac encoder created -15:05:02.131: libfdk_aac bitrate: 160, channels: 2 -15:05:02.131: libfdk_aac encoder created -15:05:02.131: libfdk_aac bitrate: 160, channels: 2 -15:05:02.140: ==== Replay Buffer Start =========================================== -15:05:07.309: Output 'Replay Buffer': stopping -15:05:07.310: Output 'Replay Buffer': Total frames output: 303 -15:05:07.310: Output 'Replay Buffer': Total drawn frames: 310 -15:05:07.310: ==== Replay Buffer Stop ============================================ -15:05:07.316: libfdk_aac encoder destroyed -15:05:07.316: libfdk_aac encoder destroyed -15:05:07.316: libfdk_aac encoder destroyed -15:05:07.316: libfdk_aac encoder destroyed -15:05:12.729: ==== Shutting down ================================================== -15:05:12.731: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -15:05:12.731: pulse-input: Got 551 packets with 661200 frames -15:05:12.731: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -15:05:12.731: pulse-input: Got 551 packets with 661200 frames -15:05:12.731: [pipewire] Stream 0x559c49507fe0 state: "paused" (error: none) -15:05:12.732: [pipewire] Stream 0x559c49507fe0 state: "unconnected" (error: none) -15:05:12.736: [pipewire] Stream 0x559c472a1310 state: "paused" (error: none) -15:05:12.738: [pipewire] Stream 0x559c472a1310 state: "unconnected" (error: none) -15:05:12.772: v4l2-input: /dev/video0: Stopped capture after 200 frames -15:05:12.826: pulse-input: Stopped recording from 'GameSink.monitor' -15:05:12.826: pulse-input: Got 554 packets with 664800 frames -15:05:12.826: pulse-input: Stopped recording from 'DiscordSink.monitor' -15:05:12.826: pulse-input: Got 554 packets with 664800 frames -15:05:12.826: pulse-input: Stopped recording from 'MusicSink.monitor' -15:05:12.826: pulse-input: Got 553 packets with 663600 frames -15:05:12.856: All scene data cleared -15:05:12.856: ------------------------------------------------ -15:05:12.899: [linux-vkcapture] plugin unloaded -15:05:12.899: [obs-websocket] [obs_module_unload] Shutting down... -15:05:12.899: Tried to call obs_frontend_remove_event_callback with no callbacks! -15:05:12.899: [obs-websocket] [obs_module_unload] Finished shutting down. -15:05:12.903: [Scripting] Total detached callbacks: 0 -15:05:12.903: Freeing OBS context data -15:05:12.909: == Profiler Results ============================= -15:05:12.909: run_program_init: 508.537 ms -15:05:12.909: ┣OBSApp::AppInit: 9.621 ms -15:05:12.909: ┃ ┗OBSApp::InitLocale: 0.442 ms -15:05:12.909: ┗OBSApp::OBSInit: 439.914 ms -15:05:12.909: ┣obs_startup: 1.985 ms -15:05:12.909: ┗OBSBasic::OBSInit: 412.825 ms -15:05:12.909: ┣OBSBasic::InitBasicConfig: 0.432 ms -15:05:12.909: ┣OBSBasic::ResetAudio: 0.17 ms -15:05:12.909: ┣OBSBasic::ResetVideo: 52.746 ms -15:05:12.909: ┃ ┗obs_init_graphics: 50.286 ms -15:05:12.909: ┃ ┗shader compilation: 19.268 ms -15:05:12.909: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -15:05:12.909: ┣OBSBasic::InitHotkeys: 0.014 ms -15:05:12.909: ┣obs_load_all_modules2: 114.149 ms -15:05:12.909: ┃ ┣obs_init_module(aja-output-ui.so): 0.048 ms -15:05:12.909: ┃ ┣obs_init_module(aja.so): 0.037 ms -15:05:12.909: ┃ ┣obs_init_module(frontend-tools.so): 47.822 ms -15:05:12.909: ┃ ┣obs_init_module(image-source.so): 0.003 ms -15:05:12.909: ┃ ┣obs_init_module(linux-capture.so): 0 ms -15:05:12.909: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -15:05:12.909: ┃ ┣obs_init_module(linux-pipewire.so): 8.788 ms -15:05:12.909: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -15:05:12.909: ┃ ┣obs_init_module(linux-v4l2.so): 5.792 ms -15:05:12.909: ┃ ┣obs_init_module(obs-browser.so): 0.037 ms -15:05:12.909: ┃ ┣obs_init_module(obs-ffmpeg.so): 9.073 ms -15:05:12.909: ┃ ┣obs_init_module(obs-filters.so): 0.009 ms -15:05:12.909: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms -15:05:12.909: ┃ ┣obs_init_module(obs-nvenc.so): 0.067 ms -15:05:12.909: ┃ ┃ ┗nvenc_check: 0.052 ms -15:05:12.909: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -15:05:12.909: ┃ ┣obs_init_module(obs-qsv11.so): 11.023 ms -15:05:12.909: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -15:05:12.909: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -15:05:12.909: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms -15:05:12.909: ┃ ┣obs_init_module(obs-websocket.so): 2.886 ms -15:05:12.909: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -15:05:12.909: ┃ ┣obs_init_module(rtmp-services.so): 0.178 ms -15:05:12.909: ┃ ┣obs_init_module(text-freetype2.so): 0.006 ms -15:05:12.909: ┃ ┣obs_init_module(linux-vkcapture.so): 0.034 ms -15:05:12.909: ┃ ┣obs_init_module(source-clone.so): 0.008 ms -15:05:12.909: ┃ ┗obs_init_module(source-record.so): 0.016 ms -15:05:12.909: ┣OBSBasic::InitService: 0.797 ms -15:05:12.909: ┣OBSBasic::ResetOutputs: 2.999 ms -15:05:12.909: ┣OBSBasic::CreateHotkeys: 0.015 ms -15:05:12.909: ┣OBSBasic::InitPrimitives: 0.049 ms -15:05:12.909: ┗OBSBasic::Load: 205.477 ms -15:05:12.909: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.006 ms, 99th percentile=0.001 ms, 100% below 25 ms -15:05:12.909: audio_thread(Audio): min=0.004 ms, median=0.05 ms, max=0.667 ms, 99th percentile=0.475 ms -15:05:12.909: ┗receive_audio: min=0 ms, median=0.041 ms, max=0.414 ms, 99th percentile=0.201 ms, 1.46386 calls per parent call -15:05:12.909: ┣buffer_audio: min=0 ms, median=0 ms, max=0.008 ms, 99th percentile=0.001 ms -15:05:12.909: ┗do_encode: min=0.025 ms, median=0.063 ms, max=0.414 ms, 99th percentile=0.201 ms -15:05:12.909: ┣encode(Track1): min=0.061 ms, median=0.109 ms, max=0.144 ms, 99th percentile=0.136 ms, 0.25 calls per parent call -15:05:12.909: ┣send_packet: min=0 ms, median=0.001 ms, max=0.253 ms, 99th percentile=0.01 ms -15:05:12.909: ┣encode(Track2): min=0.025 ms, median=0.029 ms, max=0.046 ms, 99th percentile=0.04 ms, 0.25 calls per parent call -15:05:12.909: ┣encode(Track3): min=0.037 ms, median=0.158 ms, max=0.27 ms, 99th percentile=0.231 ms, 0.25 calls per parent call -15:05:12.909: ┗encode(Track4): min=0.025 ms, median=0.028 ms, max=0.041 ms, 99th percentile=0.038 ms, 0.25 calls per parent call -15:05:12.909: obs_graphics_thread(16.6667 ms): min=0.051 ms, median=0.185 ms, max=5.807 ms, 99th percentile=0.403 ms, 100% below 16.667 ms -15:05:12.909: ┣tick_sources: min=0 ms, median=0.003 ms, max=0.258 ms, 99th percentile=0.01 ms -15:05:12.909: ┣output_frame: min=0.04 ms, median=0.109 ms, max=2.238 ms, 99th percentile=0.197 ms -15:05:12.909: ┃ ┗gs_context(video->graphics): min=0.04 ms, median=0.108 ms, max=2.238 ms, 99th percentile=0.197 ms -15:05:12.909: ┃ ┣render_video: min=0.006 ms, median=0.104 ms, max=2.232 ms, 99th percentile=0.187 ms -15:05:12.909: ┃ ┃ ┣render_main_texture: min=0.005 ms, median=0.092 ms, max=2.229 ms, 99th percentile=0.156 ms -15:05:12.909: ┃ ┃ ┣render_convert_texture: min=0.013 ms, median=0.015 ms, max=0.226 ms, 99th percentile=0.031 ms, 0.367612 calls per parent call -15:05:12.909: ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.001 ms, max=0.002 ms, 99th percentile=0.002 ms, 0.367612 calls per parent call -15:05:12.909: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=0.183 ms, 99th percentile=0.03 ms -15:05:12.909: ┗render_displays: min=0.002 ms, median=0.056 ms, max=5.134 ms, 99th percentile=0.165 ms -15:05:12.909: obs_gpu_encode_thread(16.6667 ms): min=0.148 ms, median=0.249 ms, max=5.6 ms, 99th percentile=4.733 ms, 100% below 16.667 ms -15:05:12.909: ┣gpu_encode_frame: min=0.146 ms, median=0.244 ms, max=5.596 ms, 99th percentile=4.728 ms -15:05:12.909: ┗send_packet: min=0.001 ms, median=0.002 ms, max=0.038 ms, 99th percentile=0.006 ms -15:05:12.909: ================================================= -15:05:12.909: == Profiler Time Between Calls ================== -15:05:12.909: obs_hotkey_thread(25 ms): min=25.007 ms, median=25.055 ms, max=27.528 ms, 99.646% within ±2% of 25 ms (0% lower, 0.353982% higher) -15:05:12.909: obs_graphics_thread(16.6667 ms): min=14.095 ms, median=16.667 ms, max=19.239 ms, 99.7633% within ±2% of 16.667 ms (0.118343% lower, 0.118343% higher) -15:05:12.909: obs_gpu_encode_thread(16.6667 ms): min=16.45 ms, median=16.666 ms, max=16.883 ms, 100% within ±2% of 16.667 ms (0% lower, 0% higher) -15:05:12.909: ================================================= -15:05:12.911: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-11-29 15-05-12.txt b/obs-settings/Settings-files/logs/2025-11-29 15-05-12.txt deleted file mode 100644 index b931d87..0000000 --- a/obs-settings/Settings-files/logs/2025-11-29 15-05-12.txt +++ /dev/null @@ -1,306 +0,0 @@ -15:05:12.993: Platform: Wayland -15:05:12.993: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -15:05:12.993: CPU Speed: 4838.548MHz -15:05:12.994: Physical Cores: 8, Logical Cores: 8 -15:05:12.994: Physical Memory: 31168MB Total, 6429MB Free -15:05:12.994: Kernel Version: Linux 6.17.9-1-default -15:05:12.994: Flatpak Branch: stable -15:05:12.994: Flatpak Arch: x86_64 -15:05:12.994: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -15:05:12.994: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -15:05:12.994: App Extensions: -15:05:12.994: - com.obsproject.Studio.Plugin.OBSVkCapture -15:05:12.994: - com.obsproject.Studio.Plugin.SourceClone -15:05:12.994: - com.obsproject.Studio.Plugin.SourceRecord -15:05:12.994: - com.obsproject.Studio.Plugin.WaylandHotkeys -15:05:12.994: - org.freedesktop.LinuxAudio.Plugins.TAP -15:05:12.994: - org.freedesktop.LinuxAudio.Plugins.swh -15:05:12.994: - com.obsproject.Studio.Locale -15:05:12.994: Runtime Extensions: -15:05:12.994: - org.freedesktop.Platform.GL.default -15:05:12.994: - org.freedesktop.Platform.openh264 -15:05:12.994: - org.gtk.Gtk3theme.Breeze -15:05:12.994: - org.kde.Platform.Locale -15:05:12.994: - org.freedesktop.Platform.GL.default -15:05:12.994: Flatpak Framework Version: 1.16.1 -15:05:12.994: Desktop Environment: GNOME (gnome) -15:05:12.994: Session Type: wayland -15:05:12.996: Current Date/Time: 2025-11-29, 15:05:12 -15:05:12.996: Browser Hardware Acceleration: true -15:05:12.996: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -15:05:12.996: Portable mode: false -15:05:13.020: OBS 32.0.2 (linux) -15:05:13.020: --------------------------------- -15:05:13.021: --------------------------------- -15:05:13.021: audio settings reset: -15:05:13.021: samples per sec: 48000 -15:05:13.021: speakers: 2 -15:05:13.021: max buffering: 960 milliseconds -15:05:13.021: buffering type: dynamically increasing -15:05:13.021: --------------------------------- -15:05:13.021: Initializing OpenGL... -15:05:13.021: Using EGL/Wayland -15:05:13.043: Initialized EGL 1.5 -15:05:13.053: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -15:05:13.053: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -15:05:13.074: --------------------------------- -15:05:13.074: video settings reset: -15:05:13.074: base resolution: 3440x1440 -15:05:13.074: output resolution: 3440x1440 -15:05:13.074: downscale filter: Bicubic -15:05:13.074: fps: 60/1 -15:05:13.074: format: NV12 -15:05:13.074: YUV mode: Rec. 709/Partial -15:05:13.074: NV12 texture support enabled -15:05:13.074: P010 texture support not available -15:05:13.076: Audio monitoring device: -15:05:13.076: name: Default -15:05:13.076: id: default -15:05:13.077: --------------------------------- -15:05:13.080: No AJA devices found, skipping loading AJA UI plugin -15:05:13.080: Failed to initialize module 'aja-output-ui.so' -15:05:13.083: No AJA devices found, skipping loading AJA plugin -15:05:13.083: Failed to initialize module 'aja.so' -15:05:13.153: [pipewire] Available capture sources: -15:05:13.153: [pipewire] - Monitor source -15:05:13.153: [pipewire] - Window source -15:05:13.159: v4l2loopback not installed, virtual camera not registered -15:05:13.160: [obs-browser]: Version 2.26.3 -15:05:13.160: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -15:05:13.163: VAAPI: API version 1.22 -15:05:13.164: FFmpeg VAAPI H264 encoding supported -15:05:13.166: FFmpeg VAAPI AV1 encoding supported -15:05:13.169: FFmpeg VAAPI HEVC encoding supported -15:05:13.170: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -15:05:13.170: -15:05:13.170: NVENC not supported -15:05:13.170: Failed to initialize module 'obs-nvenc.so' -15:05:13.187: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -15:05:13.187: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -15:05:13.187: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -15:05:13.190: [obs-websocket] [obs_module_load] Module loaded. -15:05:13.191: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -15:05:13.191: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -15:05:13.192: Failed to load 'en-GB' text for module: 'source-clone.so' -15:05:13.192: [Source Clone] loaded version 0.2.0 -15:05:13.192: Failed to load 'en-GB' text for module: 'source-record.so' -15:05:13.192: [Source Record] loaded version 0.4.6 -15:05:13.192: --------------------------------- -15:05:13.192: Loaded Modules: -15:05:13.192: source-record.so -15:05:13.192: source-clone.so -15:05:13.192: obs-wayland-hotkeys.so -15:05:13.192: linux-vkcapture.so -15:05:13.192: text-freetype2.so -15:05:13.192: rtmp-services.so -15:05:13.192: obs-x264.so -15:05:13.192: obs-websocket.so -15:05:13.192: obs-webrtc.so -15:05:13.192: obs-vst.so -15:05:13.192: obs-transitions.so -15:05:13.192: obs-qsv11.so -15:05:13.192: obs-outputs.so -15:05:13.192: obs-libfdk.so -15:05:13.192: obs-filters.so -15:05:13.192: obs-ffmpeg.so -15:05:13.192: obs-browser.so -15:05:13.192: linux-v4l2.so -15:05:13.192: linux-pulseaudio.so -15:05:13.192: linux-pipewire.so -15:05:13.192: linux-jack.so -15:05:13.192: linux-capture.so -15:05:13.192: image-source.so -15:05:13.192: frontend-tools.so -15:05:13.192: --------------------------------- -15:05:13.192: --------------------------------- -15:05:13.192: Available Encoders: -15:05:13.192: Video Encoders: -15:05:13.192: - ffmpeg_svt_av1 (SVT-AV1) -15:05:13.192: - ffmpeg_aom_av1 (AOM AV1) -15:05:13.192: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -15:05:13.192: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -15:05:13.192: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -15:05:13.192: - obs_x264 (x264) -15:05:13.192: Audio Encoders: -15:05:13.192: - ffmpeg_aac (FFmpeg AAC) -15:05:13.192: - ffmpeg_opus (FFmpeg Opus) -15:05:13.192: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -15:05:13.192: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -15:05:13.192: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -15:05:13.192: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -15:05:13.192: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -15:05:13.192: - libfdk_aac (libfdk AAC) -15:05:13.192: ==== Startup complete =============================================== -15:05:13.214: All scene data cleared -15:05:13.214: ------------------------------------------------ -15:05:13.218: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:05:13.218: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -15:05:13.218: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -15:05:13.218: [Loaded global audio device]: 'Desktop Audio' -15:05:13.218: - filter: 'Compressor' (compressor_filter) -15:05:13.218: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:05:13.218: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -15:05:13.218: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -15:05:13.219: [Loaded global audio device]: 'Mic/Aux' -15:05:13.219: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -15:05:13.219: - filter: 'Compressor' (compressor_filter) -15:05:13.219: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:05:13.219: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:05:13.219: pulse-input: Started recording from 'GameSink.monitor' -15:05:13.219: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:05:13.219: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:05:13.219: pulse-input: Started recording from 'DiscordSink.monitor' -15:05:13.220: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -15:05:13.220: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -15:05:13.220: pulse-input: Started recording from 'MusicSink.monitor' -15:05:13.220: PipeWire initialized -15:05:13.220: PipeWire initialized -15:05:13.220: v4l2-input: Start capture from /dev/video0 -15:05:13.222: v4l2-input: Input: 0 -15:05:13.234: Device for 'Audio Output Capture' source is also used for audio monitoring: -15:05:13.234: Deduplication logic is being applied to all monitored sources. -15:05:13.234: -15:05:13.252: v4l2-input: Resolution: 864x480 -15:05:13.252: v4l2-input: Pixelformat: YUYV -15:05:13.252: v4l2-input: Linesize: 1728 Bytes -15:05:13.267: v4l2-input: Framerate: 24.00 fps -15:05:13.268: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -15:05:13.269: Switched to scene 'Scene' -15:05:13.269: ------------------------------------------------ -15:05:13.269: Loaded scenes: -15:05:13.269: - scene 'Scene': -15:05:13.269: - source: 'Game Sink' (pulse_output_capture) -15:05:13.269: - source: 'Discord Sink' (pulse_output_capture) -15:05:13.269: - source: 'Music Sink' (pulse_output_capture) -15:05:13.269: - source: 'App' (pipewire-screen-capture-source) -15:05:13.269: - source: 'Screen' (pipewire-screen-capture-source) -15:05:13.269: - source: 'Cam' (v4l2_input) -15:05:13.269: - scene 'Cam Scene': -15:05:13.269: - source: 'Cam' (v4l2_input) -15:05:13.269: - source: 'Game Sink' (pulse_output_capture) -15:05:13.269: - source: 'Discord Sink' (pulse_output_capture) -15:05:13.269: - source: 'Music Sink' (pulse_output_capture) -15:05:13.269: ------------------------------------------------ -15:05:13.322: [pipewire] Screencast session created -15:05:13.322: [pipewire] Screencast session created -15:05:13.342: [pipewire] Asking for monitor and window -15:05:13.342: [pipewire] Asking for monitor and window -15:05:13.391: [pipewire] source selected, setting up screencast -15:05:13.394: [pipewire] source selected, setting up screencast -15:05:13.397: [pipewire] Server version: 1.5.83 -15:05:13.397: [pipewire] Library version: 1.2.4 -15:05:13.397: [pipewire] Header version: 1.2.4 -15:05:13.397: [pipewire] Created stream 0x563898d86340 -15:05:13.397: [pipewire] Stream 0x563898d86340 state: "connecting" (error: none) -15:05:13.397: [pipewire] Playing stream 0x563898d86340 -15:05:13.398: [pipewire] Stream 0x563898d86340 state: "paused" (error: none) -15:05:13.398: [pipewire] Server version: 1.5.83 -15:05:13.398: [pipewire] Library version: 1.2.4 -15:05:13.398: [pipewire] Header version: 1.2.4 -15:05:13.398: [pipewire] Created stream 0x56389aff3e90 -15:05:13.398: [pipewire] Stream 0x56389aff3e90 state: "connecting" (error: none) -15:05:13.398: [pipewire] Playing stream 0x56389aff3e90 -15:05:13.399: [pipewire] Stream 0x56389aff3e90 state: "paused" (error: none) -15:05:13.431: [pipewire] Negotiated format: -15:05:13.431: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:05:13.431: [pipewire] Modifier: 0x0 -15:05:13.431: [pipewire] Size: 3440x1440 -15:05:13.431: [pipewire] Framerate: 0/1 -15:05:13.433: [pipewire] Negotiated format: -15:05:13.433: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:05:13.433: [pipewire] Modifier: 0x200000028a01f04 -15:05:13.433: [pipewire] Size: 3440x1440 -15:05:13.433: [pipewire] Framerate: 0/1 -15:05:13.439: [pipewire] Stream 0x563898d86340 state: "streaming" (error: none) -15:05:13.450: [pipewire] Negotiated format: -15:05:13.450: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:05:13.450: [pipewire] Modifier: 0x0 -15:05:13.450: [pipewire] Size: 3440x1440 -15:05:13.450: [pipewire] Framerate: 0/1 -15:05:13.450: [pipewire] Negotiated format: -15:05:13.450: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -15:05:13.450: [pipewire] Modifier: 0x200000028a01f04 -15:05:13.450: [pipewire] Size: 3440x1440 -15:05:13.450: [pipewire] Framerate: 0/1 -15:05:13.453: [pipewire] Stream 0x56389aff3e90 state: "streaming" (error: none) -15:05:13.768: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -15:05:13.768: -15:05:13.832: adding 42 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -15:05:13.832: -15:05:17.269: --------------------------------- -15:05:17.269: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -15:05:17.269: device: /dev/dri/by-path/pci-0000:03:00.0-render -15:05:17.269: rate_control: CBR -15:05:17.269: profile: 100 -15:05:17.269: level: -99 -15:05:17.269: qp: 0 -15:05:17.269: bitrate: 35000 -15:05:17.269: maxrate: 35000 -15:05:17.269: keyint: 120 -15:05:17.269: width: 3440 -15:05:17.269: height: 1440 -15:05:17.269: b-frames: 0 -15:05:17.269: ffmpeg opts: -15:05:17.269: -15:05:17.273: libfdk_aac encoder created -15:05:17.273: libfdk_aac bitrate: 160, channels: 2 -15:05:17.273: libfdk_aac encoder created -15:05:17.273: libfdk_aac bitrate: 160, channels: 2 -15:05:17.273: libfdk_aac encoder created -15:05:17.273: libfdk_aac bitrate: 160, channels: 2 -15:05:17.273: libfdk_aac encoder created -15:05:17.273: libfdk_aac bitrate: 160, channels: 2 -15:05:17.283: ==== Replay Buffer Start =========================================== -15:05:34.476: Settings changed (hotkeys) -15:05:34.476: ------------------------------------------------ -15:39:57.437: Output 'Replay Buffer': stopping -15:39:57.437: Output 'Replay Buffer': Total frames output: 124802 -15:39:57.437: Output 'Replay Buffer': Total drawn frames: 124802 (124809 attempted) -15:39:57.437: Output 'Replay Buffer': Number of lagged frames due to rendering lag/stalls: 7 (0.0%) -15:39:57.437: Video stopped, number of skipped frames due to encoding lag: 7/124808 (0.0%) -15:39:57.438: ==== Replay Buffer Stop ============================================ -15:39:57.448: libfdk_aac encoder destroyed -15:39:57.448: libfdk_aac encoder destroyed -15:39:57.448: libfdk_aac encoder destroyed -15:39:57.448: libfdk_aac encoder destroyed -15:39:58.459: --------------------------------- -15:39:58.459: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -15:39:58.459: device: /dev/dri/by-path/pci-0000:03:00.0-render -15:39:58.459: rate_control: CBR -15:39:58.459: profile: 100 -15:39:58.459: level: -99 -15:39:58.459: qp: 0 -15:39:58.459: bitrate: 35000 -15:39:58.459: maxrate: 35000 -15:39:58.459: keyint: 120 -15:39:58.459: width: 3440 -15:39:58.459: height: 1440 -15:39:58.459: b-frames: 0 -15:39:58.459: ffmpeg opts: -15:39:58.459: -15:39:58.464: libfdk_aac encoder created -15:39:58.464: libfdk_aac bitrate: 160, channels: 2 -15:39:58.464: libfdk_aac encoder created -15:39:58.464: libfdk_aac bitrate: 160, channels: 2 -15:39:58.464: libfdk_aac encoder created -15:39:58.464: libfdk_aac bitrate: 160, channels: 2 -15:39:58.464: libfdk_aac encoder created -15:39:58.464: libfdk_aac bitrate: 160, channels: 2 -15:39:58.466: ==== Replay Buffer Start =========================================== -15:48:37.106: [ffmpeg muxer: 'Replay Buffer'] Wrote replay buffer to '/home/glennigen/Videos/obs-replay/Replay_2025-11-29_15-48-36.mp4' -15:54:03.880: Output 'Replay Buffer': stopping -15:54:03.880: Output 'Replay Buffer': Total frames output: 50717 -15:54:03.880: Output 'Replay Buffer': Total drawn frames: 50724 (50725 attempted) -15:54:03.880: Output 'Replay Buffer': Number of lagged frames due to rendering lag/stalls: 1 (0.0%) -15:54:03.880: Video stopped, number of skipped frames due to encoding lag: 1/50723 (0.0%) -15:54:03.883: ==== Replay Buffer Stop ============================================ -15:54:03.890: libfdk_aac encoder destroyed -15:54:03.890: libfdk_aac encoder destroyed -15:54:03.890: libfdk_aac encoder destroyed -15:54:03.891: libfdk_aac encoder destroyed -15:54:14.980: Settings changed (outputs) -15:54:14.980: ------------------------------------------------ -15:57:44.146: adding 85 milliseconds of audio buffering, total audio buffering is now 149 milliseconds (source: Mic/Aux) -15:57:44.146: -16:40:45.736: adding 106 milliseconds of audio buffering, total audio buffering is now 256 milliseconds (source: Mic/Aux) -16:40:45.736: diff --git a/obs-settings/Settings-files/logs/2025-11-30 14-02-56.txt b/obs-settings/Settings-files/logs/2025-11-30 14-02-56.txt deleted file mode 100644 index efc96bb..0000000 --- a/obs-settings/Settings-files/logs/2025-11-30 14-02-56.txt +++ /dev/null @@ -1,326 +0,0 @@ -14:02:56.941: Crash or unclean shutdown detected -14:03:00.021: [Safe Mode] Normal launch selected, loading third-party plugins is enabled -14:03:00.021: Platform: Wayland -14:03:00.021: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -14:03:00.021: CPU Speed: 4142.797MHz -14:03:00.021: Physical Cores: 8, Logical Cores: 8 -14:03:00.021: Physical Memory: 31168MB Total, 15943MB Free -14:03:00.021: Kernel Version: Linux 6.17.9-1-default -14:03:00.021: Flatpak Branch: stable -14:03:00.021: Flatpak Arch: x86_64 -14:03:00.021: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -14:03:00.021: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -14:03:00.021: App Extensions: -14:03:00.021: - com.obsproject.Studio.Plugin.OBSVkCapture -14:03:00.021: - com.obsproject.Studio.Plugin.SourceClone -14:03:00.022: - com.obsproject.Studio.Plugin.SourceRecord -14:03:00.022: - com.obsproject.Studio.Plugin.WaylandHotkeys -14:03:00.022: - org.freedesktop.LinuxAudio.Plugins.TAP -14:03:00.022: - org.freedesktop.LinuxAudio.Plugins.swh -14:03:00.022: - com.obsproject.Studio.Locale -14:03:00.022: Runtime Extensions: -14:03:00.022: - org.freedesktop.Platform.GL.default -14:03:00.022: - org.freedesktop.Platform.openh264 -14:03:00.022: - org.gtk.Gtk3theme.Adwaita-dark -14:03:00.022: - org.kde.KStyle.Adwaita -14:03:00.022: - org.kde.Platform.Locale -14:03:00.022: - org.freedesktop.Platform.GL.default -14:03:00.022: Flatpak Framework Version: 1.16.1 -14:03:00.022: Desktop Environment: GNOME (gnome) -14:03:00.022: Session Type: wayland -14:03:00.026: Current Date/Time: 2025-11-30, 14:03:00 -14:03:00.026: Browser Hardware Acceleration: true -14:03:00.026: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -14:03:00.026: Portable mode: false -14:03:00.044: OBS 32.0.2 (linux) -14:03:00.044: --------------------------------- -14:03:00.045: --------------------------------- -14:03:00.045: audio settings reset: -14:03:00.045: samples per sec: 48000 -14:03:00.045: speakers: 2 -14:03:00.045: max buffering: 960 milliseconds -14:03:00.045: buffering type: dynamically increasing -14:03:00.046: --------------------------------- -14:03:00.046: Initializing OpenGL... -14:03:00.046: Using EGL/Wayland -14:03:00.233: Initialized EGL 1.5 -14:03:00.247: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -14:03:00.247: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -14:03:00.273: --------------------------------- -14:03:00.273: video settings reset: -14:03:00.273: base resolution: 3440x1440 -14:03:00.273: output resolution: 3440x1440 -14:03:00.273: downscale filter: Bicubic -14:03:00.273: fps: 60/1 -14:03:00.273: format: NV12 -14:03:00.273: YUV mode: Rec. 709/Partial -14:03:00.273: NV12 texture support enabled -14:03:00.273: P010 texture support not available -14:03:00.275: Audio monitoring device: -14:03:00.275: name: Default -14:03:00.275: id: default -14:03:00.277: --------------------------------- -14:03:00.289: No AJA devices found, skipping loading AJA UI plugin -14:03:00.289: Failed to initialize module 'aja-output-ui.so' -14:03:00.300: No AJA devices found, skipping loading AJA plugin -14:03:00.300: Failed to initialize module 'aja.so' -14:03:00.557: [pipewire] Available capture sources: -14:03:00.557: [pipewire] - Monitor source -14:03:00.557: [pipewire] - Window source -14:03:00.568: v4l2loopback not installed, virtual camera not registered -14:03:00.572: [obs-browser]: Version 2.26.3 -14:03:00.572: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -14:03:00.591: VAAPI: API version 1.22 -14:03:00.593: FFmpeg VAAPI H264 encoding supported -14:03:00.596: FFmpeg VAAPI AV1 encoding supported -14:03:00.599: FFmpeg VAAPI HEVC encoding supported -14:03:00.603: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -14:03:00.603: -14:03:00.603: NVENC not supported -14:03:00.603: Failed to initialize module 'obs-nvenc.so' -14:03:00.627: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -14:03:00.627: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -14:03:00.627: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -14:03:00.630: [obs-websocket] [obs_module_load] Module loaded. -14:03:00.634: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -14:03:00.634: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -14:03:00.641: Failed to load 'en-GB' text for module: 'source-clone.so' -14:03:00.641: [Source Clone] loaded version 0.2.0 -14:03:00.642: Failed to load 'en-GB' text for module: 'source-record.so' -14:03:00.642: [Source Record] loaded version 0.4.6 -14:03:00.642: --------------------------------- -14:03:00.642: Loaded Modules: -14:03:00.642: source-record.so -14:03:00.642: source-clone.so -14:03:00.642: obs-wayland-hotkeys.so -14:03:00.642: linux-vkcapture.so -14:03:00.642: text-freetype2.so -14:03:00.642: rtmp-services.so -14:03:00.642: obs-x264.so -14:03:00.642: obs-websocket.so -14:03:00.642: obs-webrtc.so -14:03:00.642: obs-vst.so -14:03:00.642: obs-transitions.so -14:03:00.642: obs-qsv11.so -14:03:00.642: obs-outputs.so -14:03:00.642: obs-libfdk.so -14:03:00.642: obs-filters.so -14:03:00.642: obs-ffmpeg.so -14:03:00.642: obs-browser.so -14:03:00.642: linux-v4l2.so -14:03:00.642: linux-pulseaudio.so -14:03:00.642: linux-pipewire.so -14:03:00.642: linux-jack.so -14:03:00.642: linux-capture.so -14:03:00.642: image-source.so -14:03:00.642: frontend-tools.so -14:03:00.642: --------------------------------- -14:03:00.643: --------------------------------- -14:03:00.643: Available Encoders: -14:03:00.643: Video Encoders: -14:03:00.643: - ffmpeg_svt_av1 (SVT-AV1) -14:03:00.643: - ffmpeg_aom_av1 (AOM AV1) -14:03:00.643: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -14:03:00.643: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -14:03:00.643: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -14:03:00.643: - obs_x264 (x264) -14:03:00.643: Audio Encoders: -14:03:00.643: - ffmpeg_aac (FFmpeg AAC) -14:03:00.643: - ffmpeg_opus (FFmpeg Opus) -14:03:00.643: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -14:03:00.643: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -14:03:00.643: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -14:03:00.643: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -14:03:00.643: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -14:03:00.643: - libfdk_aac (libfdk AAC) -14:03:00.643: ==== Startup complete =============================================== -14:03:00.665: All scene data cleared -14:03:00.665: ------------------------------------------------ -14:03:00.668: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:03:00.668: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -14:03:00.668: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -14:03:00.669: [Loaded global audio device]: 'Desktop Audio' -14:03:00.669: - filter: 'Compressor' (compressor_filter) -14:03:00.669: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:03:00.669: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -14:03:00.669: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -14:03:00.669: [Loaded global audio device]: 'Mic/Aux' -14:03:00.669: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -14:03:00.669: - filter: 'Compressor' (compressor_filter) -14:03:00.669: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:03:00.669: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:03:00.669: pulse-input: Started recording from 'GameSink.monitor' -14:03:00.670: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:03:00.670: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:03:00.670: pulse-input: Started recording from 'DiscordSink.monitor' -14:03:00.670: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -14:03:00.670: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -14:03:00.670: pulse-input: Started recording from 'MusicSink.monitor' -14:03:00.670: PipeWire initialized -14:03:00.670: PipeWire initialized -14:03:00.670: v4l2-input: Start capture from /dev/video0 -14:03:00.686: Device for 'Audio Output Capture' source is also used for audio monitoring: -14:03:00.686: Deduplication logic is being applied to all monitored sources. -14:03:00.686: -14:03:00.776: v4l2-input: Input: 0 -14:03:00.806: v4l2-input: Resolution: 864x480 -14:03:00.806: v4l2-input: Pixelformat: YUYV -14:03:00.806: v4l2-input: Linesize: 1728 Bytes -14:03:00.821: v4l2-input: Framerate: 24.00 fps -14:03:00.821: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -14:03:00.822: Switched to scene 'Scene' -14:03:00.822: ------------------------------------------------ -14:03:00.822: Loaded scenes: -14:03:00.823: - scene 'Scene': -14:03:00.823: - source: 'Game Sink' (pulse_output_capture) -14:03:00.823: - source: 'Discord Sink' (pulse_output_capture) -14:03:00.823: - source: 'Music Sink' (pulse_output_capture) -14:03:00.823: - source: 'App' (pipewire-screen-capture-source) -14:03:00.823: - source: 'Screen' (pipewire-screen-capture-source) -14:03:00.823: - source: 'Cam' (v4l2_input) -14:03:00.823: - scene 'Cam Scene': -14:03:00.823: - source: 'Cam' (v4l2_input) -14:03:00.823: - source: 'Game Sink' (pulse_output_capture) -14:03:00.823: - source: 'Discord Sink' (pulse_output_capture) -14:03:00.823: - source: 'Music Sink' (pulse_output_capture) -14:03:00.823: ------------------------------------------------ -14:03:00.886: [pipewire] Screencast session created -14:03:00.886: [pipewire] Screencast session created -14:03:00.911: [pipewire] Asking for monitor and window -14:03:00.911: [pipewire] Asking for monitor and window -14:03:00.973: [pipewire] source selected, setting up screencast -14:03:00.976: [pipewire] source selected, setting up screencast -14:03:00.993: [pipewire] Server version: 1.5.83 -14:03:00.993: [pipewire] Library version: 1.2.4 -14:03:00.993: [pipewire] Header version: 1.2.4 -14:03:00.993: [pipewire] Created stream 0x55d536f08430 -14:03:00.993: [pipewire] Stream 0x55d536f08430 state: "connecting" (error: none) -14:03:00.993: [pipewire] Playing stream 0x55d536f08430 -14:03:00.998: [pipewire] Stream 0x55d536f08430 state: "paused" (error: none) -14:03:00.998: [pipewire] Server version: 1.5.83 -14:03:00.998: [pipewire] Library version: 1.2.4 -14:03:00.998: [pipewire] Header version: 1.2.4 -14:03:00.999: [pipewire] Created stream 0x55d536f75b70 -14:03:00.999: [pipewire] Stream 0x55d536f75b70 state: "connecting" (error: none) -14:03:00.999: [pipewire] Playing stream 0x55d536f75b70 -14:03:01.001: [pipewire] Stream 0x55d536f75b70 state: "paused" (error: none) -14:03:01.008: [pipewire] Negotiated format: -14:03:01.008: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:03:01.008: [pipewire] Modifier: 0x0 -14:03:01.008: [pipewire] Size: 3440x1440 -14:03:01.008: [pipewire] Framerate: 0/1 -14:03:01.008: [pipewire] Negotiated format: -14:03:01.008: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:03:01.008: [pipewire] Modifier: 0x200000028a01f04 -14:03:01.008: [pipewire] Size: 3440x1440 -14:03:01.008: [pipewire] Framerate: 0/1 -14:03:01.032: [pipewire] Stream 0x55d536f08430 state: "streaming" (error: none) -14:03:01.032: [pipewire] Negotiated format: -14:03:01.032: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:03:01.032: [pipewire] Modifier: 0x0 -14:03:01.032: [pipewire] Size: 3440x1440 -14:03:01.032: [pipewire] Framerate: 0/1 -14:03:01.034: [pipewire] Negotiated format: -14:03:01.034: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -14:03:01.034: [pipewire] Modifier: 0x200000028a01f04 -14:03:01.034: [pipewire] Size: 3440x1440 -14:03:01.034: [pipewire] Framerate: 0/1 -14:03:01.036: [pipewire] Stream 0x55d536f75b70 state: "streaming" (error: none) -14:03:01.240: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -14:03:01.240: -14:03:01.326: adding 42 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -14:03:01.326: -14:25:34.606: adding 21 milliseconds of audio buffering, total audio buffering is now 85 milliseconds (source: Mic/Aux) -14:25:34.606: -14:28:49.827: adding 85 milliseconds of audio buffering, total audio buffering is now 170 milliseconds (source: Mic/Aux) -14:28:49.827: -14:46:46.670: adding 149 milliseconds of audio buffering, total audio buffering is now 320 milliseconds (source: Mic/Aux) -14:46:46.670: -14:51:08.354: [pipewire] Stream 0x55d536f08430 state: "paused" (error: none) -14:51:08.357: [pipewire] Stream 0x55d536f75b70 state: "paused" (error: none) -14:58:26.614: ==== Shutting down ================================================== -14:58:26.624: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -14:58:26.624: pulse-input: Got 133036 packets with 159643200 frames -14:58:26.624: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -14:58:26.624: pulse-input: Got 133026 packets with 159631200 frames -14:58:26.625: [pipewire] Stream 0x55d536f08430 state: "unconnected" (error: none) -14:58:26.626: [pipewire] Stream 0x55d536f75b70 state: "unconnected" (error: none) -14:58:26.628: v4l2-input: /dev/video0: Stopped capture after 49899 frames -14:58:26.683: pulse-input: Stopped recording from 'GameSink.monitor' -14:58:26.683: pulse-input: Got 133035 packets with 159642000 frames -14:58:26.683: pulse-input: Stopped recording from 'DiscordSink.monitor' -14:58:26.683: pulse-input: Got 133037 packets with 159644400 frames -14:58:26.684: pulse-input: Stopped recording from 'MusicSink.monitor' -14:58:26.684: pulse-input: Got 133037 packets with 159644400 frames -14:58:26.708: All scene data cleared -14:58:26.708: ------------------------------------------------ -14:58:26.766: [linux-vkcapture] plugin unloaded -14:58:26.767: [obs-websocket] [obs_module_unload] Shutting down... -14:58:26.767: Tried to call obs_frontend_remove_event_callback with no callbacks! -14:58:26.767: [obs-websocket] [obs_module_unload] Finished shutting down. -14:58:26.771: [Scripting] Total detached callbacks: 0 -14:58:26.771: Freeing OBS context data -14:58:26.779: == Profiler Results ============================= -14:58:26.779: run_program_init: 4047.7 ms -14:58:26.779: ┣OBSApp::AppInit: 12.674 ms -14:58:26.779: ┃ ┗OBSApp::InitLocale: 1.476 ms -14:58:26.779: ┗OBSApp::OBSInit: 847.9 ms -14:58:26.779: ┣obs_startup: 4.743 ms -14:58:26.779: ┗OBSBasic::OBSInit: 824.418 ms -14:58:26.779: ┣OBSBasic::InitBasicConfig: 0.763 ms -14:58:26.779: ┣OBSBasic::ResetAudio: 0.175 ms -14:58:26.779: ┣OBSBasic::ResetVideo: 229.857 ms -14:58:26.779: ┃ ┗obs_init_graphics: 227.175 ms -14:58:26.779: ┃ ┗shader compilation: 24.821 ms -14:58:26.779: ┣OBSBasic::InitOBSCallbacks: 0.003 ms -14:58:26.779: ┣OBSBasic::InitHotkeys: 0.014 ms -14:58:26.779: ┣obs_load_all_modules2: 365.503 ms -14:58:26.779: ┃ ┣obs_init_module(aja-output-ui.so): 0.053 ms -14:58:26.779: ┃ ┣obs_init_module(aja.so): 0.043 ms -14:58:26.779: ┃ ┣obs_init_module(frontend-tools.so): 62.034 ms -14:58:26.779: ┃ ┣obs_init_module(image-source.so): 0.004 ms -14:58:26.779: ┃ ┣obs_init_module(linux-capture.so): 0 ms -14:58:26.779: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -14:58:26.779: ┃ ┣obs_init_module(linux-pipewire.so): 9.628 ms -14:58:26.779: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -14:58:26.779: ┃ ┣obs_init_module(linux-v4l2.so): 9.081 ms -14:58:26.779: ┃ ┣obs_init_module(obs-browser.so): 0.04 ms -14:58:26.779: ┃ ┣obs_init_module(obs-ffmpeg.so): 26.069 ms -14:58:26.779: ┃ ┣obs_init_module(obs-filters.so): 0.01 ms -14:58:26.779: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms -14:58:26.779: ┃ ┣obs_init_module(obs-nvenc.so): 0.088 ms -14:58:26.779: ┃ ┃ ┗nvenc_check: 0.064 ms -14:58:26.779: ┃ ┣obs_init_module(obs-outputs.so): 0.002 ms -14:58:26.779: ┃ ┣obs_init_module(obs-qsv11.so): 11.875 ms -14:58:26.779: ┃ ┣obs_init_module(obs-transitions.so): 0.003 ms -14:58:26.779: ┃ ┣obs_init_module(obs-vst.so): 0.001 ms -14:58:26.779: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms -14:58:26.779: ┃ ┣obs_init_module(obs-websocket.so): 2.983 ms -14:58:26.779: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms -14:58:26.779: ┃ ┣obs_init_module(rtmp-services.so): 0.722 ms -14:58:26.779: ┃ ┣obs_init_module(text-freetype2.so): 0.01 ms -14:58:26.779: ┃ ┣obs_init_module(linux-vkcapture.so): 0.038 ms -14:58:26.779: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -14:58:26.779: ┃ ┣obs_init_module(source-clone.so): 0.01 ms -14:58:26.779: ┃ ┗obs_init_module(source-record.so): 0.018 ms -14:58:26.779: ┣OBSBasic::InitService: 1.406 ms -14:58:26.779: ┣OBSBasic::ResetOutputs: 3.246 ms -14:58:26.779: ┣OBSBasic::CreateHotkeys: 0.016 ms -14:58:26.779: ┣OBSBasic::InitPrimitives: 0.051 ms -14:58:26.779: ┗OBSBasic::Load: 180.181 ms -14:58:26.779: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.03 ms, 99th percentile=0.001 ms, 100% below 25 ms -14:58:26.779: audio_thread(Audio): min=0.003 ms, median=0.047 ms, max=4.58 ms, 99th percentile=0.078 ms -14:58:26.779: obs_graphics_thread(16.6667 ms): min=0.049 ms, median=0.165 ms, max=264.143 ms, 99th percentile=0.33 ms, 99.9925% below 16.667 ms -14:58:26.779: ┣tick_sources: min=0 ms, median=0.003 ms, max=0.242 ms, 99th percentile=0.008 ms -14:58:26.779: ┣output_frame: min=0.04 ms, median=0.097 ms, max=6.431 ms, 99th percentile=0.192 ms -14:58:26.779: ┃ ┗gs_context(video->graphics): min=0.04 ms, median=0.097 ms, max=6.43 ms, 99th percentile=0.192 ms -14:58:26.779: ┃ ┣render_video: min=0.004 ms, median=0.093 ms, max=6.426 ms, 99th percentile=0.185 ms -14:58:26.779: ┃ ┃ ┗render_main_texture: min=0.003 ms, median=0.092 ms, max=6.424 ms, 99th percentile=0.182 ms -14:58:26.779: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=0.047 ms, 99th percentile=0 ms -14:58:26.779: ┗render_displays: min=0.002 ms, median=0.057 ms, max=264.034 ms, 99th percentile=0.107 ms -14:58:26.779: ================================================= -14:58:26.779: == Profiler Time Between Calls ================== -14:58:26.779: obs_hotkey_thread(25 ms): min=25.005 ms, median=25.056 ms, max=28.516 ms, 99.8433% within ±2% of 25 ms (0% lower, 0.156667% higher) -14:58:26.779: obs_graphics_thread(16.6667 ms): min=2.517 ms, median=16.667 ms, max=264.147 ms, 99.6943% within ±2% of 16.667 ms (0.15334% lower, 0.152338% higher) -14:58:26.779: ================================================= -14:58:26.784: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-12-02 17-39-30.txt b/obs-settings/Settings-files/logs/2025-12-02 17-39-30.txt deleted file mode 100644 index 482ffbd..0000000 --- a/obs-settings/Settings-files/logs/2025-12-02 17-39-30.txt +++ /dev/null @@ -1,426 +0,0 @@ -17:39:30.057: Platform: Wayland -17:39:30.057: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -17:39:30.057: CPU Speed: 3872.988MHz -17:39:30.057: Physical Cores: 8, Logical Cores: 8 -17:39:30.057: Physical Memory: 31168MB Total, 244MB Free -17:39:30.057: Kernel Version: Linux 6.17.9-1-default -17:39:30.057: Flatpak Branch: stable -17:39:30.057: Flatpak Arch: x86_64 -17:39:30.057: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -17:39:30.057: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -17:39:30.057: App Extensions: -17:39:30.057: - com.obsproject.Studio.Plugin.OBSVkCapture -17:39:30.057: - com.obsproject.Studio.Plugin.SourceClone -17:39:30.057: - com.obsproject.Studio.Plugin.SourceRecord -17:39:30.057: - com.obsproject.Studio.Plugin.WaylandHotkeys -17:39:30.057: - org.freedesktop.LinuxAudio.Plugins.TAP -17:39:30.057: - org.freedesktop.LinuxAudio.Plugins.swh -17:39:30.057: - com.obsproject.Studio.Locale -17:39:30.057: Runtime Extensions: -17:39:30.057: - org.freedesktop.Platform.GL.default -17:39:30.057: - org.freedesktop.Platform.openh264 -17:39:30.057: - org.gtk.Gtk3theme.Adwaita-dark -17:39:30.057: - org.kde.KStyle.Adwaita -17:39:30.057: - org.kde.Platform.Locale -17:39:30.057: - org.freedesktop.Platform.GL.default -17:39:30.057: Flatpak Framework Version: 1.16.1 -17:39:30.057: Desktop Environment: GNOME (gnome) -17:39:30.057: Session Type: wayland -17:39:30.059: Current Date/Time: 2025-12-02, 17:39:30 -17:39:30.059: Browser Hardware Acceleration: true -17:39:30.059: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -17:39:30.059: Portable mode: false -17:39:30.111: OBS 32.0.2 (linux) -17:39:30.111: --------------------------------- -17:39:30.112: --------------------------------- -17:39:30.112: audio settings reset: -17:39:30.112: samples per sec: 48000 -17:39:30.112: speakers: 2 -17:39:30.112: max buffering: 960 milliseconds -17:39:30.112: buffering type: dynamically increasing -17:39:30.115: --------------------------------- -17:39:30.115: Initializing OpenGL... -17:39:30.115: Using EGL/Wayland -17:39:30.352: Initialized EGL 1.5 -17:39:30.364: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -17:39:30.364: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -17:39:30.397: --------------------------------- -17:39:30.397: video settings reset: -17:39:30.397: base resolution: 3440x1440 -17:39:30.397: output resolution: 3440x1440 -17:39:30.397: downscale filter: Bicubic -17:39:30.397: fps: 60/1 -17:39:30.397: format: NV12 -17:39:30.397: YUV mode: Rec. 709/Partial -17:39:30.397: NV12 texture support enabled -17:39:30.397: P010 texture support not available -17:39:30.400: Audio monitoring device: -17:39:30.400: name: Default -17:39:30.400: id: default -17:39:30.403: --------------------------------- -17:39:30.419: No AJA devices found, skipping loading AJA UI plugin -17:39:30.419: Failed to initialize module 'aja-output-ui.so' -17:39:30.432: No AJA devices found, skipping loading AJA plugin -17:39:30.432: Failed to initialize module 'aja.so' -17:39:30.747: [pipewire] Available capture sources: -17:39:30.747: [pipewire] - Monitor source -17:39:30.747: [pipewire] - Window source -17:39:30.781: v4l2loopback not installed, virtual camera not registered -17:39:30.785: [obs-browser]: Version 2.26.3 -17:39:30.785: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -17:39:30.799: VAAPI: API version 1.22 -17:39:30.801: FFmpeg VAAPI H264 encoding supported -17:39:30.806: FFmpeg VAAPI AV1 encoding supported -17:39:30.809: FFmpeg VAAPI HEVC encoding supported -17:39:30.821: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -17:39:30.821: -17:39:30.821: NVENC not supported -17:39:30.821: Failed to initialize module 'obs-nvenc.so' -17:39:30.863: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -17:39:30.863: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -17:39:30.863: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -17:39:30.866: [obs-websocket] [obs_module_load] Module loaded. -17:39:30.876: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -17:39:30.876: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -17:39:30.884: Failed to load 'en-GB' text for module: 'source-clone.so' -17:39:30.884: [Source Clone] loaded version 0.2.0 -17:39:30.885: Failed to load 'en-GB' text for module: 'source-record.so' -17:39:30.885: [Source Record] loaded version 0.4.6 -17:39:30.885: --------------------------------- -17:39:30.885: Loaded Modules: -17:39:30.885: source-record.so -17:39:30.885: source-clone.so -17:39:30.885: obs-wayland-hotkeys.so -17:39:30.885: linux-vkcapture.so -17:39:30.885: text-freetype2.so -17:39:30.885: rtmp-services.so -17:39:30.885: obs-x264.so -17:39:30.885: obs-websocket.so -17:39:30.885: obs-webrtc.so -17:39:30.885: obs-vst.so -17:39:30.885: obs-transitions.so -17:39:30.885: obs-qsv11.so -17:39:30.885: obs-outputs.so -17:39:30.885: obs-libfdk.so -17:39:30.885: obs-filters.so -17:39:30.885: obs-ffmpeg.so -17:39:30.885: obs-browser.so -17:39:30.885: linux-v4l2.so -17:39:30.885: linux-pulseaudio.so -17:39:30.885: linux-pipewire.so -17:39:30.885: linux-jack.so -17:39:30.885: linux-capture.so -17:39:30.885: image-source.so -17:39:30.885: frontend-tools.so -17:39:30.885: --------------------------------- -17:39:30.886: --------------------------------- -17:39:30.886: Available Encoders: -17:39:30.886: Video Encoders: -17:39:30.886: - ffmpeg_svt_av1 (SVT-AV1) -17:39:30.886: - ffmpeg_aom_av1 (AOM AV1) -17:39:30.886: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -17:39:30.886: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -17:39:30.886: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -17:39:30.886: - obs_x264 (x264) -17:39:30.886: Audio Encoders: -17:39:30.886: - ffmpeg_aac (FFmpeg AAC) -17:39:30.886: - ffmpeg_opus (FFmpeg Opus) -17:39:30.886: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -17:39:30.886: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -17:39:30.886: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -17:39:30.886: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -17:39:30.886: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -17:39:30.886: - libfdk_aac (libfdk AAC) -17:39:30.886: ==== Startup complete =============================================== -17:39:30.924: All scene data cleared -17:39:30.924: ------------------------------------------------ -17:39:30.928: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:39:30.928: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -17:39:30.929: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -17:39:30.929: [Loaded global audio device]: 'Desktop Audio' -17:39:30.929: - filter: 'Compressor' (compressor_filter) -17:39:30.929: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:39:30.929: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -17:39:30.929: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -17:39:30.929: [Loaded global audio device]: 'Mic/Aux' -17:39:30.929: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -17:39:30.929: - filter: 'Compressor' (compressor_filter) -17:39:30.930: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:39:30.930: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:39:30.930: pulse-input: Started recording from 'GameSink.monitor' -17:39:30.930: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:39:30.930: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:39:30.930: pulse-input: Started recording from 'DiscordSink.monitor' -17:39:30.930: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:39:30.930: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:39:30.930: pulse-input: Started recording from 'MusicSink.monitor' -17:39:30.930: PipeWire initialized -17:39:30.931: PipeWire initialized -17:39:30.931: v4l2-input: Start capture from /dev/video0 -17:39:30.944: Device for 'Audio Output Capture' source is also used for audio monitoring: -17:39:30.944: Deduplication logic is being applied to all monitored sources. -17:39:30.944: -17:39:31.040: v4l2-input: Input: 0 -17:39:31.070: v4l2-input: Resolution: 864x480 -17:39:31.070: v4l2-input: Pixelformat: YUYV -17:39:31.070: v4l2-input: Linesize: 1728 Bytes -17:39:31.088: v4l2-input: Framerate: 24.00 fps -17:39:31.089: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -17:39:31.090: Switched to scene 'Scene' -17:39:31.090: ------------------------------------------------ -17:39:31.090: Loaded scenes: -17:39:31.091: - scene 'Scene': -17:39:31.091: - source: 'Game Sink' (pulse_output_capture) -17:39:31.091: - source: 'Discord Sink' (pulse_output_capture) -17:39:31.091: - source: 'Music Sink' (pulse_output_capture) -17:39:31.091: - source: 'App' (pipewire-screen-capture-source) -17:39:31.091: - source: 'Screen' (pipewire-screen-capture-source) -17:39:31.091: - source: 'Cam' (v4l2_input) -17:39:31.091: - scene 'Cam Scene': -17:39:31.091: - source: 'Cam' (v4l2_input) -17:39:31.091: - source: 'Game Sink' (pulse_output_capture) -17:39:31.091: - source: 'Discord Sink' (pulse_output_capture) -17:39:31.091: - source: 'Music Sink' (pulse_output_capture) -17:39:31.091: ------------------------------------------------ -17:39:31.157: [pipewire] Screencast session created -17:39:31.157: [pipewire] Screencast session created -17:39:31.181: [pipewire] Asking for monitor and window -17:39:31.181: [pipewire] Asking for monitor and window -17:39:31.270: [pipewire] source selected, setting up screencast -17:39:31.276: [pipewire] source selected, setting up screencast -17:39:31.290: [pipewire] Server version: 1.5.83 -17:39:31.290: [pipewire] Library version: 1.2.4 -17:39:31.290: [pipewire] Header version: 1.2.4 -17:39:31.290: [pipewire] Created stream 0x560d2a4d4340 -17:39:31.290: [pipewire] Stream 0x560d2a4d4340 state: "connecting" (error: none) -17:39:31.290: [pipewire] Playing stream 0x560d2a4d4340 -17:39:31.294: [pipewire] Stream 0x560d2a4d4340 state: "paused" (error: none) -17:39:31.294: [pipewire] Server version: 1.5.83 -17:39:31.294: [pipewire] Library version: 1.2.4 -17:39:31.294: [pipewire] Header version: 1.2.4 -17:39:31.294: [pipewire] Created stream 0x560d2c7bb270 -17:39:31.294: [pipewire] Stream 0x560d2c7bb270 state: "connecting" (error: none) -17:39:31.294: [pipewire] Playing stream 0x560d2c7bb270 -17:39:31.295: [pipewire] Stream 0x560d2c7bb270 state: "paused" (error: none) -17:39:31.305: [pipewire] Negotiated format: -17:39:31.305: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:31.305: [pipewire] Modifier: 0x0 -17:39:31.305: [pipewire] Size: 3440x1440 -17:39:31.305: [pipewire] Framerate: 0/1 -17:39:31.306: [pipewire] Negotiated format: -17:39:31.306: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:31.306: [pipewire] Modifier: 0x200000028a01f04 -17:39:31.306: [pipewire] Size: 3440x1440 -17:39:31.306: [pipewire] Framerate: 0/1 -17:39:31.325: [pipewire] Stream 0x560d2a4d4340 state: "streaming" (error: none) -17:39:31.325: [pipewire] Negotiated format: -17:39:31.325: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:31.325: [pipewire] Modifier: 0x0 -17:39:31.325: [pipewire] Size: 3440x1440 -17:39:31.325: [pipewire] Framerate: 0/1 -17:39:31.326: [pipewire] Negotiated format: -17:39:31.326: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:31.326: [pipewire] Modifier: 0x200000028a01f04 -17:39:31.326: [pipewire] Size: 3440x1440 -17:39:31.326: [pipewire] Framerate: 0/1 -17:39:31.329: [pipewire] Stream 0x560d2c7bb270 state: "streaming" (error: none) -17:39:31.478: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -17:39:31.478: -17:39:31.542: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Game Sink) -17:39:31.542: -17:39:31.584: adding 21 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -17:39:31.584: -17:39:34.395: --------------------------------- -17:39:34.396: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings: -17:39:34.396: device: /dev/dri/by-path/pci-0000:03:00.0-render -17:39:34.396: rate_control: CBR -17:39:34.396: profile: 100 -17:39:34.396: level: -99 -17:39:34.396: qp: 0 -17:39:34.396: bitrate: 50000 -17:39:34.396: maxrate: 50000 -17:39:34.396: keyint: 120 -17:39:34.396: width: 3440 -17:39:34.396: height: 1440 -17:39:34.396: b-frames: 0 -17:39:34.396: ffmpeg opts: -17:39:34.396: -17:39:34.400: libfdk_aac encoder created -17:39:34.400: libfdk_aac bitrate: 160, channels: 2 -17:39:34.400: libfdk_aac encoder created -17:39:34.400: libfdk_aac bitrate: 160, channels: 2 -17:39:34.400: libfdk_aac encoder created -17:39:34.400: libfdk_aac bitrate: 160, channels: 2 -17:39:34.400: libfdk_aac encoder created -17:39:34.400: libfdk_aac bitrate: 160, channels: 2 -17:39:34.410: ==== Replay Buffer Start =========================================== -17:39:38.443: [pipewire] Stream 0x560d2c7bb270 state: "paused" (error: none) -17:39:38.443: [pipewire] Stream 0x560d2c7bb270 state: "unconnected" (error: none) -17:39:38.444: PipeWire initialized -17:39:38.446: [pipewire] Screencast session created -17:39:38.446: [pipewire] Asking for monitor and window -17:39:42.818: [pipewire] source selected, setting up screencast -17:39:42.825: [pipewire] Server version: 1.5.83 -17:39:42.825: [pipewire] Library version: 1.2.4 -17:39:42.825: [pipewire] Header version: 1.2.4 -17:39:42.825: [pipewire] Created stream 0x560d2c7bb270 -17:39:42.825: [pipewire] Stream 0x560d2c7bb270 state: "connecting" (error: none) -17:39:42.825: [pipewire] Playing stream 0x560d2c7bb270 -17:39:42.825: [pipewire] Stream 0x560d2c7bb270 state: "paused" (error: none) -17:39:42.842: [pipewire] Negotiated format: -17:39:42.842: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:42.842: [pipewire] Modifier: 0x0 -17:39:42.842: [pipewire] Size: 3440x1440 -17:39:42.842: [pipewire] Framerate: 0/1 -17:39:42.843: [pipewire] Negotiated format: -17:39:42.843: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:39:42.843: [pipewire] Modifier: 0x200000028a01f04 -17:39:42.843: [pipewire] Size: 3440x1440 -17:39:42.843: [pipewire] Framerate: 0/1 -17:39:42.853: [pipewire] Stream 0x560d2c7bb270 state: "streaming" (error: none) -17:39:43.984: [pipewire] Stream 0x560d2c7bb270 state: "paused" (error: none) -17:39:45.384: [pipewire] Stream 0x560d2c7bb270 state: "streaming" (error: none) -17:39:45.667: [pipewire] Stream 0x560d2a4d4340 state: "paused" (error: none) -18:28:58.880: [pipewire] Stream 0x560d2c7bb270 state: "paused" (error: none) -18:29:48.133: [pipewire] Stream 0x560d2a4d4340 state: "streaming" (error: none) -18:29:48.300: [pipewire] Stream 0x560d2a4d4340 state: "paused" (error: none) -18:30:00.719: User switched to scene 'Cam Scene' -18:30:30.124: User switched to scene 'Scene' -18:32:34.603: adding 128 milliseconds of audio buffering, total audio buffering is now 192 milliseconds (source: Mic/Aux) -18:32:34.603: -18:52:19.436: [pipewire] Stream 0x560d2c7bb270 state: "unconnected" (error: none) -18:52:19.438: PipeWire initialized -18:52:19.440: [pipewire] Screencast session created -18:52:19.440: [pipewire] Asking for monitor and window -18:52:20.352: adding 21 milliseconds of audio buffering, total audio buffering is now 213 milliseconds (source: Mic/Aux) -18:52:20.352: -18:52:35.388: [pipewire] source selected, setting up screencast -18:52:35.674: [pipewire] Server version: 1.5.83 -18:52:35.674: [pipewire] Library version: 1.2.4 -18:52:35.674: [pipewire] Header version: 1.2.4 -18:52:35.674: [pipewire] Created stream 0x560d2be2d690 -18:52:35.674: [pipewire] Stream 0x560d2be2d690 state: "connecting" (error: none) -18:52:35.674: [pipewire] Playing stream 0x560d2be2d690 -18:52:35.676: [pipewire] Stream 0x560d2be2d690 state: "paused" (error: none) -18:52:35.696: [pipewire] Negotiated format: -18:52:35.696: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -18:52:35.696: [pipewire] Modifier: 0x0 -18:52:35.696: [pipewire] Size: 3440x1440 -18:52:35.696: [pipewire] Framerate: 0/1 -18:52:35.697: [pipewire] Negotiated format: -18:52:35.697: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -18:52:35.697: [pipewire] Modifier: 0x200000028a01f04 -18:52:35.697: [pipewire] Size: 3440x1440 -18:52:35.697: [pipewire] Framerate: 0/1 -18:52:35.703: [pipewire] Stream 0x560d2be2d690 state: "streaming" (error: none) -19:05:04.231: [pipewire] Stream 0x560d2be2d690 state: "paused" (error: none) -19:05:59.894: Output 'Replay Buffer': stopping -19:05:59.894: Output 'Replay Buffer': Total frames output: 311112 -19:05:59.894: Output 'Replay Buffer': Total drawn frames: 311105 (311129 attempted) -19:05:59.894: Output 'Replay Buffer': Number of lagged frames due to rendering lag/stalls: 24 (0.0%) -19:05:59.894: Video stopped, number of skipped frames due to encoding lag: 24/311127 (0.0%) -19:05:59.894: ==== Replay Buffer Stop ============================================ -19:05:59.906: libfdk_aac encoder destroyed -19:05:59.906: libfdk_aac encoder destroyed -19:05:59.906: libfdk_aac encoder destroyed -19:05:59.906: libfdk_aac encoder destroyed -19:06:00.861: ==== Shutting down ================================================== -19:06:00.863: pulse-input: Stopped recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' -19:06:00.863: pulse-input: Got 207594 packets with 249112800 frames -19:06:00.863: pulse-input: Stopped recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' -19:06:00.863: pulse-input: Got 207581 packets with 249097200 frames -19:06:00.864: [pipewire] Stream 0x560d2be2d690 state: "unconnected" (error: none) -19:06:00.954: [pipewire] Stream 0x560d2a4d4340 state: "unconnected" (error: none) -19:06:00.977: v4l2-input: /dev/video0: Stopped capture after 77860 frames -19:06:01.030: pulse-input: Stopped recording from 'GameSink.monitor' -19:06:01.030: pulse-input: Got 207601 packets with 249121200 frames -19:06:01.030: pulse-input: Stopped recording from 'DiscordSink.monitor' -19:06:01.030: pulse-input: Got 207600 packets with 249120000 frames -19:06:01.031: pulse-input: Stopped recording from 'MusicSink.monitor' -19:06:01.031: pulse-input: Got 207600 packets with 249120000 frames -19:06:01.074: All scene data cleared -19:06:01.074: ------------------------------------------------ -19:06:01.116: [linux-vkcapture] plugin unloaded -19:06:01.120: [obs-websocket] [obs_module_unload] Shutting down... -19:06:01.120: Tried to call obs_frontend_remove_event_callback with no callbacks! -19:06:01.120: [obs-websocket] [obs_module_unload] Finished shutting down. -19:06:01.131: [Scripting] Total detached callbacks: 0 -19:06:01.131: Freeing OBS context data -19:06:01.142: == Profiler Results ============================= -19:06:01.142: run_program_init: 1361.97 ms -19:06:01.142: ┣OBSApp::AppInit: 18.269 ms -19:06:01.142: ┃ ┗OBSApp::InitLocale: 2.785 ms -19:06:01.142: ┗OBSApp::OBSInit: 1077.87 ms -19:06:01.142: ┣obs_startup: 1.941 ms -19:06:01.142: ┗OBSBasic::OBSInit: 1023.9 ms -19:06:01.142: ┣OBSBasic::InitBasicConfig: 1.176 ms -19:06:01.142: ┣OBSBasic::ResetAudio: 0.191 ms -19:06:01.142: ┣OBSBasic::ResetVideo: 287.954 ms -19:06:01.142: ┃ ┗obs_init_graphics: 284.544 ms -19:06:01.142: ┃ ┗shader compilation: 31.859 ms -19:06:01.142: ┣OBSBasic::InitOBSCallbacks: 0.002 ms -19:06:01.142: ┣OBSBasic::InitHotkeys: 0.014 ms -19:06:01.142: ┣obs_load_all_modules2: 482.57 ms -19:06:01.142: ┃ ┣obs_init_module(aja-output-ui.so): 0.081 ms -19:06:01.142: ┃ ┣obs_init_module(aja.so): 0.055 ms -19:06:01.142: ┃ ┣obs_init_module(frontend-tools.so): 89.68 ms -19:06:01.142: ┃ ┣obs_init_module(image-source.so): 0.004 ms -19:06:01.142: ┃ ┣obs_init_module(linux-capture.so): 0 ms -19:06:01.142: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms -19:06:01.142: ┃ ┣obs_init_module(linux-pipewire.so): 9.303 ms -19:06:01.142: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.001 ms -19:06:01.142: ┃ ┣obs_init_module(linux-v4l2.so): 25.22 ms -19:06:01.142: ┃ ┣obs_init_module(obs-browser.so): 0.043 ms -19:06:01.142: ┃ ┣obs_init_module(obs-ffmpeg.so): 19.607 ms -19:06:01.142: ┃ ┣obs_init_module(obs-filters.so): 0.011 ms -19:06:01.142: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms -19:06:01.142: ┃ ┣obs_init_module(obs-nvenc.so): 0.102 ms -19:06:01.142: ┃ ┃ ┗nvenc_check: 0.084 ms -19:06:01.142: ┃ ┣obs_init_module(obs-outputs.so): 0.003 ms -19:06:01.142: ┃ ┣obs_init_module(obs-qsv11.so): 11.62 ms -19:06:01.142: ┃ ┣obs_init_module(obs-transitions.so): 0.005 ms -19:06:01.142: ┃ ┣obs_init_module(obs-vst.so): 0.002 ms -19:06:01.142: ┃ ┣obs_init_module(obs-webrtc.so): 0.008 ms -19:06:01.142: ┃ ┣obs_init_module(obs-websocket.so): 3.169 ms -19:06:01.142: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms -19:06:01.142: ┃ ┣obs_init_module(rtmp-services.so): 0.701 ms -19:06:01.142: ┃ ┣obs_init_module(text-freetype2.so): 0.022 ms -19:06:01.142: ┃ ┣obs_init_module(linux-vkcapture.so): 0.043 ms -19:06:01.142: ┃ ┣obs_init_module(obs-wayland-hotkeys.so): 0.002 ms -19:06:01.142: ┃ ┣obs_init_module(source-clone.so): 0.01 ms -19:06:01.142: ┃ ┗obs_init_module(source-record.so): 0.02 ms -19:06:01.142: ┣OBSBasic::InitService: 1.588 ms -19:06:01.143: ┣OBSBasic::ResetOutputs: 4.08 ms -19:06:01.143: ┣OBSBasic::CreateHotkeys: 0.022 ms -19:06:01.143: ┣OBSBasic::InitPrimitives: 0.068 ms -19:06:01.143: ┗OBSBasic::Load: 203.482 ms -19:06:01.143: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=2.972 ms, 99th percentile=0.001 ms, 100% below 25 ms -19:06:01.143: audio_thread(Audio): min=0.003 ms, median=0.429 ms, max=11.74 ms, 99th percentile=1.282 ms -19:06:01.143: ┗receive_audio: min=0 ms, median=0.039 ms, max=11.592 ms, 99th percentile=0.219 ms, 3.99566 calls per parent call -19:06:01.143: ┣buffer_audio: min=0 ms, median=0 ms, max=1.901 ms, 99th percentile=0.001 ms -19:06:01.143: ┗do_encode: min=0.024 ms, median=0.038 ms, max=11.591 ms, 99th percentile=0.218 ms -19:06:01.143: ┣encode(Track1): min=0.029 ms, median=0.107 ms, max=6.324 ms, 99th percentile=0.21 ms, 0.25 calls per parent call -19:06:01.143: ┣send_packet: min=0 ms, median=0.001 ms, max=11.509 ms, 99th percentile=0.007 ms -19:06:01.143: ┣encode(Track2): min=0.024 ms, median=0.032 ms, max=5.973 ms, 99th percentile=0.047 ms, 0.25 calls per parent call -19:06:01.143: ┣encode(Track3): min=0.023 ms, median=0.031 ms, max=3.668 ms, 99th percentile=0.21 ms, 0.25 calls per parent call -19:06:01.143: ┗encode(Track4): min=0.023 ms, median=0.146 ms, max=5.244 ms, 99th percentile=0.276 ms, 0.25 calls per parent call -19:06:01.143: obs_graphics_thread(16.6667 ms): min=0.047 ms, median=0.298 ms, max=110.301 ms, 99th percentile=2.745 ms, 99.9827% below 16.667 ms -19:06:01.143: ┣tick_sources: min=0 ms, median=0.009 ms, max=39.64 ms, 99th percentile=0.018 ms -19:06:01.143: ┣output_frame: min=0.036 ms, median=0.197 ms, max=26.904 ms, 99th percentile=2.224 ms -19:06:01.143: ┃ ┗gs_context(video->graphics): min=0.036 ms, median=0.197 ms, max=26.903 ms, 99th percentile=2.223 ms -19:06:01.143: ┃ ┣render_video: min=0.005 ms, median=0.193 ms, max=26.897 ms, 99th percentile=2.198 ms -19:06:01.143: ┃ ┃ ┣render_main_texture: min=0.004 ms, median=0.133 ms, max=25.8 ms, 99th percentile=1.83 ms -19:06:01.143: ┃ ┃ ┣render_convert_texture: min=0.01 ms, median=0.024 ms, max=3.859 ms, 99th percentile=0.053 ms -19:06:01.143: ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.001 ms, max=3.424 ms, 99th percentile=0.011 ms -19:06:01.143: ┃ ┗gs_flush: min=0 ms, median=0 ms, max=2.135 ms, 99th percentile=0.002 ms -19:06:01.143: ┗render_displays: min=0.002 ms, median=0.078 ms, max=110.136 ms, 99th percentile=1.015 ms -19:06:01.143: obs_gpu_encode_thread(16.6667 ms): min=0.118 ms, median=2.564 ms, max=110.392 ms, 99th percentile=12.509 ms, 99.8676% below 16.667 ms -19:06:01.143: ┣gpu_encode_frame: min=0.115 ms, median=2.557 ms, max=110.387 ms, 99th percentile=12.503 ms -19:06:01.143: ┗send_packet: min=0.001 ms, median=0.003 ms, max=3.355 ms, 99th percentile=0.008 ms -19:06:01.143: ================================================= -19:06:01.143: == Profiler Time Between Calls ================== -19:06:01.143: obs_hotkey_thread(25 ms): min=25.004 ms, median=25.057 ms, max=32.945 ms, 94.9268% within ±2% of 25 ms (0% lower, 5.07319% higher) -19:06:01.143: obs_graphics_thread(16.6667 ms): min=0.627 ms, median=16.667 ms, max=110.303 ms, 88.427% within ±2% of 16.667 ms (5.76626% lower, 5.80672% higher) -19:06:01.143: obs_gpu_encode_thread(16.6667 ms): min=0.278 ms, median=16.666 ms, max=110.475 ms, 75.7921% within ±2% of 16.667 ms (12.1973% lower, 12.0106% higher) -19:06:01.143: ================================================= -19:06:01.193: Number of memory leaks: 0 diff --git a/obs-settings/Settings-files/logs/2025-12-04 17-03-31.txt b/obs-settings/Settings-files/logs/2025-12-04 17-03-31.txt deleted file mode 100644 index 6eec5ba..0000000 --- a/obs-settings/Settings-files/logs/2025-12-04 17-03-31.txt +++ /dev/null @@ -1,234 +0,0 @@ -17:03:31.416: Platform: Wayland -17:03:31.416: CPU Name: AMD Ryzen 7 7800X3D 8-Core Processor -17:03:31.416: CPU Speed: 5039.717MHz -17:03:31.416: Physical Cores: 8, Logical Cores: 8 -17:03:31.416: Physical Memory: 31168MB Total, 12541MB Free -17:03:31.416: Kernel Version: Linux 6.17.9-1-default -17:03:31.416: Flatpak Branch: stable -17:03:31.416: Flatpak Arch: x86_64 -17:03:31.416: Flatpak Commit: 2eebc7128409432ae5c236056fba7cfd5a0a5a2840f09aee027d25bba4987fda -17:03:31.416: Flatpak Runtime: runtime/org.kde.Platform/x86_64/6.8 -17:03:31.416: App Extensions: -17:03:31.416: - com.obsproject.Studio.Plugin.OBSVkCapture -17:03:31.416: - com.obsproject.Studio.Plugin.SourceClone -17:03:31.416: - com.obsproject.Studio.Plugin.SourceRecord -17:03:31.416: - com.obsproject.Studio.Plugin.WaylandHotkeys -17:03:31.416: - org.freedesktop.LinuxAudio.Plugins.TAP -17:03:31.416: - org.freedesktop.LinuxAudio.Plugins.swh -17:03:31.416: - com.obsproject.Studio.Locale -17:03:31.416: Runtime Extensions: -17:03:31.416: - org.freedesktop.Platform.GL.default -17:03:31.416: - org.freedesktop.Platform.openh264 -17:03:31.416: - org.gtk.Gtk3theme.Adwaita-dark -17:03:31.416: - org.kde.KStyle.Adwaita -17:03:31.416: - org.kde.Platform.Locale -17:03:31.416: - org.freedesktop.Platform.GL.default -17:03:31.416: Flatpak Framework Version: 1.16.1 -17:03:31.416: Desktop Environment: GNOME (gnome) -17:03:31.416: Session Type: wayland -17:03:31.417: Current Date/Time: 2025-12-04, 17:03:31 -17:03:31.417: Browser Hardware Acceleration: true -17:03:31.417: Qt Version: 6.8.3 (runtime), 6.8.3 (compiled) -17:03:31.417: Portable mode: false -17:03:31.445: OBS 32.0.2 (linux) -17:03:31.445: --------------------------------- -17:03:31.446: --------------------------------- -17:03:31.446: audio settings reset: -17:03:31.446: samples per sec: 48000 -17:03:31.446: speakers: 2 -17:03:31.446: max buffering: 960 milliseconds -17:03:31.446: buffering type: dynamically increasing -17:03:31.447: --------------------------------- -17:03:31.447: Initializing OpenGL... -17:03:31.447: Using EGL/Wayland -17:03:31.469: Initialized EGL 1.5 -17:03:31.480: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XTX (radeonsi, navi31, LLVM 19.1.7, DRM 3.64, 6.17.9-1-default) -17:03:31.480: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 25.2.6 (git-3f12436d80), shading language 4.60 -17:03:31.504: --------------------------------- -17:03:31.504: video settings reset: -17:03:31.504: base resolution: 3440x1440 -17:03:31.504: output resolution: 3440x1440 -17:03:31.504: downscale filter: Bicubic -17:03:31.504: fps: 60/1 -17:03:31.504: format: NV12 -17:03:31.504: YUV mode: Rec. 709/Partial -17:03:31.504: NV12 texture support enabled -17:03:31.504: P010 texture support not available -17:03:31.506: Audio monitoring device: -17:03:31.506: name: Default -17:03:31.506: id: default -17:03:31.508: --------------------------------- -17:03:31.520: No AJA devices found, skipping loading AJA UI plugin -17:03:31.520: Failed to initialize module 'aja-output-ui.so' -17:03:31.531: No AJA devices found, skipping loading AJA plugin -17:03:31.531: Failed to initialize module 'aja.so' -17:03:31.796: [pipewire] Available capture sources: -17:03:31.796: [pipewire] - Monitor source -17:03:31.796: [pipewire] - Window source -17:03:31.812: v4l2loopback not installed, virtual camera not registered -17:03:31.815: [obs-browser]: Version 2.26.3 -17:03:31.815: [obs-browser]: CEF Version 127.0.6533.120 (runtime), 127.0.0-6533-fix-stutter-and-osr-extra-info.3042+g176b09c+chromium-127.0.6533.120 (compiled) -17:03:31.826: VAAPI: API version 1.22 -17:03:31.827: FFmpeg VAAPI H264 encoding supported -17:03:31.830: FFmpeg VAAPI AV1 encoding supported -17:03:31.832: FFmpeg VAAPI HEVC encoding supported -17:03:31.838: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory -17:03:31.838: -17:03:31.838: NVENC not supported -17:03:31.838: Failed to initialize module 'obs-nvenc.so' -17:03:31.870: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.6.3 | RPC Version: 1) -17:03:31.870: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.8.3 | Qt version (run-time): 6.8.3 -17:03:31.870: [obs-websocket] [obs_module_load] Linked ASIO Version: 103200 -17:03:31.873: [obs-websocket] [obs_module_load] Module loaded. -17:03:31.878: Failed to load 'en-GB' text for module: 'linux-vkcapture.so' -17:03:31.878: [linux-vkcapture] plugin loaded successfully (version 1.5.3) -17:03:31.885: Failed to load 'en-GB' text for module: 'source-clone.so' -17:03:31.885: [Source Clone] loaded version 0.2.0 -17:03:31.886: Failed to load 'en-GB' text for module: 'source-record.so' -17:03:31.886: [Source Record] loaded version 0.4.6 -17:03:31.886: --------------------------------- -17:03:31.886: Loaded Modules: -17:03:31.886: source-record.so -17:03:31.886: source-clone.so -17:03:31.886: obs-wayland-hotkeys.so -17:03:31.886: linux-vkcapture.so -17:03:31.886: text-freetype2.so -17:03:31.886: rtmp-services.so -17:03:31.886: obs-x264.so -17:03:31.886: obs-websocket.so -17:03:31.886: obs-webrtc.so -17:03:31.886: obs-vst.so -17:03:31.886: obs-transitions.so -17:03:31.886: obs-qsv11.so -17:03:31.886: obs-outputs.so -17:03:31.886: obs-libfdk.so -17:03:31.886: obs-filters.so -17:03:31.886: obs-ffmpeg.so -17:03:31.886: obs-browser.so -17:03:31.886: linux-v4l2.so -17:03:31.886: linux-pulseaudio.so -17:03:31.886: linux-pipewire.so -17:03:31.886: linux-jack.so -17:03:31.886: linux-capture.so -17:03:31.886: image-source.so -17:03:31.886: frontend-tools.so -17:03:31.886: --------------------------------- -17:03:31.886: --------------------------------- -17:03:31.886: Available Encoders: -17:03:31.886: Video Encoders: -17:03:31.886: - ffmpeg_svt_av1 (SVT-AV1) -17:03:31.886: - ffmpeg_aom_av1 (AOM AV1) -17:03:31.886: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264) -17:03:31.886: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1) -17:03:31.886: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC) -17:03:31.886: - obs_x264 (x264) -17:03:31.886: Audio Encoders: -17:03:31.887: - ffmpeg_aac (FFmpeg AAC) -17:03:31.887: - ffmpeg_opus (FFmpeg Opus) -17:03:31.887: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit)) -17:03:31.887: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit)) -17:03:31.887: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float)) -17:03:31.887: - ffmpeg_alac (FFmpeg ALAC (24-bit)) -17:03:31.887: - ffmpeg_flac (FFmpeg FLAC (16-bit)) -17:03:31.887: - libfdk_aac (libfdk AAC) -17:03:31.887: ==== Startup complete =============================================== -17:03:31.916: All scene data cleared -17:03:31.916: ------------------------------------------------ -17:03:31.919: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:03:31.920: pulse-input: Audio format: s32le, 48000 Hz, 2 channels -17:03:31.920: pulse-input: Started recording from 'alsa_output.usb-iFi__by_AMR__iFi__by_AMR__HD_USB_Audio_0002-00.analog-stereo.monitor' (default) -17:03:31.920: [Loaded global audio device]: 'Desktop Audio' -17:03:31.920: - filter: 'Compressor' (compressor_filter) -17:03:31.920: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:03:31.920: pulse-input: Audio format: float32le, 48000 Hz, 1 channels -17:03:31.920: pulse-input: Started recording from 'alsa_input.usb-Focusrite_Scarlett_Solo_USB_Y7KG7CX1605E46-00.HiFi__Mic1__source' (default) -17:03:31.920: [Loaded global audio device]: 'Mic/Aux' -17:03:31.920: - filter: 'Noise Suppression' (noise_suppress_filter_v2) -17:03:31.920: - filter: 'Compressor' (compressor_filter) -17:03:31.920: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:03:31.921: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:03:31.921: pulse-input: Started recording from 'GameSink.monitor' -17:03:31.921: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:03:31.921: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:03:31.921: pulse-input: Started recording from 'DiscordSink.monitor' -17:03:31.921: pulse-input: Server name: 'PulseAudio (on PipeWire 1.5.83) 15.0.0' -17:03:31.921: pulse-input: Audio format: float32le, 48000 Hz, 2 channels -17:03:31.921: pulse-input: Started recording from 'MusicSink.monitor' -17:03:31.921: PipeWire initialized -17:03:31.921: PipeWire initialized -17:03:31.921: v4l2-input: Start capture from /dev/video0 -17:03:31.937: Device for 'Audio Output Capture' source is also used for audio monitoring: -17:03:31.937: Deduplication logic is being applied to all monitored sources. -17:03:31.937: -17:03:32.027: v4l2-input: Input: 0 -17:03:32.057: v4l2-input: Resolution: 864x480 -17:03:32.057: v4l2-input: Pixelformat: YUYV -17:03:32.057: v4l2-input: Linesize: 1728 Bytes -17:03:32.072: v4l2-input: Framerate: 24.00 fps -17:03:32.072: v4l2-input: /dev/video0: select timeout set to 208333 (5x frame periods) -17:03:32.073: Switched to scene 'Scene' -17:03:32.073: ------------------------------------------------ -17:03:32.073: Loaded scenes: -17:03:32.073: - scene 'Scene': -17:03:32.073: - source: 'Game Sink' (pulse_output_capture) -17:03:32.073: - source: 'Discord Sink' (pulse_output_capture) -17:03:32.074: - source: 'Music Sink' (pulse_output_capture) -17:03:32.074: - source: 'App' (pipewire-screen-capture-source) -17:03:32.074: - source: 'Screen' (pipewire-screen-capture-source) -17:03:32.074: - source: 'Cam' (v4l2_input) -17:03:32.074: - scene 'Cam Scene': -17:03:32.074: - source: 'Cam' (v4l2_input) -17:03:32.074: - source: 'Game Sink' (pulse_output_capture) -17:03:32.074: - source: 'Discord Sink' (pulse_output_capture) -17:03:32.074: - source: 'Music Sink' (pulse_output_capture) -17:03:32.074: ------------------------------------------------ -17:03:32.132: [pipewire] Screencast session created -17:03:32.132: [pipewire] Screencast session created -17:03:32.153: [pipewire] Asking for monitor and window -17:03:32.153: [pipewire] Asking for monitor and window -17:03:32.239: [pipewire] source selected, setting up screencast -17:03:32.248: [pipewire] Server version: 1.5.83 -17:03:32.248: [pipewire] Library version: 1.2.4 -17:03:32.248: [pipewire] Header version: 1.2.4 -17:03:32.248: [pipewire] Created stream 0x55f6cfe22420 -17:03:32.248: [pipewire] Stream 0x55f6cfe22420 state: "connecting" (error: none) -17:03:32.248: [pipewire] Playing stream 0x55f6cfe22420 -17:03:32.248: [pipewire] Stream 0x55f6cfe22420 state: "paused" (error: none) -17:03:32.262: [pipewire] Negotiated format: -17:03:32.262: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:03:32.262: [pipewire] Modifier: 0x0 -17:03:32.262: [pipewire] Size: 3440x1440 -17:03:32.262: [pipewire] Framerate: 0/1 -17:03:32.262: [pipewire] Negotiated format: -17:03:32.262: [pipewire] Format: 12 (Spa:Enum:VideoFormat:BGRA) -17:03:32.262: [pipewire] Modifier: 0x200000028a01f04 -17:03:32.262: [pipewire] Size: 3440x1440 -17:03:32.262: [pipewire] Framerate: 0/1 -17:03:32.281: [pipewire] Stream 0x55f6cfe22420 state: "streaming" (error: none) -17:03:32.492: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio) -17:03:32.492: -17:03:32.577: adding 42 milliseconds of audio buffering, total audio buffering is now 64 milliseconds (source: Mic/Aux) -17:03:32.577: -17:03:34.258: [pipewire] Failed to start screencast, denied or cancelled by user -17:03:36.792: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe3b820 -17:03:36.818: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d209d7a0 -17:03:37.155: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe36100 -17:03:37.201: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d2065700 -17:03:37.499: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d20b7df0 -17:03:37.523: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe27f40 -17:03:38.388: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe36fa0 -17:03:38.645: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe4ce80 -17:03:38.966: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d209b350 -17:03:39.261: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d20b7a90 -17:04:25.814: User switched to scene 'Cam Scene' -17:04:26.205: User switched to scene 'Scene' -17:04:27.181: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d20b4370 -17:04:28.484: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d212d590 -17:04:29.153: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe25820 -17:04:29.406: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d2128180 -17:04:29.612: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d2165b90 -17:04:31.693: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d20b4370 -17:04:33.647: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe263b0 -17:05:11.904: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d031be40 -17:05:12.066: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6d20a2650 -17:05:18.367: virtual void QtWaylandClient::QWaylandTextInputv3::disableSurface(wl_surface*) Try to disable surface 0x55f6d1d11530 with focusing surface 0x55f6cfe453c0