added a bunch of shit including fastfetch

This commit is contained in:
zombie maniac 2025-01-09 03:24:07 -05:00
parent 1098a871f8
commit fd8ad6b09e
Signed by: nbrooks211
GPG key ID: F43C85C0DF0C334E
65 changed files with 7795 additions and 2571 deletions

View file

@ -28,7 +28,8 @@ alias diff='diff --color=auto'
#PS1='[\e[0;32m\u@\h \W\e[m] \$ '
#gayPS1='\[\e[1;32m\][\u@\h]\e[m \e[1;34m\w\[\e[m\] \$ '
PS1="\[\033[38;5;2m\][\u@\h]\[$(tput sgr0)\] \[$(tput sgr0)\]\[\033[38;5;12m\]\w\[$(tput sgr0)\] \\$ \[$(tput sgr0)\]"
export EDITOR=nvim
export GPG_TTY=$(tty)
echo "`figlet " uf" && figlet "zombie" && figlet "maniac"`" | lolcat

2
.config/.gitignore vendored
View file

@ -50,6 +50,8 @@
!obs-studio/**
!river/
!river/**
!fastfetch/
!fastfetch/**
!.gitignore

View file

@ -10,9 +10,9 @@ pgrep -x sxhkd > /dev/null || sxhkd &
####configure monitors####
#intel
#xrandr --output HDMI-1 --mode 2560x1440 --pos 4864x0 --rotate normal --output DP-1 --mode 1024x768 --pos 0x0 --rotate normal --output HDMI-2 --off --output DP-2 --off --output HDMI-3 --off --output DP-3 --primary --mode 3840x2160 --pos 1024x0 --rotate normal --output HDMI-4 --off
xrandr --output HDMI-1 --mode 2560x1440 --pos 3840x0 --rotate normal --output DP-1 --primary --mode 3840x2160 --pos 0x0 --rotate normal --output HDMI-2 --off --output DP-2 --off --output HDMI-3 --off --output DP-3 --off --output HDMI-4 --off
#amd 7900xt
xrandr --output DP-1 --primary --mode 640x480 --pos 0x0 --rotate normal --output DP-2 --mode 3840x2160 --pos 640x0 --rotate normal --output HDMI-1 --mode 2560x1440 --pos 4480x0 --rotate normal --output HDMI-2 --off
#xrandr --output DP-1 --primary --mode 640x480 --pos 0x0 --rotate normal --output DP-2 --mode 3840x2160 --pos 640x0 --rotate normal --output HDMI-1 --mode 2560x1440 --pos 4480x0 --rotate normal --output HDMI-2 --off
nitrogen --restore &
dunst &
alacritty &

35
.config/fastfetch/balls Normal file
View file

@ -0,0 +1,35 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"display",
"de",
"wm",
"wmtheme",
"theme",
"icons",
"font",
"cursor",
"editor",
"terminal",
"cpu",
{
"type": "gpu",
"format": "{1} {2} [{3}]"
},
"memory",
"swap",
"disk",
"battery",
"poweradapter",
"break",
"colors"
]
}

View file

@ -0,0 +1,42 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"display",
"de",
"wm",
"wmtheme",
"theme",
"icons",
"font",
"cursor",
"editor",
"terminal",
"cpu",
{
"type": "gpu",
"format": "{1} {2} [{3}]"
},
"memory",
"swap",
"disk",
{
"type": "command",
"shell": "/usr/bin/bash",
"text": "~/.config/fastfetch/nic.sh",
"key": "NIC"
},
"battery",
"poweradapter",
"break",
"colors"
]
}

58
.config/fastfetch/nic.sh Executable file
View file

@ -0,0 +1,58 @@
#!/bin/bash
set -e
# Get the default route
default_route=$(ip route | grep default)
# Extract the NIC interface name
nic=$(echo $default_route | awk '{print $5}')
# Get current link speed of interface
link_speed=$(ethtool $nic 2>/dev/null | grep "Speed:" | awk '{print $2}')
# Get the PCI ID for the NIC interface
pci_id=$(ethtool -i $nic 2>/dev/null | grep bus-info | awk '{print $2}')
# Extract speed and unit
speed_value=$(echo $link_speed | sed 's/[A-Za-z\/]*//g')
speed_unit=$(echo $link_speed | sed 's/[0-9]*//g')
# Convert speed to a human-readable format
case $speed_unit in
"Mb/s")
if [ $speed_value -ge 1000 ]; then
speed_value=$(bc <<< "scale=1; $speed_value/1000")
speed_unit="Gb/s"
fi
;;
"Gb/s")
# If you need to handle more units, you can extend here
;;
*)
#echo "Unknown speed unit: $speed_unit"
speed_value=""
speed_unit=""
;;
esac
# Check if PCI ID is found
if [ -z "$pci_id" ]; then
#echo "PCI ID not found for interface: $nic"
exit 1
else
# Get the human-readable name of the device
device_name=$(lspci -s $pci_id | cut -d ' ' -f 4-)
fi
# Hee Hoo jank :)
if [[ ! -z $speed_value && ! -z $speed_unit ]]; then
speed_value="[${speed_value}"
speed_unit="${speed_unit}]"
else
speed_value=""
speed_unit=""
fi
echo "$device_name" "${speed_value} ${speed_unit}"

View file

@ -0,0 +1,139 @@
[gd_resource type="EditorSettings" load_steps=20 format=2]
[sub_resource type="InputEventKey" id=1]
control = true
command = true
scancode = 78
unicode = 78
[sub_resource type="InputEventKey" id=2]
scancode = 16777224
unicode = 16777224
[sub_resource type="InputEventKey" id=3]
control = true
command = true
scancode = 68
unicode = 68
[sub_resource type="InputEventKey" id=4]
alt = true
scancode = 16777231
unicode = 16777231
[sub_resource type="InputEventKey" id=5]
alt = true
scancode = 16777233
unicode = 16777233
[sub_resource type="InputEventKey" id=6]
alt = true
scancode = 16777232
unicode = 16777232
[sub_resource type="InputEventKey" id=7]
control = true
command = true
scancode = 16777234
unicode = 16777234
[sub_resource type="InputEventKey" id=8]
control = true
command = true
scancode = 16777232
unicode = 16777232
[sub_resource type="InputEventKey" id=9]
scancode = 16777248
unicode = 16777248
[sub_resource type="InputEventKey" id=10]
alt = true
scancode = 70
unicode = 70
[sub_resource type="InputEventKey" id=11]
control = true
command = true
scancode = 72
unicode = 72
[sub_resource type="InputEventKey" id=12]
alt = true
scancode = 86
unicode = 86
[sub_resource type="InputEventKey" id=13]
control = true
command = true
scancode = 69
unicode = 69
[sub_resource type="InputEventKey" id=14]
control = true
command = true
scancode = 73
unicode = 73
[sub_resource type="InputEventKey" id=15]
control = true
command = true
scancode = 78
unicode = 78
[sub_resource type="InputEventKey" id=16]
scancode = 16777224
unicode = 16777224
[sub_resource type="InputEventKey" id=17]
scancode = 16777245
unicode = 16777245
[sub_resource type="InputEventKey" id=18]
control = true
command = true
scancode = 82
unicode = 82
[sub_resource type="InputEventKey" id=19]
control = true
command = true
scancode = 83
unicode = 83
[resource]
text_editor/highlighting/symbol_color = Color( 0.67, 0.785, 1, 1 )
text_editor/highlighting/keyword_color = Color( 1, 0.44, 0.52, 1 )
text_editor/highlighting/control_flow_keyword_color = Color( 1, 0.55, 0.8, 1 )
text_editor/highlighting/base_type_color = Color( 0.26, 1, 0.76, 1 )
text_editor/highlighting/engine_type_color = Color( 0.556, 1, 0.856, 1 )
text_editor/highlighting/user_type_color = Color( 0.778, 1, 0.928, 1 )
text_editor/highlighting/comment_color = Color( 0.8, 0.8075, 0.8275, 0.5 )
text_editor/highlighting/string_color = Color( 1, 0.925, 0.63, 1 )
text_editor/highlighting/background_color = Color( 0.125, 0.14375, 0.19375, 1 )
text_editor/highlighting/completion_background_color = Color( 0.2, 0.23, 0.31, 1 )
text_editor/highlighting/completion_selected_color = Color( 1, 1, 1, 0.07 )
text_editor/highlighting/completion_existing_color = Color( 1, 1, 1, 0.14 )
text_editor/highlighting/completion_scroll_color = Color( 1, 1, 1, 0.07 )
text_editor/highlighting/completion_font_color = Color( 0.8, 0.8075, 0.8275, 1 )
text_editor/highlighting/text_color = Color( 0.8, 0.8075, 0.8275, 1 )
text_editor/highlighting/line_number_color = Color( 0.8, 0.8075, 0.8275, 0.5 )
text_editor/highlighting/safe_line_number_color = Color( 0.8, 0.969, 0.8275, 0.75 )
text_editor/highlighting/caret_color = Color( 1, 1, 1, 1 )
text_editor/highlighting/text_selected_color = Color( 0.1, 0.115, 0.155, 1 )
text_editor/highlighting/brace_mismatch_color = Color( 1, 0.47, 0.42, 1 )
text_editor/highlighting/current_line_color = Color( 1, 1, 1, 0.07 )
text_editor/highlighting/line_length_guideline_color = Color( 0.2, 0.23, 0.31, 1 )
text_editor/highlighting/word_highlighted_color = Color( 1, 1, 1, 0.07 )
text_editor/highlighting/number_color = Color( 0.63, 1, 0.88, 1 )
text_editor/highlighting/function_color = Color( 0.34, 0.7, 1, 1 )
text_editor/highlighting/member_variable_color = Color( 0.736, 0.88, 1, 1 )
text_editor/highlighting/mark_color = Color( 1, 0.47, 0.42, 0.3 )
text_editor/highlighting/breakpoint_color = Color( 1, 0.47, 0.42, 1 )
text_editor/highlighting/code_folding_color = Color( 1, 1, 1, 0.7 )
text_editor/highlighting/search_result_color = Color( 1, 1, 1, 0.07 )
asset_library/available_urls = {
"godotengine.org (Official)": "https://godotengine.org/asset-library/api"
}
asset_library/use_threads = true
shortcuts = [ "file_dialog/create_folder", SubResource( 1 ), "file_dialog/delete", SubResource( 2 ), "file_dialog/focus_path", SubResource( 3 ), "file_dialog/go_back", SubResource( 4 ), "file_dialog/go_forward", SubResource( 5 ), "file_dialog/go_up", SubResource( 6 ), "file_dialog/move_favorite_down", SubResource( 7 ), "file_dialog/move_favorite_up", SubResource( 8 ), "file_dialog/refresh", SubResource( 9 ), "file_dialog/toggle_favorite", SubResource( 10 ), "file_dialog/toggle_hidden_files", SubResource( 11 ), "file_dialog/toggle_mode", SubResource( 12 ), "project_manager/edit_project", SubResource( 13 ), "project_manager/import_project", SubResource( 14 ), "project_manager/new_project", SubResource( 15 ), "project_manager/remove_project", SubResource( 16 ), "project_manager/rename_project", SubResource( 17 ), "project_manager/run_project", SubResource( 18 ), "project_manager/scan_projects", SubResource( 19 ) ]

View file

@ -0,0 +1,166 @@
[gd_resource type="EditorSettings" load_steps=4 format=3]
[sub_resource type="InputEventKey" id="InputEventKey_bx5vk"]
device = -1
physical_keycode = 71
unicode = 103
[sub_resource type="InputEventKey" id="InputEventKey_qjane"]
device = -1
physical_keycode = 82
unicode = 114
[sub_resource type="InputEventKey" id="InputEventKey_3dp4i"]
device = -1
physical_keycode = 83
unicode = 115
[resource]
interface/editor/show_update_spinner = false
interface/theme/base_color = Color(0.21, 0.24, 0.29, 1)
interface/theme/accent_color = Color(0.44, 0.73, 0.98, 1)
interface/theme/contrast = 0.3
filesystem/import/blender/blender_path = "/usr/bin/blender"
filesystem/import/blender/rpc_port = 0
text_editor/theme/highlighting/symbol_color = Color(0.67, 0.79, 1, 1)
text_editor/theme/highlighting/keyword_color = Color(1, 0.44, 0.52, 1)
text_editor/theme/highlighting/control_flow_keyword_color = Color(1, 0.55, 0.8, 1)
text_editor/theme/highlighting/base_type_color = Color(0.26, 1, 0.76, 1)
text_editor/theme/highlighting/engine_type_color = Color(0.56, 1, 0.86, 1)
text_editor/theme/highlighting/user_type_color = Color(0.78, 1, 0.93, 1)
text_editor/theme/highlighting/comment_color = Color(0.8025, 0.81, 0.8225, 0.5)
text_editor/theme/highlighting/doc_comment_color = Color(0.6, 0.7, 0.8, 0.8)
text_editor/theme/highlighting/string_color = Color(1, 0.93, 0.63, 1)
text_editor/theme/highlighting/background_color = Color(0.1155, 0.132, 0.1595, 1)
text_editor/theme/highlighting/completion_background_color = Color(0.21, 0.24, 0.29, 1)
text_editor/theme/highlighting/completion_selected_color = Color(1, 1, 1, 0.07)
text_editor/theme/highlighting/completion_existing_color = Color(1, 1, 1, 0.14)
text_editor/theme/highlighting/completion_font_color = Color(0.8025, 0.81, 0.8225, 1)
text_editor/theme/highlighting/text_color = Color(0.8025, 0.81, 0.8225, 1)
text_editor/theme/highlighting/line_number_color = Color(0.8025, 0.81, 0.8225, 0.5)
text_editor/theme/highlighting/safe_line_number_color = Color(0.8025, 0.972, 0.8225, 0.75)
text_editor/theme/highlighting/caret_color = Color(1, 1, 1, 1)
text_editor/theme/highlighting/selection_color = Color(0.44, 0.73, 0.98, 0.4)
text_editor/theme/highlighting/brace_mismatch_color = Color(1, 0.47, 0.42, 1)
text_editor/theme/highlighting/current_line_color = Color(1, 1, 1, 0.07)
text_editor/theme/highlighting/line_length_guideline_color = Color(0.21, 0.24, 0.29, 1)
text_editor/theme/highlighting/word_highlighted_color = Color(1, 1, 1, 0.07)
text_editor/theme/highlighting/number_color = Color(0.63, 1, 0.88, 1)
text_editor/theme/highlighting/function_color = Color(0.34, 0.7, 1, 1)
text_editor/theme/highlighting/member_variable_color = Color(0.736, 0.88, 1, 1)
text_editor/theme/highlighting/mark_color = Color(1, 0.47, 0.42, 0.3)
text_editor/theme/highlighting/breakpoint_color = Color(1, 0.47, 0.42, 1)
text_editor/theme/highlighting/code_folding_color = Color(1, 1, 1, 0.27)
text_editor/theme/highlighting/search_result_color = Color(1, 1, 1, 0.07)
asset_library/available_urls = {
"godotengine.org (Official)": "https://godotengine.org/asset-library/api"
}
asset_library/use_threads = true
export/android/android_sdk_path = ""
export/android/debug_keystore = ""
export/android/debug_keystore_user = "androiddebugkey"
export/android/debug_keystore_pass = "android"
export/android/force_system_user = false
export/android/shutdown_adb_on_exit = true
export/android/one_click_deploy_clear_previous_install = false
export/macos/rcodesign = ""
export/web/http_host = "localhost"
export/web/http_port = 8060
export/web/use_tls = false
export/web/tls_key = ""
export/web/tls_certificate = ""
export/windows/rcedit = ""
export/windows/osslsigncode = ""
export/windows/wine = ""
_default_feature_profile = ""
interface/editors/show_scene_tree_root_selection = true
interface/editors/derive_script_globals_by_name = true
docks/scene_tree/ask_before_deleting_related_animation_tracks = true
_use_favorites_root_selection = false
filesystem/file_server/port = 6010
filesystem/file_server/password = ""
editors/3d/manipulator_gizmo_size = 80
editors/3d/manipulator_gizmo_opacity = 0.9
editors/3d/navigation/show_viewport_rotation_gizmo = true
editors/3d/navigation/show_viewport_navigation_gizmo = false
text_editor/behavior/files/auto_reload_and_parse_scripts_on_save = true
text_editor/behavior/files/open_dominant_script_on_scene_change = true
text_editor/external/use_external_editor = false
text_editor/external/exec_path = ""
text_editor/script_list/script_temperature_enabled = true
text_editor/script_list/script_temperature_history_size = 15
text_editor/script_list/group_help_pages = true
text_editor/script_list/sort_scripts_by = 0
text_editor/script_list/list_script_names_as = 0
text_editor/external/exec_flags = "{file}"
version_control/username = ""
version_control/ssh_public_key_path = ""
version_control/ssh_private_key_path = ""
editors/bone_mapper/handle_colors/unset = Color(0.3, 0.3, 0.3, 1)
editors/bone_mapper/handle_colors/set = Color(0.1, 0.6, 0.25, 1)
editors/bone_mapper/handle_colors/missing = Color(0.8, 0.2, 0.8, 1)
editors/bone_mapper/handle_colors/error = Color(0.8, 0.2, 0.2, 1)
network/debug_adapter/remote_port = 6006
network/debug_adapter/request_timeout = 1000
network/debug_adapter/sync_breakpoints = false
editors/3d_gizmos/gizmo_colors/path = Color(0.5, 0.5, 1, 0.8)
editors/3d_gizmos/gizmo_colors/skeleton = Color(1, 0.8, 0.4, 1)
editors/3d_gizmos/gizmo_colors/selected_bone = Color(0.8, 0.3, 0, 1)
editors/3d_gizmos/gizmo_settings/bone_axis_length = 0.1
editors/3d_gizmos/gizmo_settings/bone_shape = 1
editors/3d_gizmos/gizmo_colors/csg = Color(0, 0.4, 1, 0.15)
editors/grid_map/editor_side = 1
editors/grid_map/palette_min_width = 230
editors/grid_map/preview_size = 64
export/ssh/ssh = ""
export/ssh/scp = ""
network/language_server/remote_host = "127.0.0.1"
network/language_server/remote_port = 6005
network/language_server/enable_smart_resolve = true
network/language_server/show_native_symbols_in_editor = false
network/language_server/use_thread = false
editors/3d_gizmos/gizmo_colors/camera = Color(0.8, 0.4, 0.8, 1)
editors/3d_gizmos/gizmo_colors/stream_player_3d = Color(0.4, 0.8, 1, 1)
editors/3d_gizmos/gizmo_colors/occluder = Color(0.8, 0.5, 1, 1)
editors/3d_gizmos/gizmo_colors/visibility_notifier = Color(0.8, 0.5, 0.7, 1)
editors/3d_gizmos/gizmo_colors/particles = Color(0.8, 0.7, 0.4, 1)
editors/3d_gizmos/gizmo_colors/particle_attractor = Color(1, 0.7, 0.5, 1)
editors/3d_gizmos/gizmo_colors/particle_collision = Color(0.5, 0.7, 1, 1)
editors/3d_gizmos/gizmo_colors/reflection_probe = Color(0.6, 1, 0.5, 1)
editors/3d_gizmos/gizmo_colors/decal = Color(0.6, 0.5, 1, 1)
editors/3d_gizmos/gizmo_colors/voxel_gi = Color(0.5, 1, 0.6, 1)
editors/3d_gizmos/gizmo_colors/lightmap_lines = Color(0.5, 0.6, 1, 1)
editors/3d_gizmos/gizmo_colors/lightprobe_lines = Color(0.5, 0.6, 1, 1)
editors/3d_gizmos/gizmo_colors/joint_body_a = Color(0.6, 0.8, 1, 1)
editors/3d_gizmos/gizmo_colors/joint_body_b = Color(0.6, 0.9, 1, 1)
editors/3d_gizmos/gizmo_colors/fog_volume = Color(0.5, 0.7, 1, 1)
text_editor/theme/highlighting/gdscript/function_definition_color = Color(0.4, 0.9, 1, 1)
text_editor/theme/highlighting/gdscript/global_function_color = Color(0.64, 0.64, 0.96, 1)
text_editor/theme/highlighting/gdscript/node_path_color = Color(0.72, 0.77, 0.49, 1)
text_editor/theme/highlighting/gdscript/node_reference_color = Color(0.39, 0.76, 0.35, 1)
text_editor/theme/highlighting/gdscript/annotation_color = Color(1, 0.7, 0.45, 1)
text_editor/theme/highlighting/gdscript/string_name_color = Color(1, 0.76, 0.65, 1)
text_editor/help/sort_functions_alphabetically = true
export/android/use_wifi_for_remote_debug = false
export/android/wifi_remote_debug_host = "localhost"
editors/3d_gizmos/gizmo_settings/path3d_tilt_disk_size = 0.8
editors/3d_gizmos/gizmo_colors/path_tilt = Color(1, 1, 0.4, 0.9)
text_editor/theme/highlighting/comment_markers/critical_color = Color(0.77, 0.35, 0.35, 1)
text_editor/theme/highlighting/comment_markers/warning_color = Color(0.72, 0.61, 0.48, 1)
text_editor/theme/highlighting/comment_markers/notice_color = Color(0.56, 0.67, 0.51, 1)
text_editor/theme/highlighting/comment_markers/critical_list = "ALERT,ATTENTION,CAUTION,CRITICAL,DANGER,SECURITY"
text_editor/theme/highlighting/comment_markers/warning_list = "BUG,DEPRECATED,FIXME,HACK,TASK,TBD,TODO,WARNING"
text_editor/theme/highlighting/comment_markers/notice_list = "INFO,NOTE,NOTICE,TEST,TESTING"
export/android/java_sdk_path = ""
network/language_server/poll_limit_usec = 100000
shortcuts = [{
"name": "spatial_editor/instant_translate",
"shortcuts": [SubResource("InputEventKey_bx5vk")]
}, {
"name": "spatial_editor/instant_rotate",
"shortcuts": [SubResource("InputEventKey_qjane")]
}, {
"name": "spatial_editor/instant_scale",
"shortcuts": [SubResource("InputEventKey_3dp4i")]
}]
metadata/export_template_download_directory = "/home/zombie/.cache/godot"

View file

@ -1 +1,4 @@
/home/zombie/fml-avs
/mnt/zombienas/organized_data/absolutely-unique/projects/git_dumping/funnymemellama/fml-avs
/home/zombie/funnymemellama
/home/zombie/asdasdasd

View file

@ -0,0 +1,2 @@
extends %BASE%

View file

@ -0,0 +1,5 @@
extends %BASE%
func _ready()%VOID_RETURN%:
%TS%pass

Binary file not shown.

View file

@ -12,25 +12,29 @@ syntax on
set encoding=utf-8
set showcmd " display incomplete commands
filetype plugin indent on " load file type plugins + indentation
"" Whitespace
set nowrap " don't wrap lines
set tabstop=4 shiftwidth=4 " a tab is 4 spaces
set expandtab " use spaces, not tabs
set backspace=indent,eol,start " backspace through everything in insert mode
autocmd BufWritePre * :%s/\s\+$//e " Trim whitespace on file save
"" Searching
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter
"" Code Editing Stuff
set number
""set cursorline
"" Copy and paste
vnoremap <C-c> "+y
map <C-p> "+P
"" Misc
set mouse=a
set ttyfast
set backupdir=~/.cache/vim

View file

@ -7,7 +7,7 @@ BaseCY=1080
OutputCX=1920
OutputCY=1080
FPSType=0
FPSCommon=60
FPSCommon=30
FPSInt=30
FPSNum=30
FPSDen=1
@ -72,11 +72,11 @@ VodTrackIndex=2
RecSplitFileType=Time
ApplyServiceSettings=true
UseRescale=false
Encoder=ffmpeg_vaapi_tex
Encoder=obs_x264
RecFilePath=/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings
RecFormat2=mkv
RecUseRescale=false
RecEncoder=hevc_ffmpeg_vaapi_tex
RecEncoder=obs-va-vaav1enc
FFFilePath=/home/zombie
FFVBitrate=2500
FFVGOPSize=250

View file

@ -1 +1 @@
{"vaapi_device":"/dev/dri/by-path/pci-0000:0c:00.0-render"}
{"mbbrc":"disabled","rate-control":"cbr"}

View file

@ -1 +1 @@
{}
{"vaapi_device":"/dev/dri/by-path/pci-0000:0c:00.0-render"}

View file

@ -1 +1 @@
{"vaapi_device":"/dev/dri/by-path/pci-0000:0c:00.0-render","rate_control":"VBR","maxrate":5000}
{"bitrate":2000}

View file

@ -1 +1 @@
{"vaapi_device":"/dev/dri/by-path/pci-0000:0c:00.0-render"}
{}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,7 @@ Pre21Defaults=false
Pre23Defaults=false
Pre24.1Defaults=false
FirstRun=true
LastVersion=503447552
LastVersion=520093696
MaxLogs=10
InfoIncrement=-1
ProcessPriority=Normal
@ -12,6 +12,7 @@ EnableAutoUpdates=true
ConfirmOnExit=true
HotkeyFocusType=NeverDisableHotkeys
InstallGUID=fe756bdf30934cf7ac79444f1dc3278ed581e6d0
Pre31Migrated=true
[Basic]
Profile=Untitled
@ -22,8 +23,8 @@ ConfigOnNewProfile=true
[BasicWindow]
gridMode=false
geometry=AdnQywADAAAAAA8DAAAAGgAAFDAAAAWcAAAPBQAAABwAABQuAAAFmgAAAAEAAAAACgAAAA8FAAAAHAAAFC4AAAWa
DockState=AAAA/wAAAAD9AAAAAQAAAAMAAAUqAAABAfwBAAAABvsAAAAUAHMAYwBlAG4AZQBzAEQAbwBjAGsBAAAAAAAAASsAAACYAP////sAAAAWAHMAbwB1AHIAYwBlAHMARABvAGMAawEAAAEvAAAA7wAAAJgA////+wAAABIAbQBpAHgAZQByAEQAbwBjAGsBAAACIgAAAPAAAADeAP////sAAAAeAHQAcgBhAG4AcwBpAHQAaQBvAG4AcwBEAG8AYwBrAQAAAxYAAAEyAAAApQD////7AAAAGABjAG8AbgB0AHIAbwBsAHMARABvAGMAawEAAARMAAAA3gAAAM4A////+wAAABIAcwB0AGEAdABzAEQAbwBjAGsCAAAMRAAAA+gAAAK8AAAAyAAABSoAAARBAAAABAAAAAQAAAAIAAAACPwAAAAA
geometry=AdnQywADAAAAAA8DAAAAGgAAGPwAAAWcAAAPBQAAABwAABj6AAAFmgAAAAEAAAAACgAAAA8FAAAAHAAAGPoAAAWa
DockState=AAAA/wAAAAD9AAAAAQAAAAMAAAn2AAABAfwBAAAABvsAAAAUAHMAYwBlAG4AZQBzAEQAbwBjAGsBAAAAAAAAAhoAAACYAP////sAAAAWAHMAbwB1AHIAYwBlAHMARABvAGMAawEAAAIeAAABrwAAAJgA////+wAAABIAbQBpAHgAZQByAEQAbwBjAGsBAAAD0QAAAhAAAADeAP////sAAAAeAHQAcgBhAG4AcwBpAHQAaQBvAG4AcwBEAG8AYwBrAQAABeUAAAIlAAAApQD////7AAAAGABjAG8AbgB0AHIAbwBsAHMARABvAGMAawEAAAgOAAAB6AAAAM4A////+wAAABIAcwB0AGEAdABzAEQAbwBjAGsCAAAMRAAAA+gAAAK8AAAAyAAACfYAAARBAAAABAAAAAQAAAAIAAAACPwAAAAA
PreviewEnabled=true
AlwaysOnTop=false
SceneDuplicationMode=true
@ -87,3 +88,8 @@ ServerPort=4455
AlertsEnabled=false
AuthRequired=true
ServerPassword=UkzQ5OIFcND0ZlV1
[Locations]
Configuration=/home/zombie/.config
SceneCollections=/home/zombie/.config
Profiles=/home/zombie/.config

View file

@ -1,368 +0,0 @@
16:52:16.545: Using EGL/X11
16:52:16.545: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
16:52:16.545: CPU Speed: 2200.000MHz
16:52:16.546: Physical Cores: 8, Logical Cores: 16
16:52:16.546: Physical Memory: 31998MB Total, 9717MB Free
16:52:16.546: Kernel Version: Linux 6.10.6-zen1-1-zen
16:52:16.546: Distribution: "Arch Linux" Unknown
16:52:16.546: Session Type: tty
16:52:16.546: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
16:52:16.547: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
16:52:16.547: Portable mode: false
16:52:16.578: OBS 30.2.1-1 (linux)
16:52:16.578: ---------------------------------
16:52:16.578: ---------------------------------
16:52:16.578: audio settings reset:
16:52:16.578: samples per sec: 48000
16:52:16.578: speakers: 2
16:52:16.578: max buffering: 960 milliseconds
16:52:16.578: buffering type: dynamically increasing
16:52:16.583: ---------------------------------
16:52:16.583: Initializing OpenGL...
16:52:16.667: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
16:52:16.667: OpenGL loaded successfully, version 3.3.0 NVIDIA 560.35.03, shading language 3.30 NVIDIA via Cg compiler
16:52:16.787: ---------------------------------
16:52:16.787: video settings reset:
16:52:16.787: base resolution: 1920x1080
16:52:16.787: output resolution: 1920x1080
16:52:16.787: downscale filter: Bicubic
16:52:16.787: fps: 60/1
16:52:16.787: format: NV12
16:52:16.787: YUV mode: Rec. 709/Partial
16:52:16.789: NV12 texture support enabled
16:52:16.789: P010 texture support not available
16:52:16.789: Audio monitoring device:
16:52:16.789: name: Default
16:52:16.789: id: default
16:52:16.789: ---------------------------------
16:52:16.799: Failed to load 'en-US' text for module: 'decklink-captions.so'
16:52:16.809: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
16:52:16.816: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
16:52:16.816: Failed to initialize module 'decklink.so'
16:52:16.974: [pipewire] No capture sources available
16:52:17.068: NVENC supported
16:52:17.068: VAAPI: Failed to initialize display in vaapi_device_h264_supported
16:52:17.069: FFmpeg VAAPI H264 encoding not supported
16:52:17.069: VAAPI: Failed to initialize display in vaapi_device_av1_supported
16:52:17.069: FFmpeg VAAPI AV1 encoding not supported
16:52:17.069: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
16:52:17.069: FFmpeg VAAPI HEVC encoding not supported
16:52:17.166: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
16:52:19.284: ---------------------------------
16:52:19.284: Loaded Modules:
16:52:19.284: wlrobs.so
16:52:19.284: text-freetype2.so
16:52:19.284: rtmp-services.so
16:52:19.284: obs-x264.so
16:52:19.284: obs-webrtc.so
16:52:19.284: obs-vst.so
16:52:19.284: obs-vaapi.so
16:52:19.284: obs-transitions.so
16:52:19.284: obs-qsv11.so
16:52:19.284: obs-outputs.so
16:52:19.284: obs-libfdk.so
16:52:19.284: obs-filters.so
16:52:19.284: obs-ffmpeg.so
16:52:19.284: linux-v4l2.so
16:52:19.284: linux-pulseaudio.so
16:52:19.284: linux-pipewire.so
16:52:19.284: linux-jack.so
16:52:19.284: linux-capture.so
16:52:19.284: linux-alsa.so
16:52:19.284: image-source.so
16:52:19.284: frontend-tools.so
16:52:19.284: decklink-output-ui.so
16:52:19.284: decklink-captions.so
16:52:19.284: ---------------------------------
16:52:19.284: ---------------------------------
16:52:19.284: Available Encoders:
16:52:19.284: Video Encoders:
16:52:19.284: - ffmpeg_svt_av1 (SVT-AV1)
16:52:19.284: - ffmpeg_aom_av1 (AOM AV1)
16:52:19.284: - jim_nvenc (NVIDIA NVENC H.264)
16:52:19.284: - jim_hevc_nvenc (NVIDIA NVENC HEVC)
16:52:19.284: - jim_av1_nvenc (NVIDIA NVENC AV1)
16:52:19.284: - obs_x264 (x264)
16:52:19.284: Audio Encoders:
16:52:19.284: - ffmpeg_aac (FFmpeg AAC)
16:52:19.284: - ffmpeg_opus (FFmpeg Opus)
16:52:19.284: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
16:52:19.284: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
16:52:19.284: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
16:52:19.284: - ffmpeg_alac (FFmpeg ALAC (24-bit))
16:52:19.284: - ffmpeg_flac (FFmpeg FLAC (16-bit))
16:52:19.285: - libfdk_aac (libfdk AAC)
16:52:19.285: ==== Startup complete ===============================================
16:52:19.286: Encoder ID 'av1_ffmpeg_vaapi_tex' not found
16:52:19.286: Encoder ID 'ffmpeg_vaapi_tex' not found
16:52:19.309: All scene data cleared
16:52:19.310: ------------------------------------------------
16:52:19.317: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
16:52:19.317: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
16:52:19.317: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
16:52:19.317: [Loaded global audio device]: 'Desktop Audio'
16:52:19.317: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
16:52:19.318: pulse-input: An error occurred while getting the source info!
16:52:19.318: [Loaded global audio device]: 'Mic/Aux'
16:52:19.318: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
16:52:19.318: pulse-input: An error occurred while getting the source info!
16:52:19.318: [Loaded global audio device]: 'HDMI Capture'
16:52:19.318: v4l2-input: Start capture from /dev/video0
16:52:19.318: v4l2-input: Unable to open device
16:52:19.318: v4l2-input: Initialization failed, errno: No such file or directory
16:52:19.319: xshm-input: Geometry 3840x2160 @ 0,0
16:52:19.320: v4l2-input: Start capture from /dev/video0
16:52:19.320: v4l2-input: Unable to open device
16:52:19.320: v4l2-input: Initialization failed, errno: No such file or directory
16:52:19.529: v4l2-input: Start capture from /dev/video0
16:52:19.529: v4l2-input: Unable to open device
16:52:19.529: v4l2-input: Initialization failed, errno: No such file or directory
16:52:19.529: v4l2-input: Start capture from /dev/video4
16:52:19.529: v4l2-input: Unable to open device
16:52:19.529: v4l2-input: Initialization failed, errno: No such file or directory
16:52:19.530: xshm-input: Geometry 3840x2160 @ 0,0
16:52:19.531: Source ID 'pipewire-desktop-capture-source' not found
16:52:19.531: Failed to create source 'Screen Capture (PipeWire)'!
16:52:19.535: Switched to scene 'screen'
16:52:19.536: ------------------------------------------------
16:52:19.536: Loaded scenes:
16:52:19.536: - scene 'Screen with camera':
16:52:19.536: - source: 'Screen Capture' (xshm_input)
16:52:19.536: - source: 'Camera Capture' (v4l2_input)
16:52:19.536: - source: 'border' (image_source)
16:52:19.536: - scene 'game with camera':
16:52:19.536: - source: 'Camera Capture' (v4l2_input)
16:52:19.536: - source: 'border' (image_source)
16:52:19.536: - source: 'capture acrd' (v4l2_input)
16:52:19.536: - scene 'game':
16:52:19.536: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:52:19.536: - scene 'game 4:3':
16:52:19.536: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:52:19.536: - scene 'screen':
16:52:19.536: - source: 'Screen Capture (XSHM)' (xshm_input)
16:52:19.536: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
16:52:19.536: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
16:52:19.536: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
16:52:19.536: - scene 'camera':
16:52:19.536: - source: 'Camera Capture' (v4l2_input)
16:52:19.536: - scene 'Camera with scope':
16:52:19.536: - source: 'Camera Capture' (v4l2_input)
16:52:19.536: - source: 'border' (image_source)
16:52:19.536: - source: 'scope caputre' (v4l2_input)
16:52:19.536: - scene 'game with screen':
16:52:19.536: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:52:19.536: ------------------------------------------------
16:52:19.864: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
16:52:19.864:
16:53:31.670: Get on org.freedesktop.portal.Settings returned an invalid reply
16:53:31.670: Get on org.freedesktop.portal.Settings returned an invalid reply
16:53:31.737: OpenType support missing for "Open Sans", script 11
16:53:31.744: OpenType support missing for "Open Sans", script 12
16:53:31.748: OpenType support missing for "Open Sans", script 16
16:53:31.751: OpenType support missing for "Open Sans", script 20
16:56:11.570: Encoder ID 'ffmpeg_vaapi_tex' not found
16:56:11.571: Settings changed (outputs)
16:56:11.571: ------------------------------------------------
16:56:13.807: [obs-nvenc: 'advanced_video_recording'] settings:
16:56:13.807: codec: H264
16:56:13.807: rate_control: CBR
16:56:13.807: bitrate: 2500
16:56:13.807: cqp: 20
16:56:13.807: keyint: 250
16:56:13.807: preset: p5
16:56:13.807: tuning: hq
16:56:13.807: multipass: qres
16:56:13.807: profile: high
16:56:13.807: width: 1920
16:56:13.807: height: 1080
16:56:13.807: b-frames: 2
16:56:13.807: lookahead: false
16:56:13.807: psycho_aq: true
16:56:13.807:
16:56:13.858: ---------------------------------
16:56:13.858: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
16:56:13.858:
16:56:13.858: ---------------------------------
16:56:13.858: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
16:56:13.858:
16:56:13.858: ---------------------------------
16:56:13.858: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
16:56:13.858:
16:56:13.859: ---------------------------------
16:56:13.859: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
16:56:13.859:
16:56:13.886: ==== Recording Start ===============================================
16:56:13.886: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-28 16-56-13.mkv'...
16:56:13.889: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:57:01.856: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-28 16-56-13.mkv' stopped
16:57:01.856: Output 'adv_file_output': stopping
16:57:01.856: Output 'adv_file_output': Total frames output: 2863
16:57:01.856: Output 'adv_file_output': Total drawn frames: 2718 (2879 attempted)
16:57:01.856: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 161 (5.6%)
16:57:01.857: Video stopped, number of skipped frames due to encoding lag: 161/2877 (5.6%)
16:57:01.857: ==== Recording Stop ================================================
16:58:01.877: Get on org.freedesktop.portal.Settings returned an invalid reply
16:58:01.877: Get on org.freedesktop.portal.Settings returned an invalid reply
16:58:09.100: Encoder ID 'ffmpeg_vaapi_tex' not found
16:58:09.100: Settings changed (outputs)
16:58:09.100: ------------------------------------------------
16:58:11.332: [obs-nvenc] Max B-frames setting (2) is more than encoder supports (0).
16:58:11.332: Setting B-frames to 0
16:58:11.332: [obs-nvenc] init_encoder_base: nvEncGetEncodePresetConfig failed: 8 (NV_ENC_ERR_INVALID_PARAM): EncodeAPI Internal Error.
16:58:11.332: [obs-nvenc] init_specific_encoder failed, trying again with compatibility options
16:58:11.589: [obs-nvenc] init_encoder_base: nvEncGetEncodePresetConfig failed: 8 (NV_ENC_ERR_INVALID_PARAM): EncodeAPI Internal Error.
16:58:12.047: [obs-nvenc] Max B-frames setting (2) is more than encoder supports (0).
16:58:12.047: Setting B-frames to 0
16:58:12.047: [obs-nvenc] init_encoder_base: nvEncGetEncodePresetConfig failed: 8 (NV_ENC_ERR_INVALID_PARAM): EncodeAPI Internal Error.
16:58:12.047: [obs-nvenc] init_specific_encoder failed, trying again with compatibility options
16:58:12.306: [obs-nvenc] init_encoder_base: nvEncGetEncodePresetConfig failed: 8 (NV_ENC_ERR_INVALID_PARAM): EncodeAPI Internal Error.
16:58:12.624: Already in fallback encoder, can't fall back further!
16:58:49.086: Get on org.freedesktop.portal.Settings returned an invalid reply
16:58:49.086: Get on org.freedesktop.portal.Settings returned an invalid reply
16:58:54.250: Encoder ID 'ffmpeg_vaapi_tex' not found
16:58:54.250: Settings changed (outputs)
16:58:54.250: ------------------------------------------------
16:58:55.909: [obs-nvenc: 'advanced_video_recording'] settings:
16:58:55.909: codec: HEVC
16:58:55.909: rate_control: CBR
16:58:55.909: bitrate: 2500
16:58:55.909: cqp: 20
16:58:55.909: keyint: 250
16:58:55.909: preset: p5
16:58:55.909: tuning: hq
16:58:55.909: multipass: qres
16:58:55.909: profile: main
16:58:55.909: width: 1920
16:58:55.909: height: 1080
16:58:55.909: b-frames: 2
16:58:55.909: lookahead: false
16:58:55.909: psycho_aq: true
16:58:55.909:
16:58:55.950: ---------------------------------
16:58:55.950: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
16:58:55.950:
16:58:55.950: ---------------------------------
16:58:55.950: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
16:58:55.950:
16:58:55.950: ---------------------------------
16:58:55.950: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
16:58:55.950:
16:58:55.950: ---------------------------------
16:58:55.950: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
16:58:55.950:
16:58:55.955: ==== Recording Start ===============================================
16:58:55.955: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-28 16-58-55.mkv'...
16:58:55.964: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:59:43.691: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-28 16-58-55.mkv' stopped
16:59:43.691: Output 'adv_file_output': stopping
16:59:43.691: Output 'adv_file_output': Total frames output: 2849
16:59:43.691: Output 'adv_file_output': Total drawn frames: 2564 (2865 attempted)
16:59:43.691: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 301 (10.5%)
16:59:43.691: Video stopped, number of skipped frames due to encoding lag: 301/2862 (10.5%)
16:59:43.691: ==== Recording Stop ================================================
17:41:23.924: Virtual camera started
17:41:23.927: ==== Virtual Camera Start ==========================================
17:41:23.927: Starting Virtual Camera output to Program
17:41:23.946: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
17:47:40.176: ==== Shutting down ==================================================
17:47:40.180: Output 'virtualcam_output': stopping
17:47:40.180: Output 'virtualcam_output': Total frames output: 22572
17:47:40.180: Output 'virtualcam_output': Total drawn frames: 16993 (22574 attempted)
17:47:40.180: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 5581 (24.7%)
17:47:40.180: ==== Virtual Camera Stop ===========================================
17:47:40.182: Virtual camera stopped
17:47:40.283: pulse-input: Stopped recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor'
17:47:40.283: pulse-input: Got 132836 packets with 159403200 frames
17:47:40.314: All scene data cleared
17:47:40.314: ------------------------------------------------
17:47:40.382: [Scripting] Total detached callbacks: 0
17:47:40.382: Freeing OBS context data
17:47:40.423: == Profiler Results =============================
17:47:40.423: run_program_init: 3196.95 ms
17:47:40.423: ┣OBSApp::AppInit: 12.269 ms
17:47:40.423: ┃ ┗OBSApp::InitLocale: 2.395 ms
17:47:40.423: ┗OBSApp::OBSInit: 3130.23 ms
17:47:40.423: ┣obs_startup: 1.515 ms
17:47:40.423: ┗OBSBasic::OBSInit: 3097.16 ms
17:47:40.423: ┣OBSBasic::InitBasicConfig: 0.099 ms
17:47:40.423: ┣OBSBasic::ResetAudio: 0.296 ms
17:47:40.423: ┣OBSBasic::ResetVideo: 210.755 ms
17:47:40.423: ┃ ┗obs_init_graphics: 208.822 ms
17:47:40.423: ┃ ┗shader compilation: 120.233 ms
17:47:40.423: ┣OBSBasic::InitOBSCallbacks: 0.006 ms
17:47:40.423: ┣OBSBasic::InitHotkeys: 0.027 ms
17:47:40.423: ┣obs_load_all_modules2: 2494.24 ms
17:47:40.423: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
17:47:40.423: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
17:47:40.423: ┃ ┣obs_init_module(decklink.so): 0.134 ms
17:47:40.423: ┃ ┣obs_init_module(frontend-tools.so): 69.516 ms
17:47:40.423: ┃ ┣obs_init_module(image-source.so): 0.009 ms
17:47:40.423: ┃ ┣obs_init_module(linux-alsa.so): 0.001 ms
17:47:40.423: ┃ ┣obs_init_module(linux-capture.so): 0.467 ms
17:47:40.423: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
17:47:40.423: ┃ ┣obs_init_module(linux-pipewire.so): 3.834 ms
17:47:40.423: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.004 ms
17:47:40.423: ┃ ┣obs_init_module(linux-v4l2.so): 0.096 ms
17:47:40.423: ┃ ┣obs_init_module(obs-ffmpeg.so): 5.348 ms
17:47:40.423: ┃ ┃ ┗nvenc_check: 4.61 ms
17:47:40.423: ┃ ┣obs_init_module(obs-filters.so): 0.03 ms
17:47:40.423: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
17:47:40.423: ┃ ┣obs_init_module(obs-outputs.so): 0.005 ms
17:47:40.423: ┃ ┣obs_init_module(obs-qsv11.so): 2.418 ms
17:47:40.423: ┃ ┣obs_init_module(obs-transitions.so): 0.01 ms
17:47:40.423: ┃ ┣obs_init_module(obs-vaapi.so): 2019.48 ms
17:47:40.423: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
17:47:40.423: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms
17:47:40.423: ┃ ┣obs_init_module(obs-x264.so): 0.004 ms
17:47:40.423: ┃ ┣obs_init_module(rtmp-services.so): 0.854 ms
17:47:40.423: ┃ ┣obs_init_module(text-freetype2.so): 0.026 ms
17:47:40.423: ┃ ┗obs_init_module(wlrobs.so): 0.007 ms
17:47:40.423: ┣OBSBasic::InitService: 1.314 ms
17:47:40.423: ┣OBSBasic::ResetOutputs: 0.177 ms
17:47:40.423: ┣OBSBasic::CreateHotkeys: 0.024 ms
17:47:40.423: ┣OBSBasic::InitPrimitives: 0.149 ms
17:47:40.423: ┗OBSBasic::Load: 253.824 ms
17:47:40.424: obs_hotkey_thread(25 ms): min=0.055 ms, median=4.893 ms, max=115.911 ms, 99th percentile=18.975 ms, 99.4406% below 25 ms
17:47:40.424: audio_thread(Audio): min=0.004 ms, median=0.095 ms, max=47.338 ms, 99th percentile=1.201 ms
17:47:40.424: ┗receive_audio: min=0.002 ms, median=0.166 ms, max=8.385 ms, 99th percentile=0.736 ms, 0.11589 calls per parent call
17:47:40.424: ┣buffer_audio: min=0 ms, median=0.001 ms, max=0.076 ms, 99th percentile=0.004 ms
17:47:40.424: ┗do_encode: min=0.04 ms, median=0.125 ms, max=8.382 ms, 99th percentile=0.526 ms, 1.06557 calls per parent call
17:47:40.424: ┣encode(Track1): min=0.042 ms, median=0.4 ms, max=0.695 ms, 99th percentile=0.561 ms, 0.125312 calls per parent call
17:47:40.424: ┣send_packet: min=0 ms, median=0.002 ms, max=8.283 ms, 99th percentile=0.029 ms
17:47:40.424: ┣encode(Track2): min=0.04 ms, median=0.323 ms, max=0.524 ms, 99th percentile=0.452 ms, 0.125312 calls per parent call
17:47:40.424: ┣encode(Track3): min=0.039 ms, median=0.09 ms, max=0.174 ms, 99th percentile=0.128 ms, 0.125312 calls per parent call
17:47:40.424: ┣encode(Track4): min=0.039 ms, median=0.085 ms, max=0.145 ms, 99th percentile=0.122 ms, 0.125312 calls per parent call
17:47:40.424: ┣encode(Track1): min=0.05 ms, median=0.377 ms, max=0.73 ms, 99th percentile=0.545 ms, 0.124688 calls per parent call
17:47:40.424: ┣encode(Track2): min=0.041 ms, median=0.312 ms, max=0.534 ms, 99th percentile=0.438 ms, 0.124688 calls per parent call
17:47:40.424: ┣encode(Track3): min=0.041 ms, median=0.09 ms, max=0.147 ms, 99th percentile=0.126 ms, 0.124688 calls per parent call
17:47:40.424: ┗encode(Track4): min=0.04 ms, median=0.085 ms, max=0.199 ms, 99th percentile=0.121 ms, 0.124688 calls per parent call
17:47:40.424: obs_graphics_thread(16.6667 ms): min=0.062 ms, median=16.687 ms, max=346.098 ms, 99th percentile=31.086 ms, 49.7763% below 16.667 ms
17:47:40.424: ┣tick_sources: min=0 ms, median=15.837 ms, max=307.468 ms, 99th percentile=28.306 ms
17:47:40.424: ┣output_frame: min=0.04 ms, median=0.323 ms, max=58.687 ms, 99th percentile=2.957 ms
17:47:40.424: ┃ ┣gs_context(video->graphics): min=0.04 ms, median=0.321 ms, max=58.685 ms, 99th percentile=1.19 ms
17:47:40.424: ┃ ┃ ┣render_video: min=0.024 ms, median=0.266 ms, max=45.597 ms, 99th percentile=0.846 ms
17:47:40.424: ┃ ┃ ┃ ┣render_main_texture: min=0.019 ms, median=0.242 ms, max=38.407 ms, 99th percentile=0.739 ms
17:47:40.424: ┃ ┃ ┃ ┣render_convert_texture: min=0.041 ms, median=0.082 ms, max=10.94 ms, 99th percentile=0.247 ms, 0.123957 calls per parent call
17:47:40.424: ┃ ┃ ┃ ┣output_gpu_encoders: min=0 ms, median=0.004 ms, max=0.079 ms, 99th percentile=0.008 ms, 0.0293964 calls per parent call
17:47:40.424: ┃ ┃ ┃ ┗stage_output_texture: min=0.019 ms, median=0.037 ms, max=45.197 ms, 99th percentile=0.153 ms, 0.0945603 calls per parent call
17:47:40.424: ┃ ┃ ┣gs_flush: min=0.002 ms, median=0.008 ms, max=47.426 ms, 99th percentile=0.078 ms
17:47:40.424: ┃ ┃ ┗download_frame: min=0 ms, median=0.005 ms, max=0.679 ms, 99th percentile=0.012 ms, 0.0945603 calls per parent call
17:47:40.424: ┃ ┗output_video_data: min=0.288 ms, median=1.025 ms, max=8.952 ms, 99th percentile=3.83 ms, 0.0945547 calls per parent call
17:47:40.424: ┗render_displays: min=0.007 ms, median=0.299 ms, max=78.193 ms, 99th percentile=3.446 ms
17:47:40.424: OBSBasicSettings::LoadThemeList: min=0.025 ms, median=0.025 ms, max=0.044 ms, 99th percentile=0.044 ms
17:47:40.424: OBSBasic::ResetOutputs: min=0.262 ms, median=0.304 ms, max=0.438 ms, 99th percentile=0.438 ms
17:47:40.424: obs_gpu_encode_thread(16.6667 ms): min=0.059 ms, median=0.628 ms, max=54.807 ms, 99th percentile=7.362 ms, 99.9652% below 16.667 ms
17:47:40.424: ┣gpu_encode_frame: min=0.058 ms, median=0.617 ms, max=54.804 ms, 99th percentile=7.354 ms
17:47:40.424: ┗send_packet: min=0.001 ms, median=0.006 ms, max=0.079 ms, 99th percentile=0.024 ms
17:47:40.424: obs_gpu_encode_thread(16.6667 ms): min=0.064 ms, median=0.709 ms, max=44.768 ms, 99th percentile=5.283 ms, 99.9651% below 16.667 ms
17:47:40.424: ┣gpu_encode_frame: min=0.061 ms, median=0.698 ms, max=44.764 ms, 99th percentile=5.272 ms
17:47:40.424: ┗send_packet: min=0.001 ms, median=0.005 ms, max=6.461 ms, 99th percentile=0.028 ms
17:47:40.424: video_thread(video): min=0 ms, median=5.645 ms, max=65.682 ms, 99th percentile=22.236 ms
17:47:40.424: =================================================
17:47:40.424: == Profiler Time Between Calls ==================
17:47:40.424: obs_hotkey_thread(25 ms): min=25.09 ms, median=30.003 ms, max=140.976 ms, 37.834% within ±2% of 25 ms (0% lower, 62.166% higher)
17:47:40.425: obs_graphics_thread(16.6667 ms): min=8.926 ms, median=16.772 ms, max=346.107 ms, 38.0247% within ±2% of 16.667 ms (14.36% lower, 47.6154% higher)
17:47:40.425: obs_gpu_encode_thread(16.6667 ms): min=0.073 ms, median=16.708 ms, max=64.134 ms, 26.1474% within ±2% of 16.667 ms (35.2921% lower, 38.5605% higher)
17:47:40.425: obs_gpu_encode_thread(16.6667 ms): min=0.36 ms, median=16.785 ms, max=54.407 ms, 26.2845% within ±2% of 16.667 ms (31.5624% lower, 42.1531% higher)
17:47:40.425: =================================================
17:47:40.549: Number of memory leaks: 0

View file

@ -1,161 +0,0 @@
17:51:18.365: Using EGL/X11
17:51:18.365: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
17:51:18.365: CPU Speed: 4216.992MHz
17:51:18.365: Physical Cores: 8, Logical Cores: 16
17:51:18.365: Physical Memory: 31998MB Total, 10223MB Free
17:51:18.365: Kernel Version: Linux 6.10.6-zen1-1-zen
17:51:18.366: Distribution: "Arch Linux" Unknown
17:51:18.366: Session Type: tty
17:51:18.366: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
17:51:18.366: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
17:51:18.366: Portable mode: false
17:51:18.395: OBS 30.2.1-1 (linux)
17:51:18.395: ---------------------------------
17:51:18.395: ---------------------------------
17:51:18.395: audio settings reset:
17:51:18.395: samples per sec: 48000
17:51:18.395: speakers: 2
17:51:18.395: max buffering: 960 milliseconds
17:51:18.395: buffering type: dynamically increasing
17:51:18.400: ---------------------------------
17:51:18.400: Initializing OpenGL...
17:51:18.506: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
17:51:18.506: OpenGL loaded successfully, version 3.3.0 NVIDIA 560.35.03, shading language 3.30 NVIDIA via Cg compiler
17:51:18.533: ---------------------------------
17:51:18.533: video settings reset:
17:51:18.533: base resolution: 1920x1080
17:51:18.533: output resolution: 1920x1080
17:51:18.533: downscale filter: Bicubic
17:51:18.533: fps: 60/1
17:51:18.533: format: NV12
17:51:18.533: YUV mode: Rec. 709/Partial
17:51:18.534: NV12 texture support enabled
17:51:18.534: P010 texture support not available
17:51:18.535: Audio monitoring device:
17:51:18.535: name: Default
17:51:18.535: id: default
17:51:18.535: ---------------------------------
17:51:18.545: Failed to load 'en-US' text for module: 'decklink-captions.so'
17:51:18.555: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
17:51:18.564: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
17:51:18.564: Failed to initialize module 'decklink.so'
17:51:18.723: [pipewire] No capture sources available
17:51:18.814: NVENC supported
17:51:18.814: VAAPI: Failed to initialize display in vaapi_device_h264_supported
17:51:18.814: FFmpeg VAAPI H264 encoding not supported
17:51:18.815: VAAPI: Failed to initialize display in vaapi_device_av1_supported
17:51:18.815: FFmpeg VAAPI AV1 encoding not supported
17:51:18.815: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
17:51:18.815: FFmpeg VAAPI HEVC encoding not supported
17:51:18.898: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
17:51:18.988: ---------------------------------
17:51:18.988: Loaded Modules:
17:51:18.988: wlrobs.so
17:51:18.988: text-freetype2.so
17:51:18.988: rtmp-services.so
17:51:18.988: obs-x264.so
17:51:18.988: obs-webrtc.so
17:51:18.988: obs-vst.so
17:51:18.988: obs-vaapi.so
17:51:18.988: obs-transitions.so
17:51:18.988: obs-qsv11.so
17:51:18.988: obs-outputs.so
17:51:18.988: obs-libfdk.so
17:51:18.988: obs-filters.so
17:51:18.988: obs-ffmpeg.so
17:51:18.988: linux-v4l2.so
17:51:18.988: linux-pulseaudio.so
17:51:18.988: linux-pipewire.so
17:51:18.988: linux-jack.so
17:51:18.988: linux-capture.so
17:51:18.988: linux-alsa.so
17:51:18.988: image-source.so
17:51:18.988: frontend-tools.so
17:51:18.988: decklink-output-ui.so
17:51:18.988: decklink-captions.so
17:51:18.988: ---------------------------------
17:51:18.988: ---------------------------------
17:51:18.988: Available Encoders:
17:51:18.988: Video Encoders:
17:51:18.988: - ffmpeg_svt_av1 (SVT-AV1)
17:51:18.988: - ffmpeg_aom_av1 (AOM AV1)
17:51:18.988: - jim_nvenc (NVIDIA NVENC H.264)
17:51:18.988: - jim_hevc_nvenc (NVIDIA NVENC HEVC)
17:51:18.988: - jim_av1_nvenc (NVIDIA NVENC AV1)
17:51:18.988: - obs_x264 (x264)
17:51:18.988: Audio Encoders:
17:51:18.988: - ffmpeg_aac (FFmpeg AAC)
17:51:18.988: - ffmpeg_opus (FFmpeg Opus)
17:51:18.988: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
17:51:18.988: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
17:51:18.988: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
17:51:18.988: - ffmpeg_alac (FFmpeg ALAC (24-bit))
17:51:18.988: - ffmpeg_flac (FFmpeg FLAC (16-bit))
17:51:18.988: - libfdk_aac (libfdk AAC)
17:51:18.988: ==== Startup complete ===============================================
17:51:18.989: Encoder ID 'ffmpeg_vaapi_tex' not found
17:51:19.014: All scene data cleared
17:51:19.014: ------------------------------------------------
17:51:19.018: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
17:51:19.018: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
17:51:19.018: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
17:51:19.018: [Loaded global audio device]: 'Desktop Audio'
17:51:19.018: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
17:51:19.019: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
17:51:19.019: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
17:51:19.019: [Loaded global audio device]: 'Mic/Aux'
17:51:19.019: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
17:51:19.019: pulse-input: An error occurred while getting the source info!
17:51:19.019: [Loaded global audio device]: 'HDMI Capture'
17:51:19.019: v4l2-input: Start capture from /dev/video0
17:51:19.019: v4l2-input: Unable to open device
17:51:19.019: v4l2-input: Initialization failed, errno: No such file or directory
17:51:19.020: xshm-input: Geometry 3840x2160 @ 0,0
17:51:19.021: v4l2-input: Start capture from /dev/video0
17:51:19.021: v4l2-input: Unable to open device
17:51:19.021: v4l2-input: Initialization failed, errno: No such file or directory
17:51:19.151: v4l2-input: Start capture from /dev/video0
17:51:19.151: v4l2-input: Unable to open device
17:51:19.151: v4l2-input: Initialization failed, errno: No such file or directory
17:51:19.152: v4l2-input: Start capture from /dev/video4
17:51:19.152: v4l2-input: Unable to open device
17:51:19.152: v4l2-input: Initialization failed, errno: No such file or directory
17:51:19.152: xshm-input: Geometry 3840x2160 @ 0,0
17:51:19.153: Source ID 'pipewire-desktop-capture-source' not found
17:51:19.153: Failed to create source 'Screen Capture (PipeWire)'!
17:51:19.155: Switched to scene 'screen'
17:51:19.155: ------------------------------------------------
17:51:19.155: Loaded scenes:
17:51:19.155: - scene 'Screen with camera':
17:51:19.155: - source: 'Screen Capture' (xshm_input)
17:51:19.155: - source: 'Camera Capture' (v4l2_input)
17:51:19.155: - source: 'border' (image_source)
17:51:19.155: - scene 'game with camera':
17:51:19.155: - source: 'Camera Capture' (v4l2_input)
17:51:19.155: - source: 'border' (image_source)
17:51:19.155: - source: 'capture acrd' (v4l2_input)
17:51:19.155: - scene 'game':
17:51:19.155: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:51:19.155: - scene 'game 4:3':
17:51:19.155: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:51:19.155: - scene 'screen':
17:51:19.155: - source: 'Screen Capture (XSHM)' (xshm_input)
17:51:19.155: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
17:51:19.155: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
17:51:19.155: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
17:51:19.155: - scene 'camera':
17:51:19.155: - source: 'Camera Capture' (v4l2_input)
17:51:19.155: - scene 'Camera with scope':
17:51:19.155: - source: 'Camera Capture' (v4l2_input)
17:51:19.155: - source: 'border' (image_source)
17:51:19.155: - source: 'scope caputre' (v4l2_input)
17:51:19.155: - scene 'game with screen':
17:51:19.155: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:51:19.155: ------------------------------------------------
17:51:19.569: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
17:51:19.569:
17:51:20.629: Virtual camera started
17:51:20.675: ==== Virtual Camera Start ==========================================
17:51:20.675: Starting Virtual Camera output to Program
17:51:20.681: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
19:23:01.491: The X11 connection broke: I/O error (code 1)

View file

@ -1,243 +0,0 @@
20:13:28.277: [Safe Mode] Unclean shutdown detected!
20:13:30.715: [Safe Mode] User elected to launch normally.
20:13:30.716: Using EGL/X11
20:13:30.716: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
20:13:30.716: CPU Speed: 2195.246MHz
20:13:30.717: Physical Cores: 8, Logical Cores: 16
20:13:30.717: Physical Memory: 31998MB Total, 17300MB Free
20:13:30.717: Kernel Version: Linux 6.10.6-zen1-1-zen
20:13:30.717: Distribution: "Arch Linux" Unknown
20:13:30.717: Session Type: tty
20:13:30.717: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
20:13:30.718: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
20:13:30.718: Portable mode: false
20:13:30.742: OBS 30.2.1-1 (linux)
20:13:30.742: ---------------------------------
20:13:30.742: ---------------------------------
20:13:30.742: audio settings reset:
20:13:30.742: samples per sec: 48000
20:13:30.742: speakers: 2
20:13:30.742: max buffering: 960 milliseconds
20:13:30.742: buffering type: dynamically increasing
20:13:30.747: ---------------------------------
20:13:30.747: Initializing OpenGL...
20:13:30.840: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
20:13:30.840: OpenGL loaded successfully, version 3.3.0 NVIDIA 560.35.03, shading language 3.30 NVIDIA via Cg compiler
20:13:30.862: ---------------------------------
20:13:30.862: video settings reset:
20:13:30.862: base resolution: 1920x1080
20:13:30.862: output resolution: 1920x1080
20:13:30.862: downscale filter: Bicubic
20:13:30.862: fps: 60/1
20:13:30.862: format: NV12
20:13:30.862: YUV mode: Rec. 709/Partial
20:13:30.863: NV12 texture support enabled
20:13:30.863: P010 texture support not available
20:13:30.864: Audio monitoring device:
20:13:30.864: name: Default
20:13:30.864: id: default
20:13:30.864: ---------------------------------
20:13:30.873: Failed to load 'en-US' text for module: 'decklink-captions.so'
20:13:30.882: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
20:13:30.892: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
20:13:30.892: Failed to initialize module 'decklink.so'
20:13:31.038: [pipewire] No capture sources available
20:13:31.120: NVENC supported
20:13:31.121: VAAPI: Failed to initialize display in vaapi_device_h264_supported
20:13:31.121: FFmpeg VAAPI H264 encoding not supported
20:13:31.121: VAAPI: Failed to initialize display in vaapi_device_av1_supported
20:13:31.121: FFmpeg VAAPI AV1 encoding not supported
20:13:31.121: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
20:13:31.121: FFmpeg VAAPI HEVC encoding not supported
20:13:31.213: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
20:13:31.285: ---------------------------------
20:13:31.285: Loaded Modules:
20:13:31.285: wlrobs.so
20:13:31.285: text-freetype2.so
20:13:31.285: rtmp-services.so
20:13:31.285: obs-x264.so
20:13:31.285: obs-webrtc.so
20:13:31.285: obs-vst.so
20:13:31.285: obs-vaapi.so
20:13:31.285: obs-transitions.so
20:13:31.285: obs-qsv11.so
20:13:31.285: obs-outputs.so
20:13:31.285: obs-libfdk.so
20:13:31.285: obs-filters.so
20:13:31.285: obs-ffmpeg.so
20:13:31.285: linux-v4l2.so
20:13:31.285: linux-pulseaudio.so
20:13:31.285: linux-pipewire.so
20:13:31.285: linux-jack.so
20:13:31.285: linux-capture.so
20:13:31.285: linux-alsa.so
20:13:31.285: image-source.so
20:13:31.285: frontend-tools.so
20:13:31.285: decklink-output-ui.so
20:13:31.285: decklink-captions.so
20:13:31.285: ---------------------------------
20:13:31.285: ---------------------------------
20:13:31.285: Available Encoders:
20:13:31.285: Video Encoders:
20:13:31.285: - ffmpeg_svt_av1 (SVT-AV1)
20:13:31.285: - ffmpeg_aom_av1 (AOM AV1)
20:13:31.285: - jim_nvenc (NVIDIA NVENC H.264)
20:13:31.285: - jim_hevc_nvenc (NVIDIA NVENC HEVC)
20:13:31.285: - jim_av1_nvenc (NVIDIA NVENC AV1)
20:13:31.285: - obs_x264 (x264)
20:13:31.285: Audio Encoders:
20:13:31.285: - ffmpeg_aac (FFmpeg AAC)
20:13:31.285: - ffmpeg_opus (FFmpeg Opus)
20:13:31.286: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
20:13:31.286: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
20:13:31.286: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
20:13:31.286: - ffmpeg_alac (FFmpeg ALAC (24-bit))
20:13:31.286: - ffmpeg_flac (FFmpeg FLAC (16-bit))
20:13:31.286: - libfdk_aac (libfdk AAC)
20:13:31.286: ==== Startup complete ===============================================
20:13:31.287: Encoder ID 'ffmpeg_vaapi_tex' not found
20:13:31.298: All scene data cleared
20:13:31.298: ------------------------------------------------
20:13:31.302: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:13:31.302: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
20:13:31.302: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
20:13:31.302: [Loaded global audio device]: 'Desktop Audio'
20:13:31.303: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:13:31.303: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
20:13:31.303: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
20:13:31.303: [Loaded global audio device]: 'Mic/Aux'
20:13:31.303: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:13:31.304: pulse-input: An error occurred while getting the source info!
20:13:31.304: [Loaded global audio device]: 'HDMI Capture'
20:13:31.304: v4l2-input: Start capture from /dev/video0
20:13:31.304: v4l2-input: Unable to open device
20:13:31.304: v4l2-input: Initialization failed, errno: No such file or directory
20:13:31.305: xshm-input: Geometry 3840x2160 @ 0,0
20:13:31.305: v4l2-input: Start capture from /dev/video0
20:13:31.305: v4l2-input: Unable to open device
20:13:31.305: v4l2-input: Initialization failed, errno: No such file or directory
20:13:31.416: v4l2-input: Start capture from /dev/video0
20:13:31.416: v4l2-input: Unable to open device
20:13:31.416: v4l2-input: Initialization failed, errno: No such file or directory
20:13:31.417: v4l2-input: Start capture from /dev/video4
20:13:31.417: v4l2-input: Unable to open device
20:13:31.417: v4l2-input: Initialization failed, errno: No such file or directory
20:13:31.417: xshm-input: Geometry 3840x2160 @ 0,0
20:13:31.418: Source ID 'pipewire-desktop-capture-source' not found
20:13:31.418: Failed to create source 'Screen Capture (PipeWire)'!
20:13:31.420: Switched to scene 'screen'
20:13:31.420: ------------------------------------------------
20:13:31.420: Loaded scenes:
20:13:31.420: - scene 'Screen with camera':
20:13:31.420: - source: 'Screen Capture' (xshm_input)
20:13:31.420: - source: 'Camera Capture' (v4l2_input)
20:13:31.420: - source: 'border' (image_source)
20:13:31.420: - scene 'game with camera':
20:13:31.420: - source: 'Camera Capture' (v4l2_input)
20:13:31.420: - source: 'border' (image_source)
20:13:31.420: - source: 'capture acrd' (v4l2_input)
20:13:31.420: - scene 'game':
20:13:31.420: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:13:31.420: - scene 'game 4:3':
20:13:31.420: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:13:31.420: - scene 'screen':
20:13:31.420: - source: 'Screen Capture (XSHM)' (xshm_input)
20:13:31.420: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
20:13:31.420: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
20:13:31.420: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
20:13:31.420: - scene 'camera':
20:13:31.420: - source: 'Camera Capture' (v4l2_input)
20:13:31.420: - scene 'Camera with scope':
20:13:31.420: - source: 'Camera Capture' (v4l2_input)
20:13:31.420: - source: 'border' (image_source)
20:13:31.420: - source: 'scope caputre' (v4l2_input)
20:13:31.420: - scene 'game with screen':
20:13:31.420: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:13:31.420: ------------------------------------------------
20:13:31.852: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
20:13:31.852:
20:13:35.476: Virtual camera started
20:13:35.500: ==== Virtual Camera Start ==========================================
20:13:35.500: Starting Virtual Camera output to Program
20:13:35.506: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
20:50:42.575: ==== Shutting down ==================================================
20:50:42.576: Output 'virtualcam_output': stopping
20:50:42.576: Output 'virtualcam_output': Total frames output: 133624
20:50:42.576: Output 'virtualcam_output': Total drawn frames: 133323 (133624 attempted)
20:50:42.576: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 301 (0.2%)
20:50:42.576: ==== Virtual Camera Stop ===========================================
20:50:42.577: Virtual camera stopped
20:50:42.659: pulse-input: Stopped recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor'
20:50:42.659: pulse-input: Got 89253 packets with 107103600 frames
20:50:42.659: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
20:50:42.659: pulse-input: Got 89253 packets with 107103600 frames
20:50:42.684: All scene data cleared
20:50:42.684: ------------------------------------------------
20:50:42.748: [Scripting] Total detached callbacks: 0
20:50:42.748: Freeing OBS context data
20:50:42.770: == Profiler Results =============================
20:50:42.770: run_program_init: 3332.19 ms
20:50:42.770: ┣OBSApp::AppInit: 11.281 ms
20:50:42.770: ┃ ┗OBSApp::InitLocale: 1.592 ms
20:50:42.770: ┗OBSApp::OBSInit: 843.999 ms
20:50:42.770: ┣obs_startup: 1.534 ms
20:50:42.771: ┗OBSBasic::OBSInit: 817.9 ms
20:50:42.771: ┣OBSBasic::InitBasicConfig: 0.098 ms
20:50:42.771: ┣OBSBasic::ResetAudio: 0.273 ms
20:50:42.771: ┣OBSBasic::ResetVideo: 121.31 ms
20:50:42.771: ┃ ┗obs_init_graphics: 119.439 ms
20:50:42.771: ┃ ┗shader compilation: 22.276 ms
20:50:42.771: ┣OBSBasic::InitOBSCallbacks: 0.007 ms
20:50:42.771: ┣OBSBasic::InitHotkeys: 0.027 ms
20:50:42.771: ┣obs_load_all_modules2: 420.917 ms
20:50:42.771: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
20:50:42.771: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
20:50:42.771: ┃ ┣obs_init_module(decklink.so): 0.168 ms
20:50:42.771: ┃ ┣obs_init_module(frontend-tools.so): 63.966 ms
20:50:42.771: ┃ ┣obs_init_module(image-source.so): 0.01 ms
20:50:42.771: ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms
20:50:42.771: ┃ ┣obs_init_module(linux-capture.so): 0.522 ms
20:50:42.771: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms
20:50:42.771: ┃ ┣obs_init_module(linux-pipewire.so): 3.684 ms
20:50:42.771: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.005 ms
20:50:42.771: ┃ ┣obs_init_module(linux-v4l2.so): 0.108 ms
20:50:42.771: ┃ ┣obs_init_module(obs-ffmpeg.so): 8.164 ms
20:50:42.771: ┃ ┃ ┗nvenc_check: 7.092 ms
20:50:42.771: ┃ ┣obs_init_module(obs-filters.so): 0.038 ms
20:50:42.771: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
20:50:42.771: ┃ ┣obs_init_module(obs-outputs.so): 0.006 ms
20:50:42.771: ┃ ┣obs_init_module(obs-qsv11.so): 1.202 ms
20:50:42.771: ┃ ┣obs_init_module(obs-transitions.so): 0.015 ms
20:50:42.771: ┃ ┣obs_init_module(obs-vaapi.so): 7.554 ms
20:50:42.771: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
20:50:42.771: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms
20:50:42.771: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
20:50:42.771: ┃ ┣obs_init_module(rtmp-services.so): 0.648 ms
20:50:42.771: ┃ ┣obs_init_module(text-freetype2.so): 0.017 ms
20:50:42.771: ┃ ┗obs_init_module(wlrobs.so): 0.005 ms
20:50:42.771: ┣OBSBasic::InitService: 1.183 ms
20:50:42.771: ┣OBSBasic::ResetOutputs: 0.151 ms
20:50:42.771: ┣OBSBasic::CreateHotkeys: 0.023 ms
20:50:42.771: ┣OBSBasic::InitPrimitives: 0.122 ms
20:50:42.771: ┗OBSBasic::Load: 136.838 ms
20:50:42.771: obs_hotkey_thread(25 ms): min=0.051 ms, median=0.135 ms, max=119.478 ms, 99th percentile=6.686 ms, 99.9425% below 25 ms
20:50:42.771: audio_thread(Audio): min=0.004 ms, median=0.035 ms, max=28.122 ms, 99th percentile=0.656 ms
20:50:42.771: obs_graphics_thread(16.6667 ms): min=0.041 ms, median=9.449 ms, max=193.864 ms, 99th percentile=15.778 ms, 99.122% below 16.667 ms
20:50:42.771: ┣tick_sources: min=0 ms, median=8.676 ms, max=190.826 ms, 99th percentile=14.02 ms
20:50:42.771: ┣output_frame: min=0.026 ms, median=0.71 ms, max=28.924 ms, 99th percentile=1.163 ms
20:50:42.771: ┃ ┣gs_context(video->graphics): min=0.026 ms, median=0.329 ms, max=24.033 ms, 99th percentile=0.481 ms
20:50:42.771: ┃ ┃ ┣render_video: min=0.015 ms, median=0.287 ms, max=23.963 ms, 99th percentile=0.421 ms
20:50:42.771: ┃ ┃ ┃ ┣render_main_texture: min=0.012 ms, median=0.179 ms, max=3.797 ms, 99th percentile=0.267 ms
20:50:42.771: ┃ ┃ ┃ ┣render_convert_texture: min=0.036 ms, median=0.062 ms, max=4.865 ms, 99th percentile=0.097 ms
20:50:42.771: ┃ ┃ ┃ ┗stage_output_texture: min=0.018 ms, median=0.032 ms, max=23.66 ms, 99th percentile=0.064 ms
20:50:42.771: ┃ ┃ ┣gs_flush: min=0.002 ms, median=0.005 ms, max=16.26 ms, 99th percentile=0.009 ms
20:50:42.771: ┃ ┃ ┗download_frame: min=0 ms, median=0.004 ms, max=0.083 ms, 99th percentile=0.006 ms
20:50:42.771: ┃ ┗output_video_data: min=0.272 ms, median=0.378 ms, max=27.157 ms, 99th percentile=0.718 ms
20:50:42.771: ┗render_displays: min=0.007 ms, median=0.018 ms, max=15.938 ms, 99th percentile=0.071 ms
20:50:42.771: video_thread(video): min=0 ms, median=3.189 ms, max=78.688 ms, 99th percentile=4.32 ms
20:50:42.771: =================================================
20:50:42.771: == Profiler Time Between Calls ==================
20:50:42.771: obs_hotkey_thread(25 ms): min=25.095 ms, median=25.21 ms, max=144.562 ms, 90.7581% within ±2% of 25 ms (0% lower, 9.24187% higher)
20:50:42.771: obs_graphics_thread(16.6667 ms): min=6.138 ms, median=16.667 ms, max=193.866 ms, 98.4805% within ±2% of 16.667 ms (0.672181% lower, 0.847337% higher)
20:50:42.771: =================================================
20:50:42.803: Number of memory leaks: 0

View file

@ -1,241 +0,0 @@
20:51:39.953: Using EGL/X11
20:51:39.953: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
20:51:39.953: CPU Speed: 2133.417MHz
20:51:39.954: Physical Cores: 8, Logical Cores: 16
20:51:39.954: Physical Memory: 31998MB Total, 3071MB Free
20:51:39.954: Kernel Version: Linux 6.10.6-zen1-1-zen
20:51:39.954: Distribution: "Arch Linux" Unknown
20:51:39.954: Session Type: tty
20:51:39.954: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
20:51:39.955: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
20:51:39.955: Portable mode: false
20:51:39.984: OBS 30.2.1-1 (linux)
20:51:39.984: ---------------------------------
20:51:39.984: ---------------------------------
20:51:39.985: audio settings reset:
20:51:39.985: samples per sec: 48000
20:51:39.985: speakers: 2
20:51:39.985: max buffering: 960 milliseconds
20:51:39.985: buffering type: dynamically increasing
20:51:39.989: ---------------------------------
20:51:39.989: Initializing OpenGL...
20:51:40.088: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
20:51:40.088: OpenGL loaded successfully, version 3.3.0 NVIDIA 560.35.03, shading language 3.30 NVIDIA via Cg compiler
20:51:40.110: ---------------------------------
20:51:40.110: video settings reset:
20:51:40.110: base resolution: 1920x1080
20:51:40.110: output resolution: 1920x1080
20:51:40.110: downscale filter: Bicubic
20:51:40.110: fps: 60/1
20:51:40.110: format: NV12
20:51:40.110: YUV mode: Rec. 709/Partial
20:51:40.112: NV12 texture support enabled
20:51:40.112: P010 texture support not available
20:51:40.112: Audio monitoring device:
20:51:40.112: name: Default
20:51:40.112: id: default
20:51:40.112: ---------------------------------
20:51:40.122: Failed to load 'en-US' text for module: 'decklink-captions.so'
20:51:40.131: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
20:51:40.142: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
20:51:40.142: Failed to initialize module 'decklink.so'
20:51:40.302: [pipewire] No capture sources available
20:51:40.378: NVENC supported
20:51:40.378: VAAPI: Failed to initialize display in vaapi_device_h264_supported
20:51:40.378: FFmpeg VAAPI H264 encoding not supported
20:51:40.378: VAAPI: Failed to initialize display in vaapi_device_av1_supported
20:51:40.378: FFmpeg VAAPI AV1 encoding not supported
20:51:40.378: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
20:51:40.378: FFmpeg VAAPI HEVC encoding not supported
20:51:40.453: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
20:51:40.539: ---------------------------------
20:51:40.539: Loaded Modules:
20:51:40.539: wlrobs.so
20:51:40.539: text-freetype2.so
20:51:40.539: rtmp-services.so
20:51:40.539: obs-x264.so
20:51:40.539: obs-webrtc.so
20:51:40.540: obs-vst.so
20:51:40.540: obs-vaapi.so
20:51:40.540: obs-transitions.so
20:51:40.540: obs-qsv11.so
20:51:40.540: obs-outputs.so
20:51:40.540: obs-libfdk.so
20:51:40.540: obs-filters.so
20:51:40.540: obs-ffmpeg.so
20:51:40.540: linux-v4l2.so
20:51:40.540: linux-pulseaudio.so
20:51:40.540: linux-pipewire.so
20:51:40.540: linux-jack.so
20:51:40.540: linux-capture.so
20:51:40.540: linux-alsa.so
20:51:40.540: image-source.so
20:51:40.540: frontend-tools.so
20:51:40.540: decklink-output-ui.so
20:51:40.540: decklink-captions.so
20:51:40.540: ---------------------------------
20:51:40.540: ---------------------------------
20:51:40.540: Available Encoders:
20:51:40.540: Video Encoders:
20:51:40.540: - ffmpeg_svt_av1 (SVT-AV1)
20:51:40.540: - ffmpeg_aom_av1 (AOM AV1)
20:51:40.540: - jim_nvenc (NVIDIA NVENC H.264)
20:51:40.540: - jim_hevc_nvenc (NVIDIA NVENC HEVC)
20:51:40.540: - jim_av1_nvenc (NVIDIA NVENC AV1)
20:51:40.540: - obs_x264 (x264)
20:51:40.540: Audio Encoders:
20:51:40.540: - ffmpeg_aac (FFmpeg AAC)
20:51:40.540: - ffmpeg_opus (FFmpeg Opus)
20:51:40.540: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
20:51:40.540: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
20:51:40.540: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
20:51:40.540: - ffmpeg_alac (FFmpeg ALAC (24-bit))
20:51:40.540: - ffmpeg_flac (FFmpeg FLAC (16-bit))
20:51:40.540: - libfdk_aac (libfdk AAC)
20:51:40.540: ==== Startup complete ===============================================
20:51:40.541: Encoder ID 'ffmpeg_vaapi_tex' not found
20:51:40.582: All scene data cleared
20:51:40.582: ------------------------------------------------
20:51:40.586: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:51:40.587: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
20:51:40.587: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
20:51:40.587: [Loaded global audio device]: 'Desktop Audio'
20:51:40.587: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:51:40.587: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
20:51:40.587: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
20:51:40.587: [Loaded global audio device]: 'Mic/Aux'
20:51:40.588: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
20:51:40.588: pulse-input: An error occurred while getting the source info!
20:51:40.588: [Loaded global audio device]: 'HDMI Capture'
20:51:40.588: v4l2-input: Start capture from /dev/video0
20:51:40.588: v4l2-input: Unable to open device
20:51:40.588: v4l2-input: Initialization failed, errno: No such file or directory
20:51:40.589: xshm-input: Geometry 3840x2160 @ 0,0
20:51:40.589: v4l2-input: Start capture from /dev/video0
20:51:40.589: v4l2-input: Unable to open device
20:51:40.589: v4l2-input: Initialization failed, errno: No such file or directory
20:51:40.716: v4l2-input: Start capture from /dev/video0
20:51:40.716: v4l2-input: Unable to open device
20:51:40.716: v4l2-input: Initialization failed, errno: No such file or directory
20:51:40.716: v4l2-input: Start capture from /dev/video4
20:51:40.716: v4l2-input: Unable to open device
20:51:40.716: v4l2-input: Initialization failed, errno: No such file or directory
20:51:40.717: xshm-input: Geometry 3840x2160 @ 0,0
20:51:40.717: Source ID 'pipewire-desktop-capture-source' not found
20:51:40.718: Failed to create source 'Screen Capture (PipeWire)'!
20:51:40.719: Switched to scene 'screen'
20:51:40.719: ------------------------------------------------
20:51:40.719: Loaded scenes:
20:51:40.719: - scene 'Screen with camera':
20:51:40.719: - source: 'Screen Capture' (xshm_input)
20:51:40.719: - source: 'Camera Capture' (v4l2_input)
20:51:40.719: - source: 'border' (image_source)
20:51:40.719: - scene 'game with camera':
20:51:40.719: - source: 'Camera Capture' (v4l2_input)
20:51:40.719: - source: 'border' (image_source)
20:51:40.719: - source: 'capture acrd' (v4l2_input)
20:51:40.719: - scene 'game':
20:51:40.719: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:51:40.719: - scene 'game 4:3':
20:51:40.719: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:51:40.719: - scene 'screen':
20:51:40.719: - source: 'Screen Capture (XSHM)' (xshm_input)
20:51:40.719: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
20:51:40.719: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
20:51:40.719: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
20:51:40.719: - scene 'camera':
20:51:40.720: - source: 'Camera Capture' (v4l2_input)
20:51:40.720: - scene 'Camera with scope':
20:51:40.720: - source: 'Camera Capture' (v4l2_input)
20:51:40.720: - source: 'border' (image_source)
20:51:40.720: - source: 'scope caputre' (v4l2_input)
20:51:40.720: - scene 'game with screen':
20:51:40.720: - source: 'Video Capture Device (V4L2)' (v4l2_input)
20:51:40.720: ------------------------------------------------
20:51:41.137: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
20:51:41.137:
20:51:42.939: Virtual camera started
20:51:42.983: ==== Virtual Camera Start ==========================================
20:51:42.983: Starting Virtual Camera output to Program
20:51:42.995: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
20:56:58.494: ==== Shutting down ==================================================
20:56:58.495: Output 'virtualcam_output': stopping
20:56:58.495: Output 'virtualcam_output': Total frames output: 18929
20:56:58.495: Output 'virtualcam_output': Total drawn frames: 15542 (18930 attempted)
20:56:58.495: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 3388 (17.9%)
20:56:58.495: ==== Virtual Camera Stop ===========================================
20:56:58.496: Virtual camera stopped
20:56:58.641: pulse-input: Stopped recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor'
20:56:58.641: pulse-input: Got 12721 packets with 15265200 frames
20:56:58.641: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
20:56:58.641: pulse-input: Got 12720 packets with 15264000 frames
20:56:58.686: All scene data cleared
20:56:58.686: ------------------------------------------------
20:56:58.754: [Scripting] Total detached callbacks: 0
20:56:58.755: Freeing OBS context data
20:56:58.797: == Profiler Results =============================
20:56:58.797: run_program_init: 978.893 ms
20:56:58.797: ┣OBSApp::AppInit: 9.512 ms
20:56:58.797: ┃ ┗OBSApp::InitLocale: 0.804 ms
20:56:58.797: ┗OBSApp::OBSInit: 930.611 ms
20:56:58.797: ┣obs_startup: 1.396 ms
20:56:58.797: ┗OBSBasic::OBSInit: 899.532 ms
20:56:58.797: ┣OBSBasic::InitBasicConfig: 0.105 ms
20:56:58.797: ┣OBSBasic::ResetAudio: 0.349 ms
20:56:58.797: ┣OBSBasic::ResetVideo: 127.446 ms
20:56:58.797: ┃ ┗obs_init_graphics: 125.321 ms
20:56:58.797: ┃ ┗shader compilation: 21.772 ms
20:56:58.797: ┣OBSBasic::InitOBSCallbacks: 0.005 ms
20:56:58.797: ┣OBSBasic::InitHotkeys: 0.027 ms
20:56:58.798: ┣obs_load_all_modules2: 427.046 ms
20:56:58.798: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
20:56:58.798: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
20:56:58.798: ┃ ┣obs_init_module(decklink.so): 0.139 ms
20:56:58.798: ┃ ┣obs_init_module(frontend-tools.so): 65.257 ms
20:56:58.798: ┃ ┣obs_init_module(image-source.so): 0.013 ms
20:56:58.798: ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms
20:56:58.798: ┃ ┣obs_init_module(linux-capture.so): 0.342 ms
20:56:58.798: ┃ ┣obs_init_module(linux-jack.so): 0.003 ms
20:56:58.798: ┃ ┣obs_init_module(linux-pipewire.so): 3.517 ms
20:56:58.798: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.003 ms
20:56:58.798: ┃ ┣obs_init_module(linux-v4l2.so): 0.153 ms
20:56:58.798: ┃ ┣obs_init_module(obs-ffmpeg.so): 1.249 ms
20:56:58.798: ┃ ┃ ┗nvenc_check: 0.828 ms
20:56:58.798: ┃ ┣obs_init_module(obs-filters.so): 0.026 ms
20:56:58.798: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
20:56:58.798: ┃ ┣obs_init_module(obs-outputs.so): 0.004 ms
20:56:58.798: ┃ ┣obs_init_module(obs-qsv11.so): 1.21 ms
20:56:58.798: ┃ ┣obs_init_module(obs-transitions.so): 0.009 ms
20:56:58.798: ┃ ┣obs_init_module(obs-vaapi.so): 6.154 ms
20:56:58.798: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
20:56:58.798: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
20:56:58.798: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
20:56:58.798: ┃ ┣obs_init_module(rtmp-services.so): 0.509 ms
20:56:58.798: ┃ ┣obs_init_module(text-freetype2.so): 0.017 ms
20:56:58.798: ┃ ┗obs_init_module(wlrobs.so): 0.005 ms
20:56:58.798: ┣OBSBasic::InitService: 0.888 ms
20:56:58.798: ┣OBSBasic::ResetOutputs: 0.148 ms
20:56:58.798: ┣OBSBasic::CreateHotkeys: 0.022 ms
20:56:58.798: ┣OBSBasic::InitPrimitives: 0.134 ms
20:56:58.798: ┗OBSBasic::Load: 183.087 ms
20:56:58.798: obs_hotkey_thread(25 ms): min=0.055 ms, median=8.124 ms, max=100.593 ms, 99th percentile=50.816 ms, 92.8336% below 25 ms
20:56:58.799: audio_thread(Audio): min=0.013 ms, median=0.104 ms, max=13 ms, 99th percentile=0.912 ms
20:56:58.799: obs_graphics_thread(16.6667 ms): min=0.041 ms, median=17.278 ms, max=227.943 ms, 99th percentile=68.541 ms, 40.6296% below 16.667 ms
20:56:58.799: ┣tick_sources: min=0 ms, median=16.298 ms, max=224.791 ms, 99th percentile=67.569 ms
20:56:58.799: ┣output_frame: min=0.026 ms, median=0.881 ms, max=16.417 ms, 99th percentile=2.428 ms
20:56:58.799: ┃ ┣gs_context(video->graphics): min=0.026 ms, median=0.358 ms, max=15.877 ms, 99th percentile=0.792 ms
20:56:58.799: ┃ ┃ ┣render_video: min=0.015 ms, median=0.312 ms, max=15.818 ms, 99th percentile=0.677 ms
20:56:58.799: ┃ ┃ ┃ ┣render_main_texture: min=0.012 ms, median=0.201 ms, max=10.58 ms, 99th percentile=0.397 ms
20:56:58.799: ┃ ┃ ┃ ┣render_convert_texture: min=0.039 ms, median=0.064 ms, max=1.343 ms, 99th percentile=0.125 ms
20:56:58.799: ┃ ┃ ┃ ┗stage_output_texture: min=0.019 ms, median=0.032 ms, max=15.509 ms, 99th percentile=0.1 ms
20:56:58.799: ┃ ┃ ┣gs_flush: min=0.003 ms, median=0.005 ms, max=3.372 ms, 99th percentile=0.013 ms
20:56:58.799: ┃ ┃ ┗download_frame: min=0 ms, median=0.004 ms, max=0.095 ms, 99th percentile=0.008 ms
20:56:58.799: ┃ ┗output_video_data: min=0.28 ms, median=0.521 ms, max=4.137 ms, 99th percentile=1.433 ms
20:56:58.799: ┗render_displays: min=0.007 ms, median=0.021 ms, max=16.886 ms, 99th percentile=0.094 ms
20:56:58.799: video_thread(video): min=0.001 ms, median=3.665 ms, max=39.013 ms, 99th percentile=16.98 ms
20:56:58.799: =================================================
20:56:58.799: == Profiler Time Between Calls ==================
20:56:58.799: obs_hotkey_thread(25 ms): min=25.125 ms, median=33.203 ms, max=125.678 ms, 11.4367% within ±2% of 25 ms (0% lower, 88.5633% higher)
20:56:58.800: obs_graphics_thread(16.6667 ms): min=10.606 ms, median=17.288 ms, max=227.948 ms, 20.52% within ±2% of 16.667 ms (25.102% lower, 54.378% higher)
20:56:58.800: =================================================
20:56:58.864: Number of memory leaks: 0

View file

@ -1,204 +0,0 @@
08:47:06.090: Platform: Wayland
08:47:06.090: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
08:47:06.090: CPU Speed: 4131.901MHz
08:47:06.091: Physical Cores: 8, Logical Cores: 16
08:47:06.091: Physical Memory: 31998MB Total, 5964MB Free
08:47:06.091: Kernel Version: Linux 6.10.6-zen1-1-zen
08:47:06.091: Distribution: "Arch Linux" Unknown
08:47:06.091: Session Type: wayland
08:47:06.129: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
08:47:06.129: Portable mode: false
08:47:06.168: OBS 30.2.1-1 (linux)
08:47:06.168: ---------------------------------
08:47:06.168: ---------------------------------
08:47:06.168: audio settings reset:
08:47:06.168: samples per sec: 48000
08:47:06.168: speakers: 2
08:47:06.168: max buffering: 960 milliseconds
08:47:06.168: buffering type: dynamically increasing
08:47:06.173: ---------------------------------
08:47:06.173: Initializing OpenGL...
08:47:06.173: Using EGL/Wayland
08:47:06.241: Initialized EGL 1.5
08:47:06.261: Loading up OpenGL on adapter Mesa NV164
08:47:06.261: OpenGL loaded successfully, version 4.3 (Core Profile) Mesa 24.1.6-arch1.1, shading language 4.30
08:47:06.383: ---------------------------------
08:47:06.383: video settings reset:
08:47:06.383: base resolution: 1920x1080
08:47:06.383: output resolution: 1920x1080
08:47:06.383: downscale filter: Bicubic
08:47:06.383: fps: 60/1
08:47:06.383: format: NV12
08:47:06.383: YUV mode: Rec. 709/Partial
08:47:06.385: NV12 texture support enabled
08:47:06.385: P010 texture support not available
08:47:06.389: Audio monitoring device:
08:47:06.389: name: Default
08:47:06.389: id: default
08:47:06.389: ---------------------------------
08:47:06.398: Failed to load 'en-US' text for module: 'decklink-captions.so'
08:47:06.409: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
08:47:06.421: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
08:47:06.421: Failed to initialize module 'decklink.so'
08:47:06.636: [pipewire] No capture sources available
08:47:06.737: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory
08:47:06.737:
08:47:06.740: VAAPI: Failed to initialize display in vaapi_device_h264_supported
08:47:06.741: FFmpeg VAAPI H264 encoding not supported
08:47:06.743: VAAPI: Failed to initialize display in vaapi_device_av1_supported
08:47:06.744: FFmpeg VAAPI AV1 encoding not supported
08:47:06.746: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
08:47:06.747: FFmpeg VAAPI HEVC encoding not supported
08:47:06.849: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
08:47:07.025: ---------------------------------
08:47:07.025: Loaded Modules:
08:47:07.025: wlrobs.so
08:47:07.025: text-freetype2.so
08:47:07.025: rtmp-services.so
08:47:07.025: obs-x264.so
08:47:07.025: obs-webrtc.so
08:47:07.025: obs-vst.so
08:47:07.025: obs-vaapi.so
08:47:07.025: obs-transitions.so
08:47:07.025: obs-qsv11.so
08:47:07.025: obs-outputs.so
08:47:07.025: obs-libfdk.so
08:47:07.025: obs-filters.so
08:47:07.025: obs-ffmpeg.so
08:47:07.025: linux-v4l2.so
08:47:07.025: linux-pulseaudio.so
08:47:07.025: linux-pipewire.so
08:47:07.025: linux-jack.so
08:47:07.025: linux-capture.so
08:47:07.025: linux-alsa.so
08:47:07.025: image-source.so
08:47:07.025: frontend-tools.so
08:47:07.025: decklink-output-ui.so
08:47:07.025: decklink-captions.so
08:47:07.025: ---------------------------------
08:47:07.025: ---------------------------------
08:47:07.025: Available Encoders:
08:47:07.025: Video Encoders:
08:47:07.025: - ffmpeg_svt_av1 (SVT-AV1)
08:47:07.025: - ffmpeg_aom_av1 (AOM AV1)
08:47:07.025: - obs_x264 (x264)
08:47:07.025: Audio Encoders:
08:47:07.026: - ffmpeg_aac (FFmpeg AAC)
08:47:07.026: - ffmpeg_opus (FFmpeg Opus)
08:47:07.026: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
08:47:07.026: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
08:47:07.026: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
08:47:07.026: - ffmpeg_alac (FFmpeg ALAC (24-bit))
08:47:07.026: - ffmpeg_flac (FFmpeg FLAC (16-bit))
08:47:07.026: - libfdk_aac (libfdk AAC)
08:47:07.026: ==== Startup complete ===============================================
08:47:07.028: Encoder ID 'jim_hevc_nvenc' not found
08:47:07.028: Encoder ID 'ffmpeg_vaapi_tex' not found
08:47:07.068: All scene data cleared
08:47:07.068: ------------------------------------------------
08:47:07.075: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
08:47:07.075: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
08:47:07.075: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
08:47:07.075: [Loaded global audio device]: 'Desktop Audio'
08:47:07.076: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
08:47:07.076: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
08:47:07.076: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
08:47:07.076: [Loaded global audio device]: 'Mic/Aux'
08:47:07.076: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
08:47:07.076: pulse-input: An error occurred while getting the source info!
08:47:07.076: [Loaded global audio device]: 'HDMI Capture'
08:47:07.076: v4l2-input: Start capture from /dev/video0
08:47:07.076: v4l2-input: Unable to open device
08:47:07.076: v4l2-input: Initialization failed, errno: No such file or directory
08:47:07.077: Source ID 'xshm_input' not found
08:47:07.077: Failed to create source 'Screen Capture'!
08:47:07.077: v4l2-input: Start capture from /dev/video0
08:47:07.077: v4l2-input: Unable to open device
08:47:07.077: v4l2-input: Initialization failed, errno: No such file or directory
08:47:07.221: v4l2-input: Start capture from /dev/video0
08:47:07.222: v4l2-input: Unable to open device
08:47:07.222: v4l2-input: Initialization failed, errno: No such file or directory
08:47:07.222: v4l2-input: Start capture from /dev/video4
08:47:07.222: v4l2-input: Unable to open device
08:47:07.222: v4l2-input: Initialization failed, errno: No such file or directory
08:47:07.223: Source ID 'xshm_input' not found
08:47:07.223: Failed to create source 'Screen Capture (XSHM)'!
08:47:07.223: Source ID 'pipewire-desktop-capture-source' not found
08:47:07.223: Failed to create source 'Screen Capture (PipeWire)'!
08:47:07.227: Switched to scene 'screen'
08:47:07.227: ------------------------------------------------
08:47:07.227: Loaded scenes:
08:47:07.227: - scene 'Screen with camera':
08:47:07.227: - source: 'Screen Capture' (xshm_input)
08:47:07.227: - source: 'Camera Capture' (v4l2_input)
08:47:07.227: - source: 'border' (image_source)
08:47:07.227: - scene 'game with camera':
08:47:07.227: - source: 'Camera Capture' (v4l2_input)
08:47:07.227: - source: 'border' (image_source)
08:47:07.227: - source: 'capture acrd' (v4l2_input)
08:47:07.227: - scene 'game':
08:47:07.228: - source: 'Video Capture Device (V4L2)' (v4l2_input)
08:47:07.228: - scene 'game 4:3':
08:47:07.228: - source: 'Video Capture Device (V4L2)' (v4l2_input)
08:47:07.228: - scene 'screen':
08:47:07.228: - source: 'Screen Capture (XSHM)' (xshm_input)
08:47:07.228: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
08:47:07.228: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
08:47:07.228: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
08:47:07.228: - scene 'camera':
08:47:07.228: - source: 'Camera Capture' (v4l2_input)
08:47:07.228: - scene 'Camera with scope':
08:47:07.228: - source: 'Camera Capture' (v4l2_input)
08:47:07.228: - source: 'border' (image_source)
08:47:07.228: - source: 'scope caputre' (v4l2_input)
08:47:07.228: - scene 'game with screen':
08:47:07.228: - source: 'Video Capture Device (V4L2)' (v4l2_input)
08:47:07.228: ------------------------------------------------
08:47:07.640: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
08:47:07.640:
08:47:12.676: Get on org.freedesktop.portal.Settings returned an invalid reply
08:47:12.676: Get on org.freedesktop.portal.Settings returned an invalid reply
08:47:12.731: OpenType support missing for "Open Sans", script 11
08:47:12.738: OpenType support missing for "Open Sans", script 12
08:47:12.742: OpenType support missing for "Open Sans", script 16
08:47:12.745: OpenType support missing for "Open Sans", script 20
08:47:23.400: Encoder ID 'ffmpeg_vaapi_tex' not found
08:47:23.400: Settings changed (outputs)
08:47:23.400: ------------------------------------------------
08:47:24.910: ---------------------------------
08:47:24.910: [x264 encoder: 'advanced_video_recording'] preset: veryfast
08:47:24.910: [x264 encoder: 'advanced_video_recording'] settings:
08:47:24.910: rate_control: CBR
08:47:24.910: bitrate: 2500
08:47:24.910: buffer size: 2500
08:47:24.910: crf: 23
08:47:24.910: fps_num: 60
08:47:24.910: fps_den: 1
08:47:24.910: width: 1920
08:47:24.910: height: 1080
08:47:24.910: keyint: 250
08:47:24.910:
08:47:24.934: ---------------------------------
08:47:24.934: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
08:47:24.934:
08:47:24.934: ---------------------------------
08:47:24.935: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
08:47:24.935:
08:47:24.935: ---------------------------------
08:47:24.935: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
08:47:24.935:
08:47:24.935: ---------------------------------
08:47:24.935: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
08:47:24.935:
08:47:24.966: ==== Recording Start ===============================================
08:47:24.966: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-29 08-47-24.mkv'...
08:47:24.970: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
08:47:27.808: [ffmpeg muxer: 'adv_file_output'] os_process_pipe_write for packet data failed
08:47:27.808: [ffmpeg muxer: 'adv_file_output'] ffmpeg-mux: Couldn't initialize muxer
08:47:27.808:
08:47:27.809: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-08-29 08-47-24.mkv' stopped
08:47:27.809: Output 'adv_file_output': stopping
08:47:27.809: Output 'adv_file_output': Total frames output: 133
08:47:27.809: Output 'adv_file_output': Total drawn frames: 171
08:47:27.809: ==== Recording Stop ================================================
08:47:57.978: The Wayland connection broke. Did the Wayland compositor die?

View file

@ -1,248 +0,0 @@
10:12:18.896: [Safe Mode] Unclean shutdown detected!
10:12:20.918: [Safe Mode] User elected to launch normally.
10:12:20.919: Using EGL/X11
10:12:20.919: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
10:12:20.919: CPU Speed: 3600.000MHz
10:12:20.920: Physical Cores: 8, Logical Cores: 16
10:12:20.920: Physical Memory: 31998MB Total, 27395MB Free
10:12:20.920: Kernel Version: Linux 6.10.7-zen1-1-zen
10:12:20.920: Distribution: "Arch Linux" Unknown
10:12:20.920: Session Type: tty
10:12:20.920: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
10:12:20.921: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
10:12:20.921: Portable mode: false
10:12:20.955: OBS 30.2.1-1 (linux)
10:12:20.955: ---------------------------------
10:12:20.955: ---------------------------------
10:12:20.955: audio settings reset:
10:12:20.955: samples per sec: 48000
10:12:20.955: speakers: 2
10:12:20.955: max buffering: 960 milliseconds
10:12:20.955: buffering type: dynamically increasing
10:12:20.966: ---------------------------------
10:12:20.966: Initializing OpenGL...
10:12:21.062: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XT (radeonsi, navi31, LLVM 18.1.8, DRM 3.57, 6.10.7-zen1-1-zen)
10:12:21.062: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.2.1-arch1.1, shading language 4.60
10:12:21.181: ---------------------------------
10:12:21.181: video settings reset:
10:12:21.181: base resolution: 1920x1080
10:12:21.181: output resolution: 1920x1080
10:12:21.181: downscale filter: Bicubic
10:12:21.181: fps: 60/1
10:12:21.181: format: NV12
10:12:21.181: YUV mode: Rec. 709/Partial
10:12:21.182: NV12 texture support enabled
10:12:21.182: P010 texture support not available
10:12:21.186: Audio monitoring device:
10:12:21.186: name: Default
10:12:21.186: id: default
10:12:21.186: ---------------------------------
10:12:21.197: Failed to load 'en-US' text for module: 'decklink-captions.so'
10:12:21.207: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
10:12:21.218: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
10:12:21.218: Failed to initialize module 'decklink.so'
10:12:21.403: [pipewire] No capture sources available
10:12:21.488: VAAPI: Failed to initialize display in vaapi_device_h264_supported
10:12:21.488: FFmpeg VAAPI H264 encoding not supported
10:12:21.488: VAAPI: Failed to initialize display in vaapi_device_av1_supported
10:12:21.488: FFmpeg VAAPI AV1 encoding not supported
10:12:21.489: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
10:12:21.489: FFmpeg VAAPI HEVC encoding not supported
10:12:21.581: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
10:12:21.755: ---------------------------------
10:12:21.755: Loaded Modules:
10:12:21.755: wlrobs.so
10:12:21.755: text-freetype2.so
10:12:21.755: rtmp-services.so
10:12:21.755: obs-x264.so
10:12:21.755: obs-webrtc.so
10:12:21.755: obs-vst.so
10:12:21.755: obs-vaapi.so
10:12:21.755: obs-transitions.so
10:12:21.755: obs-qsv11.so
10:12:21.755: obs-outputs.so
10:12:21.755: obs-libfdk.so
10:12:21.755: obs-filters.so
10:12:21.755: obs-ffmpeg.so
10:12:21.755: linux-v4l2.so
10:12:21.755: linux-pulseaudio.so
10:12:21.755: linux-pipewire.so
10:12:21.755: linux-jack.so
10:12:21.755: linux-capture.so
10:12:21.755: linux-alsa.so
10:12:21.755: image-source.so
10:12:21.755: frontend-tools.so
10:12:21.755: decklink-output-ui.so
10:12:21.755: decklink-captions.so
10:12:21.755: ---------------------------------
10:12:21.756: ---------------------------------
10:12:21.756: Available Encoders:
10:12:21.756: Video Encoders:
10:12:21.756: - ffmpeg_svt_av1 (SVT-AV1)
10:12:21.756: - ffmpeg_aom_av1 (AOM AV1)
10:12:21.756: - obs_x264 (x264)
10:12:21.756: Audio Encoders:
10:12:21.756: - ffmpeg_aac (FFmpeg AAC)
10:12:21.756: - ffmpeg_opus (FFmpeg Opus)
10:12:21.756: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
10:12:21.756: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
10:12:21.756: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
10:12:21.756: - ffmpeg_alac (FFmpeg ALAC (24-bit))
10:12:21.756: - ffmpeg_flac (FFmpeg FLAC (16-bit))
10:12:21.756: - libfdk_aac (libfdk AAC)
10:12:21.756: ==== Startup complete ===============================================
10:12:21.758: Encoder ID 'ffmpeg_vaapi_tex' not found
10:12:21.788: All scene data cleared
10:12:21.788: ------------------------------------------------
10:12:21.795: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:12:21.795: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
10:12:21.795: pulse-input: Started recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor' (default)
10:12:21.795: [Loaded global audio device]: 'Desktop Audio'
10:12:21.796: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:12:21.796: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
10:12:21.796: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
10:12:21.796: [Loaded global audio device]: 'Mic/Aux'
10:12:21.797: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:12:21.798: pulse-input: An error occurred while getting the source info!
10:12:21.798: [Loaded global audio device]: 'HDMI Capture'
10:12:21.798: v4l2-input: Start capture from /dev/video0
10:12:21.798: v4l2-input: Unable to open device
10:12:21.798: v4l2-input: Initialization failed, errno: No such file or directory
10:12:21.799: xshm-input: Geometry 3840x2160 @ 0,0
10:12:21.807: v4l2-input: Start capture from /dev/video0
10:12:21.807: v4l2-input: Unable to open device
10:12:21.807: v4l2-input: Initialization failed, errno: No such file or directory
10:12:21.932: v4l2-input: Start capture from /dev/video0
10:12:21.932: v4l2-input: Unable to open device
10:12:21.932: v4l2-input: Initialization failed, errno: No such file or directory
10:12:21.932: v4l2-input: Start capture from /dev/video4
10:12:21.932: v4l2-input: Unable to open device
10:12:21.932: v4l2-input: Initialization failed, errno: No such file or directory
10:12:21.933: xshm-input: Geometry 3840x2160 @ 0,0
10:12:21.937: Source ID 'pipewire-desktop-capture-source' not found
10:12:21.938: Failed to create source 'Screen Capture (PipeWire)'!
10:12:21.941: Switched to scene 'screen'
10:12:21.941: ------------------------------------------------
10:12:21.941: Loaded scenes:
10:12:21.941: - scene 'Screen with camera':
10:12:21.942: - source: 'Screen Capture' (xshm_input)
10:12:21.942: - source: 'Camera Capture' (v4l2_input)
10:12:21.942: - source: 'border' (image_source)
10:12:21.942: - scene 'game with camera':
10:12:21.942: - source: 'Camera Capture' (v4l2_input)
10:12:21.942: - source: 'border' (image_source)
10:12:21.942: - source: 'capture acrd' (v4l2_input)
10:12:21.942: - scene 'game':
10:12:21.942: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:12:21.942: - scene 'game 4:3':
10:12:21.942: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:12:21.942: - scene 'screen':
10:12:21.942: - source: 'Screen Capture (XSHM)' (xshm_input)
10:12:21.942: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
10:12:21.942: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
10:12:21.942: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
10:12:21.942: - scene 'camera':
10:12:21.942: - source: 'Camera Capture' (v4l2_input)
10:12:21.942: - scene 'Camera with scope':
10:12:21.942: - source: 'Camera Capture' (v4l2_input)
10:12:21.942: - source: 'border' (image_source)
10:12:21.942: - source: 'scope caputre' (v4l2_input)
10:12:21.942: - scene 'game with screen':
10:12:21.942: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:12:21.942: ------------------------------------------------
10:12:22.364: adding 42 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Desktop Audio)
10:12:22.364:
10:12:23.893: Virtual camera started
10:12:23.939: ==== Virtual Camera Start ==========================================
10:12:23.939: Starting Virtual Camera output to Program
10:12:23.962: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
10:12:53.827: Get on org.freedesktop.portal.Settings returned an invalid reply
10:12:53.827: Get on org.freedesktop.portal.Settings returned an invalid reply
10:12:53.902: OpenType support missing for "Open Sans", script 11
10:12:53.909: OpenType support missing for "Open Sans", script 12
10:12:53.913: OpenType support missing for "Open Sans", script 16
10:12:53.916: OpenType support missing for "Open Sans", script 20
10:13:08.681: Output 'virtualcam_output': stopping
10:13:08.681: Output 'virtualcam_output': Total frames output: 2685
10:13:08.681: Output 'virtualcam_output': Total drawn frames: 2683 (2684 attempted)
10:13:08.681: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 1 (0.0%)
10:13:08.682: ==== Virtual Camera Stop ===========================================
10:13:08.683: Virtual camera stopped
10:13:19.257: Get on org.freedesktop.portal.Settings returned an invalid reply
10:13:19.257: Get on org.freedesktop.portal.Settings returned an invalid reply
10:14:50.698: ==== Shutting down ==================================================
10:14:50.728: pulse-input: Stopped recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor'
10:14:50.728: pulse-input: Got 5956 packets with 7147200 frames
10:14:50.728: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
10:14:50.728: pulse-input: Got 5955 packets with 7146000 frames
10:14:50.747: All scene data cleared
10:14:50.747: ------------------------------------------------
10:14:50.812: [Scripting] Total detached callbacks: 0
10:14:50.812: Freeing OBS context data
10:14:50.850: == Profiler Results =============================
10:14:50.850: run_program_init: 3240.43 ms
10:14:50.850: ┣OBSApp::AppInit: 12.068 ms
10:14:50.850: ┃ ┗OBSApp::InitLocale: 2.376 ms
10:14:50.850: ┗OBSApp::OBSInit: 1145.08 ms
10:14:50.850: ┣obs_startup: 2.227 ms
10:14:50.850: ┗OBSBasic::OBSInit: 1108.85 ms
10:14:50.850: ┣OBSBasic::InitBasicConfig: 0.179 ms
10:14:50.850: ┣OBSBasic::ResetAudio: 0.492 ms
10:14:50.850: ┣OBSBasic::ResetVideo: 229.923 ms
10:14:50.850: ┃ ┗obs_init_graphics: 225.196 ms
10:14:50.850: ┃ ┗shader compilation: 118.254 ms
10:14:50.850: ┣OBSBasic::InitOBSCallbacks: 0.015 ms
10:14:50.850: ┣OBSBasic::InitHotkeys: 0.035 ms
10:14:50.850: ┣obs_load_all_modules2: 568.972 ms
10:14:50.851: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
10:14:50.851: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
10:14:50.851: ┃ ┣obs_init_module(decklink.so): 0.136 ms
10:14:50.851: ┃ ┣obs_init_module(frontend-tools.so): 77.093 ms
10:14:50.851: ┃ ┣obs_init_module(image-source.so): 0.013 ms
10:14:50.851: ┃ ┣obs_init_module(linux-alsa.so): 0.001 ms
10:14:50.851: ┃ ┣obs_init_module(linux-capture.so): 0.496 ms
10:14:50.851: ┃ ┣obs_init_module(linux-jack.so): 0.004 ms
10:14:50.851: ┃ ┣obs_init_module(linux-pipewire.so): 14.884 ms
10:14:50.851: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.003 ms
10:14:50.851: ┃ ┣obs_init_module(linux-v4l2.so): 0.094 ms
10:14:50.851: ┃ ┣obs_init_module(obs-ffmpeg.so): 3.551 ms
10:14:50.851: ┃ ┃ ┗nvenc_check: 1.378 ms
10:14:50.851: ┃ ┣obs_init_module(obs-filters.so): 0.031 ms
10:14:50.851: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
10:14:50.851: ┃ ┣obs_init_module(obs-outputs.so): 0.004 ms
10:14:50.851: ┃ ┣obs_init_module(obs-qsv11.so): 2.29 ms
10:14:50.851: ┃ ┣obs_init_module(obs-transitions.so): 0.009 ms
10:14:50.851: ┃ ┣obs_init_module(obs-vaapi.so): 81.817 ms
10:14:50.851: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
10:14:50.851: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
10:14:50.851: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
10:14:50.851: ┃ ┣obs_init_module(rtmp-services.so): 0.754 ms
10:14:50.851: ┃ ┣obs_init_module(text-freetype2.so): 0.032 ms
10:14:50.851: ┃ ┗obs_init_module(wlrobs.so): 0.009 ms
10:14:50.851: ┣OBSBasic::InitService: 2.001 ms
10:14:50.851: ┣OBSBasic::ResetOutputs: 0.259 ms
10:14:50.851: ┣OBSBasic::CreateHotkeys: 0.032 ms
10:14:50.851: ┣OBSBasic::InitPrimitives: 0.146 ms
10:14:50.851: ┗OBSBasic::Load: 185.835 ms
10:14:50.851: obs_hotkey_thread(25 ms): min=0.054 ms, median=0.297 ms, max=70.865 ms, 99th percentile=15.432 ms, 99.8479% below 25 ms
10:14:50.851: audio_thread(Audio): min=0.005 ms, median=0.066 ms, max=8.237 ms, 99th percentile=0.552 ms
10:14:50.851: obs_graphics_thread(16.6667 ms): min=0.067 ms, median=11.763 ms, max=271.014 ms, 99th percentile=22.962 ms, 86.3432% below 16.667 ms
10:14:50.851: ┣tick_sources: min=0 ms, median=10.764 ms, max=242.955 ms, 99th percentile=20.813 ms
10:14:50.851: ┣output_frame: min=0.058 ms, median=0.346 ms, max=23.824 ms, 99th percentile=1.226 ms
10:14:50.851: ┃ ┣gs_context(video->graphics): min=0.058 ms, median=0.32 ms, max=23.82 ms, 99th percentile=0.598 ms
10:14:50.851: ┃ ┃ ┣render_video: min=0.007 ms, median=0.163 ms, max=7.096 ms, 99th percentile=0.377 ms
10:14:50.851: ┃ ┃ ┃ ┣render_main_texture: min=0.003 ms, median=0.132 ms, max=7.089 ms, 99th percentile=0.365 ms
10:14:50.851: ┃ ┃ ┃ ┣render_convert_texture: min=0.021 ms, median=0.039 ms, max=6.272 ms, 99th percentile=0.066 ms, 0.302409 calls per parent call
10:14:50.851: ┃ ┃ ┃ ┗stage_output_texture: min=0.009 ms, median=0.018 ms, max=0.165 ms, 99th percentile=0.033 ms, 0.302409 calls per parent call
10:14:50.851: ┃ ┃ ┣gs_flush: min=0.001 ms, median=0.004 ms, max=0.051 ms, 99th percentile=0.01 ms
10:14:50.851: ┃ ┃ ┗download_frame: min=0 ms, median=0.063 ms, max=0.211 ms, 99th percentile=0.1 ms, 0.302409 calls per parent call
10:14:50.851: ┃ ┗output_video_data: min=0.323 ms, median=0.57 ms, max=6.552 ms, 99th percentile=0.952 ms, 0.302297 calls per parent call
10:14:50.851: ┗render_displays: min=0.002 ms, median=0.279 ms, max=17.527 ms, 99th percentile=1.639 ms
10:14:50.851: video_thread(video): min=1.959 ms, median=3.19 ms, max=7.437 ms, 99th percentile=4.424 ms
10:14:50.851: OBSBasicSettings::LoadThemeList: min=0.032 ms, median=0 ms, max=0.037 ms, 99th percentile=0.037 ms
10:14:50.851: =================================================
10:14:50.851: == Profiler Time Between Calls ==================
10:14:50.851: obs_hotkey_thread(25 ms): min=25.098 ms, median=25.374 ms, max=95.938 ms, 52.0068% within ±2% of 25 ms (0% lower, 47.9932% higher)
10:14:50.851: obs_graphics_thread(16.6667 ms): min=9.145 ms, median=16.667 ms, max=271.019 ms, 73.2125% within ±2% of 16.667 ms (14.1426% lower, 12.645% higher)
10:14:50.851: =================================================
10:14:50.873: Number of memory leaks: 0

View file

@ -1,288 +0,0 @@
10:14:51.825: Using EGL/X11
10:14:51.825: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
10:14:51.825: CPU Speed: 2215.535MHz
10:14:51.826: Physical Cores: 8, Logical Cores: 16
10:14:51.826: Physical Memory: 31998MB Total, 26606MB Free
10:14:51.826: Kernel Version: Linux 6.10.7-zen1-1-zen
10:14:51.826: Distribution: "Arch Linux" Unknown
10:14:51.826: Session Type: tty
10:14:51.826: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
10:14:51.826: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
10:14:51.826: Portable mode: false
10:14:51.856: OBS 30.2.1-1 (linux)
10:14:51.856: ---------------------------------
10:14:51.856: ---------------------------------
10:14:51.856: audio settings reset:
10:14:51.856: samples per sec: 48000
10:14:51.856: speakers: 2
10:14:51.856: max buffering: 960 milliseconds
10:14:51.856: buffering type: dynamically increasing
10:14:51.861: ---------------------------------
10:14:51.861: Initializing OpenGL...
10:14:51.941: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XT (radeonsi, navi31, LLVM 18.1.8, DRM 3.57, 6.10.7-zen1-1-zen)
10:14:51.941: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.2.1-arch1.1, shading language 4.60
10:14:51.974: ---------------------------------
10:14:51.974: video settings reset:
10:14:51.974: base resolution: 1920x1080
10:14:51.974: output resolution: 1920x1080
10:14:51.974: downscale filter: Bicubic
10:14:51.974: fps: 60/1
10:14:51.974: format: NV12
10:14:51.974: YUV mode: Rec. 709/Partial
10:14:51.975: NV12 texture support enabled
10:14:51.975: P010 texture support not available
10:14:51.979: Audio monitoring device:
10:14:51.979: name: Default
10:14:51.979: id: default
10:14:51.979: ---------------------------------
10:14:51.988: Failed to load 'en-US' text for module: 'decklink-captions.so'
10:14:51.997: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
10:14:52.006: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
10:14:52.006: Failed to initialize module 'decklink.so'
10:14:52.167: [pipewire] No capture sources available
10:14:52.270: VAAPI: API version 1.22
10:14:52.271: FFmpeg VAAPI H264 encoding supported
10:14:52.278: FFmpeg VAAPI AV1 encoding supported
10:14:52.285: FFmpeg VAAPI HEVC encoding supported
10:14:52.375: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
10:14:52.509: [obs-vaapi] found vah264enc
10:14:52.509: [obs-vaapi] found vaav1enc
10:14:52.509: [obs-vaapi] found vah265enc
10:14:52.509: [obs-vaapi] found vaapih265enc
10:14:52.509: [obs-vaapi] found vaapih264enc
10:14:52.610: ---------------------------------
10:14:52.610: Loaded Modules:
10:14:52.610: wlrobs.so
10:14:52.610: text-freetype2.so
10:14:52.610: rtmp-services.so
10:14:52.610: obs-x264.so
10:14:52.610: obs-webrtc.so
10:14:52.610: obs-vst.so
10:14:52.610: obs-vaapi.so
10:14:52.610: obs-transitions.so
10:14:52.610: obs-qsv11.so
10:14:52.610: obs-outputs.so
10:14:52.610: obs-libfdk.so
10:14:52.610: obs-filters.so
10:14:52.610: obs-ffmpeg.so
10:14:52.610: linux-v4l2.so
10:14:52.610: linux-pulseaudio.so
10:14:52.610: linux-pipewire.so
10:14:52.610: linux-jack.so
10:14:52.610: linux-capture.so
10:14:52.610: linux-alsa.so
10:14:52.610: image-source.so
10:14:52.610: frontend-tools.so
10:14:52.610: decklink-output-ui.so
10:14:52.610: decklink-captions.so
10:14:52.610: ---------------------------------
10:14:52.611: ---------------------------------
10:14:52.611: Available Encoders:
10:14:52.611: Video Encoders:
10:14:52.611: - ffmpeg_svt_av1 (SVT-AV1)
10:14:52.611: - ffmpeg_aom_av1 (AOM AV1)
10:14:52.611: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
10:14:52.611: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
10:14:52.611: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
10:14:52.621: - obs-va-vah264enc (VAAPI H.264 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
10:14:52.629: - obs-va-vaav1enc (VAAPI AV1 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
10:14:52.637: - obs-va-vah265enc (VAAPI H.265 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
10:14:52.637: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
10:14:52.637: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
10:14:52.637: - obs_x264 (x264)
10:14:52.637: Audio Encoders:
10:14:52.637: - ffmpeg_aac (FFmpeg AAC)
10:14:52.637: - ffmpeg_opus (FFmpeg Opus)
10:14:52.637: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
10:14:52.637: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
10:14:52.637: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
10:14:52.637: - ffmpeg_alac (FFmpeg ALAC (24-bit))
10:14:52.637: - ffmpeg_flac (FFmpeg FLAC (16-bit))
10:14:52.637: - libfdk_aac (libfdk AAC)
10:14:52.637: ==== Startup complete ===============================================
10:14:52.667: All scene data cleared
10:14:52.667: ------------------------------------------------
10:14:52.671: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:14:52.671: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
10:14:52.671: pulse-input: Started recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor' (default)
10:14:52.671: [Loaded global audio device]: 'Desktop Audio'
10:14:52.672: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:14:52.672: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
10:14:52.672: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
10:14:52.672: [Loaded global audio device]: 'Mic/Aux'
10:14:52.672: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
10:14:52.673: pulse-input: An error occurred while getting the source info!
10:14:52.673: [Loaded global audio device]: 'HDMI Capture'
10:14:52.673: v4l2-input: Start capture from /dev/video0
10:14:52.673: v4l2-input: Unable to open device
10:14:52.673: v4l2-input: Initialization failed, errno: No such file or directory
10:14:52.673: xshm-input: Geometry 3840x2160 @ 0,0
10:14:52.681: v4l2-input: Start capture from /dev/video0
10:14:52.681: v4l2-input: Unable to open device
10:14:52.681: v4l2-input: Initialization failed, errno: No such file or directory
10:14:52.793: v4l2-input: Start capture from /dev/video0
10:14:52.793: v4l2-input: Unable to open device
10:14:52.793: v4l2-input: Initialization failed, errno: No such file or directory
10:14:52.794: v4l2-input: Start capture from /dev/video4
10:14:52.794: v4l2-input: Unable to open device
10:14:52.794: v4l2-input: Initialization failed, errno: No such file or directory
10:14:52.794: xshm-input: Geometry 3840x2160 @ 0,0
10:14:52.798: Source ID 'pipewire-desktop-capture-source' not found
10:14:52.798: Failed to create source 'Screen Capture (PipeWire)'!
10:14:52.800: Switched to scene 'screen'
10:14:52.800: ------------------------------------------------
10:14:52.800: Loaded scenes:
10:14:52.800: - scene 'Screen with camera':
10:14:52.800: - source: 'Screen Capture' (xshm_input)
10:14:52.800: - source: 'Camera Capture' (v4l2_input)
10:14:52.800: - source: 'border' (image_source)
10:14:52.800: - scene 'game with camera':
10:14:52.800: - source: 'Camera Capture' (v4l2_input)
10:14:52.800: - source: 'border' (image_source)
10:14:52.800: - source: 'capture acrd' (v4l2_input)
10:14:52.800: - scene 'game':
10:14:52.800: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:14:52.800: - scene 'game 4:3':
10:14:52.800: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:14:52.800: - scene 'screen':
10:14:52.800: - source: 'Screen Capture (XSHM)' (xshm_input)
10:14:52.800: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
10:14:52.800: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
10:14:52.800: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
10:14:52.800: - scene 'camera':
10:14:52.800: - source: 'Camera Capture' (v4l2_input)
10:14:52.800: - scene 'Camera with scope':
10:14:52.800: - source: 'Camera Capture' (v4l2_input)
10:14:52.800: - source: 'border' (image_source)
10:14:52.800: - source: 'scope caputre' (v4l2_input)
10:14:52.800: - scene 'game with screen':
10:14:52.800: - source: 'Video Capture Device (V4L2)' (v4l2_input)
10:14:52.800: ------------------------------------------------
10:14:53.222: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
10:14:53.222:
10:14:55.443: Get on org.freedesktop.portal.Settings returned an invalid reply
10:14:55.443: Get on org.freedesktop.portal.Settings returned an invalid reply
10:14:55.544: OpenType support missing for "Open Sans", script 11
10:14:55.551: OpenType support missing for "Open Sans", script 12
10:14:55.554: OpenType support missing for "Open Sans", script 16
10:14:55.557: OpenType support missing for "Open Sans", script 20
10:22:09.248: User switched to scene 'game with screen'
10:22:10.069: User switched to scene 'game 4:3'
10:22:10.546: User switched to scene 'game'
10:22:11.073: User switched to scene 'game with camera'
10:22:29.527: User switched to scene 'camera'
10:22:30.071: User switched to scene 'screen'
10:22:30.833: User switched to scene 'game with camera'
10:23:37.321: User switched to scene 'game'
10:23:37.729: User switched to scene 'game 4:3'
10:23:38.195: User switched to scene 'screen'
10:33:31.110: adding 64 milliseconds of audio buffering, total audio buffering is now 85 milliseconds (source: Desktop Audio)
10:33:31.110:
21:11:42.193: Virtual camera started
21:11:42.239: ==== Virtual Camera Start ==========================================
21:11:42.239: Starting Virtual Camera output to Program
21:11:42.245: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
21:14:18.704: Output 'virtualcam_output': stopping
21:14:18.704: Output 'virtualcam_output': Total frames output: 9389
21:14:18.704: Output 'virtualcam_output': Total drawn frames: 9316 (9388 attempted)
21:14:18.704: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 72 (0.8%)
21:14:18.704: ==== Virtual Camera Stop ===========================================
21:14:18.705: Virtual camera stopped
00:46:54.903: Virtual camera started
00:46:54.904: ==== Virtual Camera Start ==========================================
00:46:54.904: Starting Virtual Camera output to Program
00:46:54.908: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
00:58:25.144: Output 'virtualcam_output': stopping
00:58:25.144: Output 'virtualcam_output': Total frames output: 41413
00:58:25.144: Output 'virtualcam_output': Total drawn frames: 41405 (41415 attempted)
00:58:25.144: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 10 (0.0%)
00:58:25.145: ==== Virtual Camera Stop ===========================================
00:58:25.146: Virtual camera stopped
01:09:08.984: Virtual camera started
01:09:08.986: ==== Virtual Camera Start ==========================================
01:09:08.986: Starting Virtual Camera output to Program
01:09:09.002: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
01:09:21.297: Get on org.freedesktop.portal.Settings returned an invalid reply
01:09:21.297: Get on org.freedesktop.portal.Settings returned an invalid reply
04:56:52.787: ==== Shutting down ==================================================
04:56:52.787: Output 'virtualcam_output': stopping
04:56:52.787: Output 'virtualcam_output': Total frames output: 819827
04:56:52.787: Output 'virtualcam_output': Total drawn frames: 819225 (819828 attempted)
04:56:52.787: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 603 (0.1%)
04:56:52.788: ==== Virtual Camera Stop ===========================================
04:56:52.789: Virtual camera stopped
04:56:52.812: pulse-input: Stopped recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor'
04:56:52.813: pulse-input: Got 2692800 packets with 3231360000 frames
04:56:52.813: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
04:56:52.813: pulse-input: Got 1754463 packets with 2105355600 frames
04:56:52.840: All scene data cleared
04:56:52.840: ------------------------------------------------
04:56:52.909: [Scripting] Total detached callbacks: 0
04:56:52.909: Freeing OBS context data
04:56:52.937: == Profiler Results =============================
04:56:52.937: run_program_init: 1151.15 ms
04:56:52.937: ┣OBSApp::AppInit: 9.607 ms
04:56:52.937: ┃ ┗OBSApp::InitLocale: 0.87 ms
04:56:52.937: ┗OBSApp::OBSInit: 1101.75 ms
04:56:52.937: ┣obs_startup: 1.191 ms
04:56:52.938: ┗OBSBasic::OBSInit: 1071.17 ms
04:56:52.938: ┣OBSBasic::InitBasicConfig: 0.105 ms
04:56:52.938: ┣OBSBasic::ResetAudio: 0.273 ms
04:56:52.938: ┣OBSBasic::ResetVideo: 122.343 ms
04:56:52.938: ┃ ┗obs_init_graphics: 117.7 ms
04:56:52.938: ┃ ┗shader compilation: 32.73 ms
04:56:52.938: ┣OBSBasic::InitOBSCallbacks: 0.006 ms
04:56:52.938: ┣OBSBasic::InitHotkeys: 0.025 ms
04:56:52.938: ┣obs_load_all_modules2: 631.179 ms
04:56:52.938: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
04:56:52.938: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
04:56:52.938: ┃ ┣obs_init_module(decklink.so): 0.12 ms
04:56:52.938: ┃ ┣obs_init_module(frontend-tools.so): 66.759 ms
04:56:52.938: ┃ ┣obs_init_module(image-source.so): 0.009 ms
04:56:52.938: ┃ ┣obs_init_module(linux-alsa.so): 0.003 ms
04:56:52.938: ┃ ┣obs_init_module(linux-capture.so): 0.405 ms
04:56:52.938: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
04:56:52.938: ┃ ┣obs_init_module(linux-pipewire.so): 14.945 ms
04:56:52.938: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.003 ms
04:56:52.938: ┃ ┣obs_init_module(linux-v4l2.so): 0.089 ms
04:56:52.938: ┃ ┣obs_init_module(obs-ffmpeg.so): 41.123 ms
04:56:52.938: ┃ ┃ ┗nvenc_check: 1.345 ms
04:56:52.938: ┃ ┣obs_init_module(obs-filters.so): 0.027 ms
04:56:52.938: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
04:56:52.938: ┃ ┣obs_init_module(obs-outputs.so): 0.008 ms
04:56:52.938: ┃ ┣obs_init_module(obs-qsv11.so): 15.14 ms
04:56:52.938: ┃ ┣obs_init_module(obs-transitions.so): 0.007 ms
04:56:52.938: ┃ ┣obs_init_module(obs-vaapi.so): 133.751 ms
04:56:52.938: ┃ ┣obs_init_module(obs-vst.so): 0.006 ms
04:56:52.938: ┃ ┣obs_init_module(obs-webrtc.so): 0.007 ms
04:56:52.938: ┃ ┣obs_init_module(obs-x264.so): 0.004 ms
04:56:52.938: ┃ ┣obs_init_module(rtmp-services.so): 0.933 ms
04:56:52.938: ┃ ┣obs_init_module(text-freetype2.so): 0.02 ms
04:56:52.938: ┃ ┗obs_init_module(wlrobs.so): 0.008 ms
04:56:52.938: ┣OBSBasic::InitService: 1.352 ms
04:56:52.938: ┣OBSBasic::ResetOutputs: 9.146 ms
04:56:52.938: ┣OBSBasic::CreateHotkeys: 0.023 ms
04:56:52.938: ┣OBSBasic::InitPrimitives: 0.098 ms
04:56:52.938: ┗OBSBasic::Load: 156.792 ms
04:56:52.938: obs_hotkey_thread(25 ms): min=0.05 ms, median=0.127 ms, max=258.166 ms, 99th percentile=9.151 ms, 99.9972% below 25 ms
04:56:52.938: audio_thread(Audio): min=0.004 ms, median=0.042 ms, max=18.098 ms, 99th percentile=0.317 ms
04:56:52.938: obs_graphics_thread(16.6667 ms): min=0.067 ms, median=7.883 ms, max=259.734 ms, 99th percentile=16.112 ms, 99.3524% below 16.667 ms
04:56:52.938: ┣tick_sources: min=0 ms, median=7.628 ms, max=259.481 ms, 99th percentile=14.965 ms
04:56:52.938: ┣output_frame: min=0.059 ms, median=0.247 ms, max=22.746 ms, 99th percentile=1.252 ms
04:56:52.938: ┃ ┣gs_context(video->graphics): min=0.059 ms, median=0.246 ms, max=22.743 ms, 99th percentile=0.477 ms
04:56:52.938: ┃ ┃ ┣render_video: min=0.005 ms, median=0.121 ms, max=5.516 ms, 99th percentile=0.267 ms
04:56:52.938: ┃ ┃ ┃ ┣render_main_texture: min=0.002 ms, median=0.114 ms, max=5.511 ms, 99th percentile=0.207 ms
04:56:52.939: ┃ ┃ ┃ ┣render_convert_texture: min=0.019 ms, median=0.039 ms, max=0.621 ms, 99th percentile=0.067 ms, 0.21545 calls per parent call
04:56:52.939: ┃ ┃ ┃ ┗stage_output_texture: min=0.008 ms, median=0.018 ms, max=0.429 ms, 99th percentile=0.032 ms, 0.21545 calls per parent call
04:56:52.939: ┃ ┃ ┣gs_flush: min=0.001 ms, median=0.003 ms, max=2.906 ms, 99th percentile=0.008 ms
04:56:52.939: ┃ ┃ ┗download_frame: min=0 ms, median=0.063 ms, max=0.66 ms, 99th percentile=0.102 ms, 0.21545 calls per parent call
04:56:52.939: ┃ ┗output_video_data: min=0.287 ms, median=0.598 ms, max=11.82 ms, 99th percentile=1.066 ms, 0.21545 calls per parent call
04:56:52.939: ┗render_displays: min=0.001 ms, median=0.005 ms, max=165.66 ms, 99th percentile=0.717 ms
04:56:52.939: OBSBasicSettings::LoadThemeList: 0.031 ms
04:56:52.939: video_thread(video): min=0.001 ms, median=3.291 ms, max=95.287 ms, 99th percentile=5.255 ms
04:56:52.939: =================================================
04:56:52.939: == Profiler Time Between Calls ==================
04:56:52.939: obs_hotkey_thread(25 ms): min=25.075 ms, median=25.198 ms, max=283.233 ms, 75.7846% within ±2% of 25 ms (0% lower, 24.2154% higher)
04:56:52.939: obs_graphics_thread(16.6667 ms): min=5.397 ms, median=16.667 ms, max=259.756 ms, 98.9342% within ±2% of 16.667 ms (0.561714% lower, 0.504109% higher)
04:56:52.939: =================================================
04:56:53.025: Number of memory leaks: 0

View file

@ -1,323 +0,0 @@
14:36:50.157: Using EGL/X11
14:36:50.157: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
14:36:50.157: CPU Speed: 3679.312MHz
14:36:50.158: Physical Cores: 8, Logical Cores: 16
14:36:50.158: Physical Memory: 31998MB Total, 10374MB Free
14:36:50.158: Kernel Version: Linux 6.10.7-zen1-1-zen
14:36:50.158: Distribution: "Arch Linux" Unknown
14:36:50.158: Session Type: tty
14:36:50.158: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
14:36:50.159: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
14:36:50.159: Portable mode: false
14:36:50.189: OBS 30.2.1-1 (linux)
14:36:50.189: ---------------------------------
14:36:50.189: ---------------------------------
14:36:50.189: audio settings reset:
14:36:50.189: samples per sec: 48000
14:36:50.189: speakers: 2
14:36:50.189: max buffering: 960 milliseconds
14:36:50.189: buffering type: dynamically increasing
14:36:50.194: ---------------------------------
14:36:50.194: Initializing OpenGL...
14:36:50.287: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XT (radeonsi, navi31, LLVM 18.1.8, DRM 3.57, 6.10.7-zen1-1-zen)
14:36:50.287: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.2.1-arch1.1, shading language 4.60
14:36:50.323: ---------------------------------
14:36:50.323: video settings reset:
14:36:50.323: base resolution: 1920x1080
14:36:50.323: output resolution: 1920x1080
14:36:50.323: downscale filter: Bicubic
14:36:50.323: fps: 60/1
14:36:50.323: format: NV12
14:36:50.323: YUV mode: Rec. 709/Partial
14:36:50.324: NV12 texture support enabled
14:36:50.324: P010 texture support not available
14:36:50.332: Audio monitoring device:
14:36:50.332: name: Default
14:36:50.332: id: default
14:36:50.332: ---------------------------------
14:36:50.341: Failed to load 'en-US' text for module: 'decklink-captions.so'
14:36:50.350: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
14:36:50.359: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
14:36:50.359: Failed to initialize module 'decklink.so'
14:36:50.387: [Python] Python failure in obs_scripting_load_python:1766:
14:36:50.387: [Python] Error importing obspython.py', unloading obs-python
14:36:50.387: [Python] Failed to load python plugin
14:36:50.471: [pipewire] No capture sources available
14:36:50.584: VAAPI: API version 1.22
14:36:50.585: FFmpeg VAAPI H264 encoding supported
14:36:50.593: FFmpeg VAAPI AV1 encoding supported
14:36:50.602: FFmpeg VAAPI HEVC encoding supported
14:36:50.699: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
14:36:50.773: [obs-vaapi] found vah264enc
14:36:50.773: [obs-vaapi] found vaav1enc
14:36:50.773: [obs-vaapi] found vah265enc
14:36:50.773: [obs-vaapi] found vaapih265enc
14:36:50.773: [obs-vaapi] found vaapih264enc
14:36:50.864: ---------------------------------
14:36:50.864: Loaded Modules:
14:36:50.864: wlrobs.so
14:36:50.864: text-freetype2.so
14:36:50.864: rtmp-services.so
14:36:50.864: obs-x264.so
14:36:50.864: obs-webrtc.so
14:36:50.864: obs-vst.so
14:36:50.864: obs-vaapi.so
14:36:50.864: obs-transitions.so
14:36:50.864: obs-qsv11.so
14:36:50.864: obs-outputs.so
14:36:50.864: obs-libfdk.so
14:36:50.864: obs-filters.so
14:36:50.864: obs-ffmpeg.so
14:36:50.864: linux-v4l2.so
14:36:50.864: linux-pulseaudio.so
14:36:50.864: linux-pipewire.so
14:36:50.864: linux-jack.so
14:36:50.864: linux-capture.so
14:36:50.864: linux-alsa.so
14:36:50.864: image-source.so
14:36:50.864: frontend-tools.so
14:36:50.864: decklink-output-ui.so
14:36:50.864: decklink-captions.so
14:36:50.864: ---------------------------------
14:36:50.864: ---------------------------------
14:36:50.864: Available Encoders:
14:36:50.864: Video Encoders:
14:36:50.864: - ffmpeg_svt_av1 (SVT-AV1)
14:36:50.864: - ffmpeg_aom_av1 (AOM AV1)
14:36:50.865: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
14:36:50.865: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
14:36:50.865: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
14:36:50.870: - obs-va-vah264enc (VAAPI H.264 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
14:36:50.875: - obs-va-vaav1enc (VAAPI AV1 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
14:36:50.880: - obs-va-vah265enc (VAAPI H.265 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
14:36:50.880: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
14:36:50.880: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
14:36:50.880: - obs_x264 (x264)
14:36:50.880: Audio Encoders:
14:36:50.880: - ffmpeg_aac (FFmpeg AAC)
14:36:50.880: - ffmpeg_opus (FFmpeg Opus)
14:36:50.880: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
14:36:50.880: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
14:36:50.880: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
14:36:50.880: - ffmpeg_alac (FFmpeg ALAC (24-bit))
14:36:50.880: - ffmpeg_flac (FFmpeg FLAC (16-bit))
14:36:50.880: - libfdk_aac (libfdk AAC)
14:36:50.880: ==== Startup complete ===============================================
14:36:50.936: All scene data cleared
14:36:50.936: ------------------------------------------------
14:36:50.941: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
14:36:50.941: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
14:36:50.941: pulse-input: Started recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor' (default)
14:36:50.941: [Loaded global audio device]: 'Desktop Audio'
14:36:50.942: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
14:36:50.942: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
14:36:50.942: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
14:36:50.942: [Loaded global audio device]: 'Mic/Aux'
14:36:50.942: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
14:36:50.943: pulse-input: An error occurred while getting the source info!
14:36:50.943: [Loaded global audio device]: 'HDMI Capture'
14:36:50.943: v4l2-input: Start capture from /dev/video0
14:36:50.943: v4l2-input: Unable to open device
14:36:50.943: v4l2-input: Initialization failed, errno: No such file or directory
14:36:50.943: xshm-input: Geometry 3840x2160 @ 0,0
14:36:50.953: v4l2-input: Start capture from /dev/video0
14:36:50.953: v4l2-input: Unable to open device
14:36:50.953: v4l2-input: Initialization failed, errno: No such file or directory
14:36:51.149: v4l2-input: Start capture from /dev/video0
14:36:51.149: v4l2-input: Unable to open device
14:36:51.149: v4l2-input: Initialization failed, errno: No such file or directory
14:36:51.149: v4l2-input: Start capture from /dev/video4
14:36:51.149: v4l2-input: Unable to open device
14:36:51.149: v4l2-input: Initialization failed, errno: No such file or directory
14:36:51.150: xshm-input: Geometry 3840x2160 @ 0,0
14:36:51.155: Source ID 'pipewire-desktop-capture-source' not found
14:36:51.156: Failed to create source 'Screen Capture (PipeWire)'!
14:36:51.157: Switched to scene 'screen'
14:36:51.158: ------------------------------------------------
14:36:51.158: Loaded scenes:
14:36:51.158: - scene 'Screen with camera':
14:36:51.158: - source: 'Screen Capture' (xshm_input)
14:36:51.158: - source: 'Camera Capture' (v4l2_input)
14:36:51.158: - source: 'border' (image_source)
14:36:51.158: - scene 'game with camera':
14:36:51.158: - source: 'Camera Capture' (v4l2_input)
14:36:51.158: - source: 'border' (image_source)
14:36:51.158: - source: 'capture acrd' (v4l2_input)
14:36:51.158: - scene 'game':
14:36:51.158: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:36:51.158: - scene 'game 4:3':
14:36:51.158: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:36:51.158: - scene 'screen':
14:36:51.158: - source: 'Screen Capture (XSHM)' (xshm_input)
14:36:51.158: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
14:36:51.158: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
14:36:51.158: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
14:36:51.158: - scene 'camera':
14:36:51.158: - source: 'Camera Capture' (v4l2_input)
14:36:51.158: - scene 'Camera with scope':
14:36:51.158: - source: 'Camera Capture' (v4l2_input)
14:36:51.158: - source: 'border' (image_source)
14:36:51.158: - source: 'scope caputre' (v4l2_input)
14:36:51.158: - scene 'game with screen':
14:36:51.158: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:36:51.158: ------------------------------------------------
14:36:51.512: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
14:36:51.512:
14:36:51.534: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Mic/Aux)
14:36:51.534:
14:36:53.215: Virtual camera started
14:36:53.239: ==== Virtual Camera Start ==========================================
14:36:53.239: Starting Virtual Camera output to Program
14:36:53.243: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:08:37.266: Get on org.freedesktop.portal.Settings returned an invalid reply
16:08:37.266: Get on org.freedesktop.portal.Settings returned an invalid reply
16:08:37.402: OpenType support missing for "Open Sans", script 11
16:08:37.410: OpenType support missing for "Open Sans", script 12
16:08:37.414: OpenType support missing for "Open Sans", script 16
16:08:37.418: OpenType support missing for "Open Sans", script 20
16:08:42.857: Output 'virtualcam_output': stopping
16:08:42.858: Output 'virtualcam_output': Total frames output: 330576
16:08:42.858: Output 'virtualcam_output': Total drawn frames: 329919 (330577 attempted)
16:08:42.858: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 658 (0.2%)
16:08:42.858: ==== Virtual Camera Stop ===========================================
16:08:42.859: Virtual camera stopped
16:08:43.974: Get on org.freedesktop.portal.Settings returned an invalid reply
16:08:43.974: Get on org.freedesktop.portal.Settings returned an invalid reply
16:13:51.414: Settings changed (outputs)
16:13:51.414: ------------------------------------------------
16:13:52.700: ---------------------------------
16:13:52.701: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
16:13:52.701: device: /dev/dri/by-path/pci-0000:0c:00.0-render
16:13:52.701: rate_control: CBR
16:13:52.701: profile: 1
16:13:52.701: level: -99
16:13:52.701: qp: 0
16:13:52.701: bitrate: 2500
16:13:52.701: maxrate: 2500
16:13:52.701: keyint: 120
16:13:52.701: width: 1920
16:13:52.701: height: 1080
16:13:52.701: b-frames: 0
16:13:52.701: ffmpeg opts:
16:13:52.701:
16:13:52.722: ---------------------------------
16:13:52.722: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
16:13:52.722:
16:13:52.722: ---------------------------------
16:13:52.722: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
16:13:52.722:
16:13:52.723: ---------------------------------
16:13:52.723: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
16:13:52.723:
16:13:52.723: ---------------------------------
16:13:52.723: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
16:13:52.723:
16:13:52.749: ==== Recording Start ===============================================
16:13:52.749: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-05 16-13-52.mkv'...
16:13:52.763: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:21:47.695: Virtual camera started
16:21:47.696: ==== Virtual Camera Start ==========================================
16:21:47.696: Starting Virtual Camera output to Program
16:23:32.210: Output 'virtualcam_output': stopping
16:23:32.210: Output 'virtualcam_output': Total frames output: 6269
16:23:32.210: Output 'virtualcam_output': Total drawn frames: 6267 (6271 attempted)
16:23:32.210: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 4 (0.1%)
16:23:32.210: ==== Virtual Camera Stop ===========================================
16:23:32.211: Virtual camera stopped
06:45:01.511: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-05 16-13-52.mkv' stopped
06:45:01.512: Output 'adv_file_output': stopping
06:45:01.512: Output 'adv_file_output': Total frames output: 3136109
06:45:01.512: Output 'adv_file_output': Total drawn frames: 3136077 (3136126 attempted)
06:45:01.512: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 49 (0.0%)
06:45:01.512: Video stopped, number of skipped frames due to encoding lag: 49/3142393 (0.0%)
06:45:01.512: ==== Recording Stop ================================================
06:45:02.739: ==== Shutting down ==================================================
06:45:02.753: pulse-input: Stopped recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor'
06:45:02.753: pulse-input: Got 2323662 packets with 2788394400 frames
06:45:02.761: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
06:45:02.761: pulse-input: Got 474112 packets with 568934400 frames
06:45:02.802: All scene data cleared
06:45:02.802: ------------------------------------------------
06:45:02.863: [Scripting] Total detached callbacks: 0
06:45:02.863: Freeing OBS context data
06:45:02.901: == Profiler Results =============================
06:45:02.901: run_program_init: 1210.89 ms
06:45:02.901: ┣OBSApp::AppInit: 12.22 ms
06:45:02.901: ┃ ┗OBSApp::InitLocale: 1.681 ms
06:45:02.901: ┗OBSApp::OBSInit: 1156.67 ms
06:45:02.901: ┣obs_startup: 1.383 ms
06:45:02.901: ┗OBSBasic::OBSInit: 1124.63 ms
06:45:02.901: ┣OBSBasic::InitBasicConfig: 0.107 ms
06:45:02.901: ┣OBSBasic::ResetAudio: 0.281 ms
06:45:02.901: ┣OBSBasic::ResetVideo: 142.259 ms
06:45:02.901: ┃ ┗obs_init_graphics: 133.185 ms
06:45:02.901: ┃ ┗shader compilation: 34.792 ms
06:45:02.902: ┣OBSBasic::InitOBSCallbacks: 0.005 ms
06:45:02.902: ┣OBSBasic::InitHotkeys: 0.027 ms
06:45:02.902: ┣obs_load_all_modules2: 531.551 ms
06:45:02.902: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
06:45:02.902: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
06:45:02.902: ┃ ┣obs_init_module(decklink.so): 0.122 ms
06:45:02.902: ┃ ┣obs_init_module(frontend-tools.so): 14.545 ms
06:45:02.902: ┃ ┣obs_init_module(image-source.so): 0.015 ms
06:45:02.902: ┃ ┣obs_init_module(linux-alsa.so): 0.003 ms
06:45:02.902: ┃ ┣obs_init_module(linux-capture.so): 0.516 ms
06:45:02.902: ┃ ┣obs_init_module(linux-jack.so): 0.003 ms
06:45:02.902: ┃ ┣obs_init_module(linux-pipewire.so): 16.508 ms
06:45:02.902: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.006 ms
06:45:02.902: ┃ ┣obs_init_module(linux-v4l2.so): 0.107 ms
06:45:02.902: ┃ ┣obs_init_module(obs-ffmpeg.so): 51.938 ms
06:45:02.902: ┃ ┃ ┗nvenc_check: 1.451 ms
06:45:02.902: ┃ ┣obs_init_module(obs-filters.so): 0.028 ms
06:45:02.902: ┃ ┣obs_init_module(obs-libfdk.so): 0.003 ms
06:45:02.902: ┃ ┣obs_init_module(obs-outputs.so): 0.007 ms
06:45:02.902: ┃ ┣obs_init_module(obs-qsv11.so): 18.468 ms
06:45:02.902: ┃ ┣obs_init_module(obs-transitions.so): 0.011 ms
06:45:02.902: ┃ ┣obs_init_module(obs-vaapi.so): 73.462 ms
06:45:02.902: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
06:45:02.902: ┃ ┣obs_init_module(obs-webrtc.so): 0.009 ms
06:45:02.902: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
06:45:02.902: ┃ ┣obs_init_module(rtmp-services.so): 1.257 ms
06:45:02.902: ┃ ┣obs_init_module(text-freetype2.so): 0.047 ms
06:45:02.902: ┃ ┗obs_init_module(wlrobs.so): 0.014 ms
06:45:02.902: ┣OBSBasic::InitService: 1.146 ms
06:45:02.902: ┣OBSBasic::ResetOutputs: 9.165 ms
06:45:02.902: ┣OBSBasic::CreateHotkeys: 0.026 ms
06:45:02.902: ┣OBSBasic::InitPrimitives: 0.087 ms
06:45:02.902: ┗OBSBasic::Load: 271.321 ms
06:45:02.903: obs_hotkey_thread(25 ms): min=0.051 ms, median=0.13 ms, max=206.831 ms, 99th percentile=8.467 ms, 99.9985% below 25 ms
06:45:02.903: audio_thread(Audio): min=0.004 ms, median=0.453 ms, max=37.184 ms, 99th percentile=1.421 ms
06:45:02.903: ┗receive_audio: min=0.001 ms, median=0.093 ms, max=36.994 ms, 99th percentile=0.396 ms, 3.59899 calls per parent call
06:45:02.903: ┣buffer_audio: min=0 ms, median=0.001 ms, max=0.243 ms, 99th percentile=0.002 ms
06:45:02.903: ┗do_encode: min=0.039 ms, median=0.089 ms, max=36.992 ms, 99th percentile=0.372 ms, 1.06667 calls per parent call
06:45:02.903: ┣encode(Track1): min=0.039 ms, median=0.114 ms, max=3.866 ms, 99th percentile=0.416 ms, 0.25 calls per parent call
06:45:02.903: ┣send_packet: min=0 ms, median=0.001 ms, max=36.939 ms, 99th percentile=0.022 ms
06:45:02.903: ┣encode(Track2): min=0.039 ms, median=0.086 ms, max=0.705 ms, 99th percentile=0.375 ms, 0.25 calls per parent call
06:45:02.903: ┣encode(Track3): min=0.038 ms, median=0.08 ms, max=0.505 ms, 99th percentile=0.119 ms, 0.25 calls per parent call
06:45:02.903: ┗encode(Track4): min=0.04 ms, median=0.085 ms, max=1.005 ms, 99th percentile=0.317 ms, 0.25 calls per parent call
06:45:02.903: obs_graphics_thread(16.6667 ms): min=0.089 ms, median=8.137 ms, max=300.573 ms, 99th percentile=13.676 ms, 99.7212% below 16.667 ms
06:45:02.903: ┣tick_sources: min=0 ms, median=7.694 ms, max=293.157 ms, 99th percentile=12.668 ms
06:45:02.903: ┣output_frame: min=0.079 ms, median=0.409 ms, max=17.703 ms, 99th percentile=1.252 ms
06:45:02.903: ┃ ┣gs_context(video->graphics): min=0.079 ms, median=0.401 ms, max=9.671 ms, 99th percentile=0.552 ms
06:45:02.903: ┃ ┃ ┣render_video: min=0.007 ms, median=0.368 ms, max=4.459 ms, 99th percentile=0.513 ms
06:45:02.903: ┃ ┃ ┃ ┣render_main_texture: min=0.005 ms, median=0.122 ms, max=4.252 ms, 99th percentile=0.19 ms
06:45:02.903: ┃ ┃ ┃ ┣render_convert_texture: min=0.013 ms, median=0.04 ms, max=1.941 ms, 99th percentile=0.065 ms
06:45:02.903: ┃ ┃ ┃ ┣stage_output_texture: min=0.008 ms, median=0.018 ms, max=1.195 ms, 99th percentile=0.033 ms, 0.0964825 calls per parent call
06:45:02.903: ┃ ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.003 ms, max=0.339 ms, 99th percentile=0.007 ms, 0.900024 calls per parent call
06:45:02.903: ┃ ┃ ┣gs_flush: min=0.001 ms, median=0.016 ms, max=2.706 ms, 99th percentile=0.027 ms
06:45:02.903: ┃ ┃ ┗download_frame: min=0 ms, median=0.06 ms, max=4.692 ms, 99th percentile=0.101 ms, 0.0964825 calls per parent call
06:45:02.904: ┃ ┗output_video_data: min=0.287 ms, median=0.598 ms, max=10.731 ms, 99th percentile=1.331 ms, 0.0964819 calls per parent call
06:45:02.904: ┗render_displays: min=0.002 ms, median=0.005 ms, max=15.635 ms, 99th percentile=0.339 ms
06:45:02.904: video_thread(video): min=0 ms, median=3.259 ms, max=85.806 ms, 99th percentile=5.299 ms
06:45:02.904: OBSBasicSettings::LoadThemeList: min=0.035 ms, median=0 ms, max=0.043 ms, 99th percentile=0.043 ms
06:45:02.904: OBSBasic::ResetOutputs: 21.96 ms
06:45:02.904: obs_gpu_encode_thread(16.6667 ms): min=0 ms, median=0.579 ms, max=38.796 ms, 99th percentile=1.163 ms, 100% below 16.667 ms
06:45:02.904: ┣gpu_encode_frame: min=0.167 ms, median=0.568 ms, max=16.1 ms, 99th percentile=1.151 ms
06:45:02.904: ┗send_packet: min=0.001 ms, median=0.007 ms, max=37.871 ms, 99th percentile=0.02 ms
06:45:02.904: =================================================
06:45:02.904: == Profiler Time Between Calls ==================
06:45:02.904: obs_hotkey_thread(25 ms): min=25.074 ms, median=25.201 ms, max=231.9 ms, 85.5573% within ±2% of 25 ms (0% lower, 14.4427% higher)
06:45:02.904: obs_graphics_thread(16.6667 ms): min=8.569 ms, median=16.667 ms, max=300.577 ms, 99.5616% within ±2% of 16.667 ms (0.192341% lower, 0.246066% higher)
06:45:02.904: obs_gpu_encode_thread(16.6667 ms): min=0.389 ms, median=16.675 ms, max=239.785 ms, 78.5276% within ±2% of 16.667 ms (10.9203% lower, 10.5521% higher)
06:45:02.904: =================================================
06:45:03.006: Number of memory leaks: 3

View file

@ -1,239 +0,0 @@
06:48:28.135: Using EGL/X11
06:48:28.135: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
06:48:28.135: CPU Speed: 4266.401MHz
06:48:28.135: Physical Cores: 8, Logical Cores: 16
06:48:28.135: Physical Memory: 31998MB Total, 9987MB Free
06:48:28.135: Kernel Version: Linux 6.10.7-zen1-1-zen
06:48:28.135: Distribution: "Arch Linux" Unknown
06:48:28.135: Session Type: tty
06:48:28.135: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
06:48:28.136: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
06:48:28.136: Portable mode: false
06:48:28.164: OBS 30.2.1-1 (linux)
06:48:28.164: ---------------------------------
06:48:28.164: ---------------------------------
06:48:28.164: audio settings reset:
06:48:28.164: samples per sec: 48000
06:48:28.164: speakers: 2
06:48:28.164: max buffering: 960 milliseconds
06:48:28.164: buffering type: dynamically increasing
06:48:28.169: ---------------------------------
06:48:28.169: Initializing OpenGL...
06:48:28.268: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XT (radeonsi, navi31, LLVM 18.1.8, DRM 3.57, 6.10.7-zen1-1-zen)
06:48:28.268: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.2.1-arch1.1, shading language 4.60
06:48:28.300: ---------------------------------
06:48:28.300: video settings reset:
06:48:28.300: base resolution: 1920x1080
06:48:28.300: output resolution: 1920x1080
06:48:28.300: downscale filter: Bicubic
06:48:28.300: fps: 60/1
06:48:28.300: format: NV12
06:48:28.300: YUV mode: Rec. 709/Partial
06:48:28.302: NV12 texture support enabled
06:48:28.302: P010 texture support not available
06:48:28.312: Audio monitoring device:
06:48:28.312: name: Default
06:48:28.312: id: default
06:48:28.312: ---------------------------------
06:48:28.322: Failed to load 'en-US' text for module: 'decklink-captions.so'
06:48:28.331: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
06:48:28.340: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
06:48:28.340: Failed to initialize module 'decklink.so'
06:48:28.362: [Python] Python failure in obs_scripting_load_python:1766:
06:48:28.362: [Python] Error importing obspython.py', unloading obs-python
06:48:28.362: [Python] Failed to load python plugin
06:48:28.444: [pipewire] No capture sources available
06:48:28.550: VAAPI: API version 1.22
06:48:28.551: FFmpeg VAAPI H264 encoding supported
06:48:28.559: FFmpeg VAAPI AV1 encoding supported
06:48:28.566: FFmpeg VAAPI HEVC encoding supported
06:48:28.659: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
06:48:28.740: [obs-vaapi] found vah265enc
06:48:28.740: [obs-vaapi] found vaav1enc
06:48:28.740: [obs-vaapi] found vah264enc
06:48:28.740: [obs-vaapi] found vaapih265enc
06:48:28.740: [obs-vaapi] found vaapih264enc
06:48:28.809: ---------------------------------
06:48:28.810: Loaded Modules:
06:48:28.810: wlrobs.so
06:48:28.810: text-freetype2.so
06:48:28.810: rtmp-services.so
06:48:28.810: obs-x264.so
06:48:28.810: obs-webrtc.so
06:48:28.810: obs-vst.so
06:48:28.810: obs-vaapi.so
06:48:28.810: obs-transitions.so
06:48:28.810: obs-qsv11.so
06:48:28.810: obs-outputs.so
06:48:28.810: obs-libfdk.so
06:48:28.810: obs-filters.so
06:48:28.810: obs-ffmpeg.so
06:48:28.810: linux-v4l2.so
06:48:28.810: linux-pulseaudio.so
06:48:28.810: linux-pipewire.so
06:48:28.810: linux-jack.so
06:48:28.810: linux-capture.so
06:48:28.810: linux-alsa.so
06:48:28.810: image-source.so
06:48:28.810: frontend-tools.so
06:48:28.810: decklink-output-ui.so
06:48:28.810: decklink-captions.so
06:48:28.810: ---------------------------------
06:48:28.810: ---------------------------------
06:48:28.810: Available Encoders:
06:48:28.810: Video Encoders:
06:48:28.810: - ffmpeg_svt_av1 (SVT-AV1)
06:48:28.810: - ffmpeg_aom_av1 (AOM AV1)
06:48:28.810: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
06:48:28.810: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
06:48:28.810: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
06:48:28.815: - obs-va-vah265enc (VAAPI H.265 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
06:48:28.820: - obs-va-vaav1enc (VAAPI AV1 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
06:48:28.825: - obs-va-vah264enc (VAAPI H.264 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
06:48:28.825: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
06:48:28.825: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
06:48:28.825: - obs_x264 (x264)
06:48:28.825: Audio Encoders:
06:48:28.825: - ffmpeg_aac (FFmpeg AAC)
06:48:28.825: - ffmpeg_opus (FFmpeg Opus)
06:48:28.825: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
06:48:28.825: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
06:48:28.825: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
06:48:28.825: - ffmpeg_alac (FFmpeg ALAC (24-bit))
06:48:28.825: - ffmpeg_flac (FFmpeg FLAC (16-bit))
06:48:28.825: - libfdk_aac (libfdk AAC)
06:48:28.825: ==== Startup complete ===============================================
06:48:28.868: All scene data cleared
06:48:28.868: ------------------------------------------------
06:48:28.873: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
06:48:28.873: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
06:48:28.873: pulse-input: Started recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor' (default)
06:48:28.873: [Loaded global audio device]: 'Desktop Audio'
06:48:28.873: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
06:48:28.873: pulse-input: An error occurred while getting the source info!
06:48:28.873: [Loaded global audio device]: 'Mic/Aux'
06:48:28.874: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
06:48:28.874: pulse-input: An error occurred while getting the source info!
06:48:28.874: [Loaded global audio device]: 'HDMI Capture'
06:48:28.874: v4l2-input: Start capture from /dev/video0
06:48:28.874: v4l2-input: Unable to open device
06:48:28.874: v4l2-input: Initialization failed, errno: No such file or directory
06:48:28.874: xshm-input: Geometry 3840x2160 @ 0,0
06:48:28.889: v4l2-input: Start capture from /dev/video0
06:48:28.889: v4l2-input: Unable to open device
06:48:28.889: v4l2-input: Initialization failed, errno: No such file or directory
06:48:29.046: v4l2-input: Start capture from /dev/video0
06:48:29.046: v4l2-input: Unable to open device
06:48:29.046: v4l2-input: Initialization failed, errno: No such file or directory
06:48:29.046: v4l2-input: Start capture from /dev/video4
06:48:29.046: v4l2-input: Unable to open device
06:48:29.046: v4l2-input: Initialization failed, errno: No such file or directory
06:48:29.047: xshm-input: Geometry 3840x2160 @ 0,0
06:48:29.054: Source ID 'pipewire-desktop-capture-source' not found
06:48:29.054: Failed to create source 'Screen Capture (PipeWire)'!
06:48:29.056: Switched to scene 'screen'
06:48:29.056: ------------------------------------------------
06:48:29.056: Loaded scenes:
06:48:29.056: - scene 'Screen with camera':
06:48:29.056: - source: 'Screen Capture' (xshm_input)
06:48:29.056: - source: 'Camera Capture' (v4l2_input)
06:48:29.056: - source: 'border' (image_source)
06:48:29.056: - scene 'game with camera':
06:48:29.056: - source: 'Camera Capture' (v4l2_input)
06:48:29.056: - source: 'border' (image_source)
06:48:29.056: - source: 'capture acrd' (v4l2_input)
06:48:29.056: - scene 'game':
06:48:29.056: - source: 'Video Capture Device (V4L2)' (v4l2_input)
06:48:29.056: - scene 'game 4:3':
06:48:29.056: - source: 'Video Capture Device (V4L2)' (v4l2_input)
06:48:29.056: - scene 'screen':
06:48:29.056: - source: 'Screen Capture (XSHM)' (xshm_input)
06:48:29.056: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
06:48:29.056: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
06:48:29.056: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
06:48:29.056: - scene 'camera':
06:48:29.056: - source: 'Camera Capture' (v4l2_input)
06:48:29.056: - scene 'Camera with scope':
06:48:29.056: - source: 'Camera Capture' (v4l2_input)
06:48:29.056: - source: 'border' (image_source)
06:48:29.056: - source: 'scope caputre' (v4l2_input)
06:48:29.056: - scene 'game with screen':
06:48:29.056: - source: 'Video Capture Device (V4L2)' (v4l2_input)
06:48:29.056: ------------------------------------------------
06:48:29.444: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
06:48:29.444:
06:48:30.909: ---------------------------------
06:48:30.910: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
06:48:30.910: device: /dev/dri/by-path/pci-0000:0c:00.0-render
06:48:30.910: rate_control: CBR
06:48:30.910: profile: 1
06:48:30.910: level: -99
06:48:30.910: qp: 0
06:48:30.910: bitrate: 2500
06:48:30.910: maxrate: 2500
06:48:30.910: keyint: 120
06:48:30.910: width: 1920
06:48:30.910: height: 1080
06:48:30.910: b-frames: 0
06:48:30.910: ffmpeg opts:
06:48:30.910:
06:48:30.932: ---------------------------------
06:48:30.933: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
06:48:30.933:
06:48:30.933: ---------------------------------
06:48:30.933: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
06:48:30.933:
06:48:30.933: ---------------------------------
06:48:30.933: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
06:48:30.933:
06:48:30.933: ---------------------------------
06:48:30.933: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
06:48:30.933:
06:48:30.996: ==== Recording Start ===============================================
06:48:30.996: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-06 06-48-30.mkv'...
06:48:31.009: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
06:49:02.821: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-06 06-48-30.mkv' stopped
06:49:02.821: Output 'adv_file_output': stopping
06:49:02.821: Output 'adv_file_output': Total frames output: 1902
06:49:02.821: Output 'adv_file_output': Total drawn frames: 1902 (1910 attempted)
06:49:02.821: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 8 (0.4%)
06:49:02.821: Video stopped, number of skipped frames due to encoding lag: 8/1910 (0.4%)
06:49:02.821: ==== Recording Stop ================================================
11:18:12.271: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Desktop Audio)
11:18:12.271:
17:49:55.612: ---------------------------------
17:49:55.613: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
17:49:55.613: device: /dev/dri/by-path/pci-0000:0c:00.0-render
17:49:55.613: rate_control: CBR
17:49:55.613: profile: 1
17:49:55.613: level: -99
17:49:55.613: qp: 0
17:49:55.613: bitrate: 2500
17:49:55.613: maxrate: 2500
17:49:55.613: keyint: 120
17:49:55.613: width: 1920
17:49:55.613: height: 1080
17:49:55.613: b-frames: 0
17:49:55.613: ffmpeg opts:
17:49:55.613:
17:49:55.629: ---------------------------------
17:49:55.629: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
17:49:55.629:
17:49:55.629: ---------------------------------
17:49:55.629: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
17:49:55.629:
17:49:55.629: ---------------------------------
17:49:55.629: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
17:49:55.629:
17:49:55.629: ---------------------------------
17:49:55.629: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
17:49:55.629:
17:49:55.646: ==== Recording Start ===============================================
17:49:55.646: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-11 17-49-55.mkv'...
17:49:55.657: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:41:50.915: Recording stopped because of low disk space
17:07:23.004: Recording stopped because of low disk space
17:09:23.004: Recording stopped because of low disk space
21:16:07.065: ==== Shutting down ==================================================
21:16:07.078: pulse-input: Stopped recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor'
21:16:07.078: pulse-input: Got 22818255 packets with 27381906000 frames

View file

@ -1,240 +0,0 @@
22:16:25.582: [Safe Mode] Unclean shutdown detected!
22:16:27.777: [Safe Mode] User elected to launch normally.
22:16:27.778: Using EGL/X11
22:16:27.778: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
22:16:27.778: CPU Speed: 4311.803MHz
22:16:27.779: Physical Cores: 8, Logical Cores: 16
22:16:27.779: Physical Memory: 31998MB Total, 18105MB Free
22:16:27.779: Kernel Version: Linux 6.10.10-zen1-1-zen
22:16:27.780: Distribution: "Arch Linux" Unknown
22:16:27.780: Session Type: tty
22:16:27.780: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
22:16:27.781: Qt Version: 6.7.2 (runtime), 6.7.2 (compiled)
22:16:27.781: Portable mode: false
22:16:27.814: OBS 30.2.1-1 (linux)
22:16:27.814: ---------------------------------
22:16:27.814: ---------------------------------
22:16:27.815: audio settings reset:
22:16:27.815: samples per sec: 48000
22:16:27.815: speakers: 2
22:16:27.815: max buffering: 960 milliseconds
22:16:27.815: buffering type: dynamically increasing
22:16:27.824: ---------------------------------
22:16:27.825: Initializing OpenGL...
22:16:27.925: Loading up OpenGL on adapter AMD AMD Radeon RX 7900 XT (radeonsi, navi31, LLVM 18.1.8, DRM 3.57, 6.10.10-zen1-1-zen)
22:16:27.925: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.2.2-arch1.1, shading language 4.60
22:16:28.041: ---------------------------------
22:16:28.041: video settings reset:
22:16:28.041: base resolution: 1920x1080
22:16:28.041: output resolution: 1920x1080
22:16:28.041: downscale filter: Bicubic
22:16:28.041: fps: 60/1
22:16:28.041: format: NV12
22:16:28.041: YUV mode: Rec. 709/Partial
22:16:28.042: NV12 texture support enabled
22:16:28.042: P010 texture support not available
22:16:28.047: Audio monitoring device:
22:16:28.047: name: Default
22:16:28.047: id: default
22:16:28.047: ---------------------------------
22:16:28.058: Failed to load 'en-US' text for module: 'decklink-captions.so'
22:16:28.069: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
22:16:28.080: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
22:16:28.080: Failed to initialize module 'decklink.so'
22:16:28.264: [pipewire] No capture sources available
22:16:28.398: VAAPI: API version 1.22
22:16:28.399: FFmpeg VAAPI H264 encoding supported
22:16:28.407: FFmpeg VAAPI AV1 encoding supported
22:16:28.414: FFmpeg VAAPI HEVC encoding supported
22:16:28.530: [obs-vaapi] version: 0.4.1, gst-runtime: 1.24.7
22:16:28.613: [obs-vaapi] found vah265enc
22:16:28.613: [obs-vaapi] found vaav1enc
22:16:28.613: [obs-vaapi] found vah264enc
22:16:28.613: [obs-vaapi] found vaapih265enc
22:16:28.613: [obs-vaapi] found vaapih264enc
22:16:28.726: ---------------------------------
22:16:28.726: Loaded Modules:
22:16:28.726: wlrobs.so
22:16:28.726: text-freetype2.so
22:16:28.726: rtmp-services.so
22:16:28.726: obs-x264.so
22:16:28.726: obs-webrtc.so
22:16:28.726: obs-vst.so
22:16:28.726: obs-vaapi.so
22:16:28.726: obs-transitions.so
22:16:28.726: obs-qsv11.so
22:16:28.726: obs-outputs.so
22:16:28.726: obs-libfdk.so
22:16:28.726: obs-filters.so
22:16:28.726: obs-ffmpeg.so
22:16:28.726: linux-v4l2.so
22:16:28.726: linux-pulseaudio.so
22:16:28.726: linux-pipewire.so
22:16:28.726: linux-jack.so
22:16:28.726: linux-capture.so
22:16:28.726: linux-alsa.so
22:16:28.726: image-source.so
22:16:28.726: frontend-tools.so
22:16:28.726: decklink-output-ui.so
22:16:28.726: decklink-captions.so
22:16:28.726: ---------------------------------
22:16:28.727: ---------------------------------
22:16:28.727: Available Encoders:
22:16:28.727: Video Encoders:
22:16:28.727: - ffmpeg_svt_av1 (SVT-AV1)
22:16:28.727: - ffmpeg_aom_av1 (AOM AV1)
22:16:28.727: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
22:16:28.727: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
22:16:28.727: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
22:16:28.741: - obs-va-vah265enc (VAAPI H.265 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
22:16:28.748: - obs-va-vaav1enc (VAAPI AV1 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
22:16:28.755: - obs-va-vah264enc (VAAPI H.264 on Navi 31 [Radeon RX 7900 XT/7900 XTX/7900M])
22:16:28.755: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
22:16:28.755: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
22:16:28.755: - obs_x264 (x264)
22:16:28.755: Audio Encoders:
22:16:28.755: - ffmpeg_aac (FFmpeg AAC)
22:16:28.755: - ffmpeg_opus (FFmpeg Opus)
22:16:28.755: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
22:16:28.755: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
22:16:28.755: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
22:16:28.755: - ffmpeg_alac (FFmpeg ALAC (24-bit))
22:16:28.755: - ffmpeg_flac (FFmpeg FLAC (16-bit))
22:16:28.755: - libfdk_aac (libfdk AAC)
22:16:28.755: ==== Startup complete ===============================================
22:16:28.818: All scene data cleared
22:16:28.818: ------------------------------------------------
22:16:28.825: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
22:16:28.825: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
22:16:28.825: pulse-input: Started recording from 'alsa_output.pci-0000_0e_00.4.analog-stereo.monitor' (default)
22:16:28.825: [Loaded global audio device]: 'Desktop Audio'
22:16:28.826: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
22:16:28.826: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
22:16:28.826: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
22:16:28.826: [Loaded global audio device]: 'Mic/Aux'
22:16:28.827: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.3) 15.0.0'
22:16:28.827: pulse-input: An error occurred while getting the source info!
22:16:28.827: [Loaded global audio device]: 'HDMI Capture'
22:16:28.827: v4l2-input: Start capture from /dev/video0
22:16:28.827: v4l2-input: Unable to open device
22:16:28.827: v4l2-input: Initialization failed, errno: No such file or directory
22:16:28.827: xshm-input: Geometry 3840x2160 @ 0,0
22:16:28.835: v4l2-input: Start capture from /dev/video0
22:16:28.835: v4l2-input: Unable to open device
22:16:28.835: v4l2-input: Initialization failed, errno: No such file or directory
22:16:28.893: [rtmp-services plugin] Successfully updated file 'services.json' (version 264)
22:16:28.893: [rtmp-services plugin] Successfully updated package (version 264)
22:16:29.019: v4l2-input: Start capture from /dev/video0
22:16:29.019: v4l2-input: Unable to open device
22:16:29.019: v4l2-input: Initialization failed, errno: No such file or directory
22:16:29.019: v4l2-input: Start capture from /dev/video4
22:16:29.019: v4l2-input: Unable to open device
22:16:29.019: v4l2-input: Initialization failed, errno: No such file or directory
22:16:29.020: xshm-input: Geometry 3840x2160 @ 0,0
22:16:29.024: Source ID 'pipewire-desktop-capture-source' not found
22:16:29.024: Failed to create source 'Screen Capture (PipeWire)'!
22:16:29.029: Switched to scene 'screen'
22:16:29.029: ------------------------------------------------
22:16:29.029: Loaded scenes:
22:16:29.029: - scene 'Screen with camera':
22:16:29.029: - source: 'Screen Capture' (xshm_input)
22:16:29.029: - source: 'Camera Capture' (v4l2_input)
22:16:29.029: - source: 'border' (image_source)
22:16:29.029: - scene 'game with camera':
22:16:29.029: - source: 'Camera Capture' (v4l2_input)
22:16:29.029: - source: 'border' (image_source)
22:16:29.029: - source: 'capture acrd' (v4l2_input)
22:16:29.029: - scene 'game':
22:16:29.029: - source: 'Video Capture Device (V4L2)' (v4l2_input)
22:16:29.029: - scene 'game 4:3':
22:16:29.029: - source: 'Video Capture Device (V4L2)' (v4l2_input)
22:16:29.029: - scene 'screen':
22:16:29.029: - source: 'Screen Capture (XSHM)' (xshm_input)
22:16:29.029: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
22:16:29.029: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
22:16:29.029: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
22:16:29.029: - scene 'camera':
22:16:29.029: - source: 'Camera Capture' (v4l2_input)
22:16:29.029: - scene 'Camera with scope':
22:16:29.029: - source: 'Camera Capture' (v4l2_input)
22:16:29.029: - source: 'border' (image_source)
22:16:29.029: - source: 'scope caputre' (v4l2_input)
22:16:29.029: - scene 'game with screen':
22:16:29.029: - source: 'Video Capture Device (V4L2)' (v4l2_input)
22:16:29.029: ------------------------------------------------
22:16:29.372: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
22:16:29.372:
22:16:30.195: ---------------------------------
22:16:30.197: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
22:16:30.197: device: /dev/dri/by-path/pci-0000:0c:00.0-render
22:16:30.197: rate_control: CBR
22:16:30.197: profile: 1
22:16:30.197: level: -99
22:16:30.197: qp: 0
22:16:30.197: bitrate: 2500
22:16:30.197: maxrate: 2500
22:16:30.197: keyint: 120
22:16:30.197: width: 1920
22:16:30.197: height: 1080
22:16:30.197: b-frames: 0
22:16:30.197: ffmpeg opts:
22:16:30.197:
22:16:30.221: ---------------------------------
22:16:30.221: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
22:16:30.221:
22:16:30.222: ---------------------------------
22:16:30.222: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
22:16:30.222:
22:16:30.222: ---------------------------------
22:16:30.222: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
22:16:30.222:
22:16:30.222: ---------------------------------
22:16:30.222: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
22:16:30.222:
22:16:30.279: ==== Recording Start ===============================================
22:16:30.279: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-27 22-16-30.mkv'...
22:16:30.288: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
22:18:33.814: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-27 22-16-30.mkv' stopped
22:18:33.814: Output 'adv_file_output': stopping
22:18:33.814: Output 'adv_file_output': Total frames output: 7408
22:18:33.814: Output 'adv_file_output': Total drawn frames: 7406 (7413 attempted)
22:18:33.814: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 7 (0.1%)
22:18:33.814: Video stopped, number of skipped frames due to encoding lag: 7/7412 (0.1%)
22:18:33.814: ==== Recording Stop ================================================
22:41:58.130: ---------------------------------
22:41:58.130: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
22:41:58.130: device: /dev/dri/by-path/pci-0000:0c:00.0-render
22:41:58.130: rate_control: CBR
22:41:58.130: profile: 1
22:41:58.130: level: -99
22:41:58.130: qp: 0
22:41:58.130: bitrate: 2500
22:41:58.130: maxrate: 2500
22:41:58.130: keyint: 120
22:41:58.130: width: 1920
22:41:58.130: height: 1080
22:41:58.130: b-frames: 0
22:41:58.130: ffmpeg opts:
22:41:58.130:
22:41:58.146: ---------------------------------
22:41:58.146: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo
22:41:58.146:
22:41:58.147: ---------------------------------
22:41:58.147: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo
22:41:58.147:
22:41:58.147: ---------------------------------
22:41:58.147: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo
22:41:58.147:
22:41:58.147: ---------------------------------
22:41:58.147: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo
22:41:58.147:
22:41:58.156: ==== Recording Start ===============================================
22:41:58.156: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-27 22-41-58.mkv'...
22:41:58.161: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
22:42:11.057: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2024-09-27 22-41-58.mkv' stopped
22:42:11.057: Output 'adv_file_output': stopping
22:42:11.057: Output 'adv_file_output': Total frames output: 768
22:42:11.057: Output 'adv_file_output': Total drawn frames: 771 (774 attempted)
22:42:11.057: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 3 (0.4%)
22:42:11.058: Video stopped, number of skipped frames due to encoding lag: 3/772 (0.4%)
22:42:11.058: ==== Recording Stop ================================================

View file

@ -0,0 +1,342 @@
21:02:21.792: [Safe Mode] Unclean shutdown detected!
21:02:25.332: [Safe Mode] User elected to launch normally.
21:02:25.333: Using EGL/X11
21:02:25.333: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
21:02:25.333: CPU Speed: 4241.506MHz
21:02:25.333: Physical Cores: 8, Logical Cores: 16
21:02:25.333: Physical Memory: 31998MB Total, 26228MB Free
21:02:25.333: Kernel Version: Linux 6.12.7-zen1-1-zen
21:02:25.333: Distribution: "Arch Linux" Unknown
21:02:25.333: Session Type: tty
21:02:25.333: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
21:02:25.334: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
21:02:25.334: Portable mode: false
21:02:25.353: OBS 31.0.0 (linux)
21:02:25.353: ---------------------------------
21:02:25.354: ---------------------------------
21:02:25.354: audio settings reset:
21:02:25.354: samples per sec: 48000
21:02:25.354: speakers: 2
21:02:25.354: max buffering: 960 milliseconds
21:02:25.354: buffering type: dynamically increasing
21:02:25.356: ---------------------------------
21:02:25.356: Initializing OpenGL...
21:02:25.424: Loading up OpenGL on adapter Intel Mesa Intel(R) Arc(tm) A750 Graphics (DG2)
21:02:25.424: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
21:02:25.467: ---------------------------------
21:02:25.467: video settings reset:
21:02:25.467: base resolution: 1920x1080
21:02:25.467: output resolution: 1920x1080
21:02:25.467: downscale filter: Bicubic
21:02:25.467: fps: 30/1
21:02:25.467: format: NV12
21:02:25.467: YUV mode: Rec. 709/Partial
21:02:25.467: NV12 texture support enabled
21:02:25.467: P010 texture support not available
21:02:25.467: Audio monitoring device:
21:02:25.467: name: Default
21:02:25.467: id: default
21:02:25.469: ---------------------------------
21:02:25.480: Failed to load 'en-US' text for module: 'decklink-captions.so'
21:02:25.493: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
21:02:25.500: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
21:02:25.500: Failed to initialize module 'decklink.so'
21:02:25.646: [pipewire] No capture sources available
21:02:25.712: VAAPI: API version 1.22
21:02:25.712: FFmpeg VAAPI H264 encoding supported
21:02:25.714: FFmpeg VAAPI AV1 encoding supported
21:02:25.717: FFmpeg VAAPI HEVC encoding supported
21:02:25.749: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory
21:02:25.749:
21:02:25.749: NVENC not supported
21:02:25.749: Failed to initialize module 'obs-nvenc.so'
21:02:25.811: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
21:02:25.906: [obs-vaapi] found vah264lpenc
21:02:25.906: [obs-vaapi] found vaav1lpenc
21:02:25.906: [obs-vaapi] found vah265lpenc
21:02:25.906: [obs-vaapi] found vaapih265enc
21:02:25.906: [obs-vaapi] found vaapih264enc
21:02:25.982: ---------------------------------
21:02:25.983: Loaded Modules:
21:02:25.983: wlrobs.so
21:02:25.983: text-freetype2.so
21:02:25.983: rtmp-services.so
21:02:25.983: obs-x264.so
21:02:25.983: obs-webrtc.so
21:02:25.983: obs-vst.so
21:02:25.983: obs-vaapi.so
21:02:25.983: obs-transitions.so
21:02:25.983: obs-qsv11.so
21:02:25.983: obs-outputs.so
21:02:25.983: obs-libfdk.so
21:02:25.983: obs-filters.so
21:02:25.983: obs-ffmpeg.so
21:02:25.983: linux-v4l2.so
21:02:25.983: linux-pulseaudio.so
21:02:25.983: linux-pipewire.so
21:02:25.983: linux-jack.so
21:02:25.983: linux-capture.so
21:02:25.983: linux-alsa.so
21:02:25.983: image-source.so
21:02:25.983: frontend-tools.so
21:02:25.983: decklink-output-ui.so
21:02:25.983: decklink-captions.so
21:02:25.983: ---------------------------------
21:02:25.983: ---------------------------------
21:02:25.983: Available Encoders:
21:02:25.983: Video Encoders:
21:02:25.983: - ffmpeg_svt_av1 (SVT-AV1)
21:02:25.983: - ffmpeg_aom_av1 (AOM AV1)
21:02:25.983: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
21:02:25.983: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
21:02:25.983: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
21:02:25.983: - obs_qsv11_v2 (QuickSync H.264)
21:02:25.983: - obs_qsv11_av1 (QuickSync AV1)
21:02:25.983: - obs_qsv11_hevc (QuickSync HEVC)
21:02:25.988: - obs-va-vah264lpenc (VAAPI H.264 on DG2 [Arc A750] (Low Power))
21:02:25.993: - obs-va-vaav1lpenc (VAAPI AV1 on DG2 [Arc A750] (Low Power))
21:02:25.998: - obs-va-vah265lpenc (VAAPI H.265 on DG2 [Arc A750] (Low Power))
21:02:25.998: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
21:02:25.998: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
21:02:25.998: - obs_x264 (x264)
21:02:25.998: Audio Encoders:
21:02:25.998: - ffmpeg_aac (FFmpeg AAC)
21:02:25.998: - ffmpeg_opus (FFmpeg Opus)
21:02:25.998: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
21:02:25.998: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
21:02:25.998: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
21:02:25.998: - ffmpeg_alac (FFmpeg ALAC (24-bit))
21:02:25.998: - ffmpeg_flac (FFmpeg FLAC (16-bit))
21:02:25.998: - libfdk_aac (libfdk AAC)
21:02:25.998: ==== Startup complete ===============================================
21:02:26.037: All scene data cleared
21:02:26.037: ------------------------------------------------
21:02:26.040: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
21:02:26.040: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
21:02:26.040: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
21:02:26.040: [Loaded global audio device]: 'Desktop Audio'
21:02:26.040: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
21:02:26.041: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
21:02:26.041: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
21:02:26.041: [Loaded global audio device]: 'Mic/Aux'
21:02:26.041: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
21:02:26.041: pulse-input: An error occurred while getting the source info!
21:02:26.041: [Loaded global audio device]: 'HDMI Capture'
21:02:26.041: v4l2-input: Start capture from /dev/video0
21:02:26.041: v4l2-input: Unable to open device
21:02:26.041: v4l2-input: Initialization failed, errno: No such file or directory
21:02:26.042: xshm-input: Geometry 3840x2160 @ 0,0
21:02:26.042: v4l2-input: Start capture from /dev/video0
21:02:26.042: v4l2-input: Unable to open device
21:02:26.042: v4l2-input: Initialization failed, errno: No such file or directory
21:02:26.156: v4l2-input: Start capture from /dev/video0
21:02:26.156: v4l2-input: Unable to open device
21:02:26.156: v4l2-input: Initialization failed, errno: No such file or directory
21:02:26.157: v4l2-input: Start capture from /dev/video4
21:02:26.157: v4l2-input: Unable to open device
21:02:26.157: v4l2-input: Initialization failed, errno: No such file or directory
21:02:26.158: xshm-input: Geometry 3840x2160 @ 0,0
21:02:26.158: Source ID 'pipewire-desktop-capture-source' not found
21:02:26.158: Failed to create source 'Screen Capture (PipeWire)'!
21:02:26.159: Switched to scene 'screen'
21:02:26.159: ------------------------------------------------
21:02:26.159: Loaded scenes:
21:02:26.159: - scene 'Screen with camera':
21:02:26.160: - source: 'Screen Capture' (xshm_input)
21:02:26.160: - source: 'Camera Capture' (v4l2_input)
21:02:26.160: - source: 'border' (image_source)
21:02:26.160: - scene 'game with camera':
21:02:26.160: - source: 'Camera Capture' (v4l2_input)
21:02:26.160: - source: 'border' (image_source)
21:02:26.160: - source: 'capture acrd' (v4l2_input)
21:02:26.160: - scene 'game':
21:02:26.160: - source: 'Video Capture Device (V4L2)' (v4l2_input)
21:02:26.160: - scene 'game 4:3':
21:02:26.160: - source: 'Video Capture Device (V4L2)' (v4l2_input)
21:02:26.160: - scene 'screen':
21:02:26.160: - source: 'Screen Capture (XSHM)' (xshm_input)
21:02:26.160: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
21:02:26.160: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
21:02:26.160: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
21:02:26.160: - scene 'camera':
21:02:26.160: - source: 'Camera Capture' (v4l2_input)
21:02:26.160: - scene 'Camera with scope':
21:02:26.160: - source: 'Camera Capture' (v4l2_input)
21:02:26.160: - source: 'border' (image_source)
21:02:26.160: - source: 'scope caputre' (v4l2_input)
21:02:26.160: - scene 'game with screen':
21:02:26.160: - source: 'Video Capture Device (V4L2)' (v4l2_input)
21:02:26.160: ------------------------------------------------
21:02:26.591: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
21:02:26.591:
21:02:27.409: Virtual camera started
21:02:27.430: ==== Virtual Camera Start ==========================================
21:02:27.431: Starting Virtual Camera output to Program
21:02:27.434: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
21:37:05.194: ---------------------------------
21:37:05.194: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
21:37:05.194: device: /dev/dri/by-path/pci-0000:0c:00.0-render
21:37:05.194: rate_control: CBR
21:37:05.194: profile: 0
21:37:05.194: level: -99
21:37:05.194: qp: 0
21:37:05.194: bitrate: 2500
21:37:05.194: maxrate: 2500
21:37:05.194: keyint: 120
21:37:05.194: width: 1920
21:37:05.194: height: 1080
21:37:05.194: b-frames: 0
21:37:05.194: ffmpeg opts:
21:37:05.194:
21:37:05.202: ---------------------------------
21:37:05.202: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo, track: 1
21:37:05.202:
21:37:05.203: ---------------------------------
21:37:05.203: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo, track: 2
21:37:05.203:
21:37:05.203: ---------------------------------
21:37:05.203: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo, track: 3
21:37:05.203:
21:37:05.203: ---------------------------------
21:37:05.203: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo, track: 4
21:37:05.203:
21:37:05.208: ==== Recording Start ===============================================
21:37:05.208: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-01 21-37-05.mkv'...
21:37:30.513: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-01 21-37-05.mkv' stopped
21:37:30.513: Output 'adv_file_output': stopping
21:37:30.513: Output 'adv_file_output': Total frames output: 755
21:37:30.513: Output 'adv_file_output': Total drawn frames: 759
21:37:30.513: ==== Recording Stop ================================================
21:40:47.900: ---------------------------------
21:40:47.900: [FFmpeg VAAPI encoder: 'advanced_video_recording'] settings:
21:40:47.900: device: /dev/dri/by-path/pci-0000:0c:00.0-render
21:40:47.900: rate_control: CBR
21:40:47.900: profile: 0
21:40:47.900: level: -99
21:40:47.900: qp: 0
21:40:47.900: bitrate: 2500
21:40:47.900: maxrate: 2500
21:40:47.900: keyint: 120
21:40:47.900: width: 1920
21:40:47.900: height: 1080
21:40:47.900: b-frames: 0
21:40:47.900: ffmpeg opts:
21:40:47.900:
21:40:47.910: ---------------------------------
21:40:47.910: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo, track: 1
21:40:47.910:
21:40:47.910: ---------------------------------
21:40:47.910: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo, track: 2
21:40:47.910:
21:40:47.910: ---------------------------------
21:40:47.910: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo, track: 3
21:40:47.910:
21:40:47.910: ---------------------------------
21:40:47.910: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo, track: 4
21:40:47.910:
21:40:47.914: ==== Recording Start ===============================================
21:40:47.914: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-01 21-40-47.mkv'...
21:41:13.916: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-01 21-40-47.mkv' stopped
21:41:13.916: Output 'adv_file_output': stopping
21:41:13.916: Output 'adv_file_output': Total frames output: 776
21:41:13.916: Output 'adv_file_output': Total drawn frames: 780
21:41:13.916: ==== Recording Stop ================================================
22:54:26.214: ==== Shutting down ==================================================
22:54:26.214: Output 'virtualcam_output': stopping
22:54:26.214: Output 'virtualcam_output': Total frames output: 201562
22:54:26.214: Output 'virtualcam_output': Total drawn frames: 201543 (201564 attempted)
22:54:26.214: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 21 (0.0%)
22:54:26.214: ==== Virtual Camera Stop ===========================================
22:54:26.215: Virtual camera stopped
22:54:26.261: pulse-input: Stopped recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor'
22:54:26.261: pulse-input: Got 268806 packets with 322567200 frames
22:54:26.261: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
22:54:26.261: pulse-input: Got 268808 packets with 322569600 frames
22:54:26.274: All scene data cleared
22:54:26.274: ------------------------------------------------
22:54:26.342: [Scripting] Total detached callbacks: 0
22:54:26.342: Freeing OBS context data
22:54:26.356: == Profiler Results =============================
22:54:26.356: run_program_init: 4514.81 ms
22:54:26.357: ┣OBSApp::AppInit: 12.882 ms
22:54:26.357: ┃ ┗OBSApp::InitLocale: 1.993 ms
22:54:26.357: ┗OBSApp::OBSInit: 923.914 ms
22:54:26.357: ┣obs_startup: 1.195 ms
22:54:26.357: ┗OBSBasic::OBSInit: 903.539 ms
22:54:26.357: ┣OBSBasic::InitBasicConfig: 0.618 ms
22:54:26.357: ┣OBSBasic::ResetAudio: 0.28 ms
22:54:26.357: ┣OBSBasic::ResetVideo: 113.619 ms
22:54:26.357: ┃ ┗obs_init_graphics: 113.011 ms
22:54:26.357: ┃ ┗shader compilation: 41.623 ms
22:54:26.357: ┣OBSBasic::InitOBSCallbacks: 0.005 ms
22:54:26.357: ┣OBSBasic::InitHotkeys: 0.028 ms
22:54:26.357: ┣obs_load_all_modules2: 513.18 ms
22:54:26.357: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
22:54:26.357: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
22:54:26.357: ┃ ┣obs_init_module(decklink.so): 0.124 ms
22:54:26.357: ┃ ┣obs_init_module(frontend-tools.so): 71.878 ms
22:54:26.357: ┃ ┣obs_init_module(image-source.so): 0.01 ms
22:54:26.357: ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms
22:54:26.357: ┃ ┣obs_init_module(linux-capture.so): 0.456 ms
22:54:26.357: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
22:54:26.357: ┃ ┣obs_init_module(linux-pipewire.so): 13.731 ms
22:54:26.357: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.006 ms
22:54:26.357: ┃ ┣obs_init_module(linux-v4l2.so): 0.111 ms
22:54:26.357: ┃ ┣obs_init_module(obs-ffmpeg.so): 9.709 ms
22:54:26.357: ┃ ┣obs_init_module(obs-filters.so): 0.025 ms
22:54:26.357: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms
22:54:26.357: ┃ ┣obs_init_module(obs-nvenc.so): 0.138 ms
22:54:26.357: ┃ ┃ ┗nvenc_check: 0.112 ms
22:54:26.357: ┃ ┣obs_init_module(obs-outputs.so): 0.004 ms
22:54:26.357: ┃ ┣obs_init_module(obs-qsv11.so): 6.369 ms
22:54:26.357: ┃ ┣obs_init_module(obs-transitions.so): 0.008 ms
22:54:26.357: ┃ ┣obs_init_module(obs-vaapi.so): 94.787 ms
22:54:26.357: ┃ ┣obs_init_module(obs-vst.so): 0.003 ms
22:54:26.357: ┃ ┣obs_init_module(obs-webrtc.so): 0.006 ms
22:54:26.357: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
22:54:26.357: ┃ ┣obs_init_module(rtmp-services.so): 0.771 ms
22:54:26.357: ┃ ┣obs_init_module(text-freetype2.so): 0.018 ms
22:54:26.357: ┃ ┗obs_init_module(wlrobs.so): 0.018 ms
22:54:26.357: ┣OBSBasic::InitService: 1.504 ms
22:54:26.357: ┣OBSBasic::ResetOutputs: 23.949 ms
22:54:26.357: ┣OBSBasic::CreateHotkeys: 0.026 ms
22:54:26.357: ┣OBSBasic::InitPrimitives: 0.085 ms
22:54:26.357: ┗OBSBasic::Load: 139.93 ms
22:54:26.357: obs_hotkey_thread(25 ms): min=0.05 ms, median=0.098 ms, max=175.256 ms, 99th percentile=9.121 ms, 99.9891% below 25 ms
22:54:26.357: audio_thread(Audio): min=0.005 ms, median=0.039 ms, max=7.335 ms, 99th percentile=0.601 ms
22:54:26.357: ┗receive_audio: min=0.001 ms, median=0.147 ms, max=6.759 ms, 99th percentile=0.38 ms, 0.0305352 calls per parent call
22:54:26.357: ┣buffer_audio: min=0 ms, median=0.001 ms, max=0.037 ms, 99th percentile=0.004 ms
22:54:26.357: ┗do_encode: min=0.04 ms, median=0.143 ms, max=6.756 ms, 99th percentile=0.283 ms, 1.06403 calls per parent call
22:54:26.357: ┣encode(Track1): min=0.121 ms, median=0.189 ms, max=0.403 ms, 99th percentile=0.305 ms, 0.25 calls per parent call
22:54:26.357: ┣send_packet: min=0 ms, median=0.001 ms, max=6.611 ms, 99th percentile=0.013 ms
22:54:26.357: ┣encode(Track2): min=0.04 ms, median=0.148 ms, max=0.297 ms, 99th percentile=0.234 ms, 0.25 calls per parent call
22:54:26.358: ┣encode(Track3): min=0.04 ms, median=0.048 ms, max=0.107 ms, 99th percentile=0.073 ms, 0.25 calls per parent call
22:54:26.358: ┗encode(Track4): min=0.118 ms, median=0.138 ms, max=0.274 ms, 99th percentile=0.199 ms, 0.25 calls per parent call
22:54:26.358: obs_graphics_thread(33.3333 ms): min=0.05 ms, median=9.876 ms, max=185.783 ms, 99th percentile=15.852 ms, 99.9851% below 33.333 ms
22:54:26.358: ┣tick_sources: min=0 ms, median=8.649 ms, max=181.73 ms, 99th percentile=14.398 ms
22:54:26.358: ┣output_frame: min=0.037 ms, median=0.734 ms, max=8.002 ms, 99th percentile=1.328 ms
22:54:26.358: ┃ ┣gs_context(video->graphics): min=0.037 ms, median=0.223 ms, max=7.608 ms, 99th percentile=0.371 ms
22:54:26.358: ┃ ┃ ┣render_video: min=0.007 ms, median=0.114 ms, max=1.721 ms, 99th percentile=0.232 ms
22:54:26.358: ┃ ┃ ┃ ┣render_main_texture: min=0.006 ms, median=0.078 ms, max=1.62 ms, 99th percentile=0.163 ms
22:54:26.358: ┃ ┃ ┃ ┣render_convert_texture: min=0.012 ms, median=0.02 ms, max=0.596 ms, 99th percentile=0.041 ms
22:54:26.358: ┃ ┃ ┃ ┣stage_output_texture: min=0.007 ms, median=0.011 ms, max=0.905 ms, 99th percentile=0.022 ms
22:54:26.358: ┃ ┃ ┃ ┗output_gpu_encoders: min=0 ms, median=0.009 ms, max=0.033 ms, 99th percentile=0.017 ms, 0.00763389 calls per parent call
22:54:26.358: ┃ ┃ ┣gs_flush: min=0.025 ms, median=0.043 ms, max=1.571 ms, 99th percentile=0.103 ms
22:54:26.358: ┃ ┃ ┗download_frame: min=0 ms, median=0.057 ms, max=7.214 ms, 99th percentile=0.095 ms
22:54:26.358: ┃ ┗output_video_data: min=0.286 ms, median=0.505 ms, max=5.625 ms, 99th percentile=0.99 ms
22:54:26.358: ┗render_displays: min=0.001 ms, median=0.277 ms, max=65.073 ms, 99th percentile=0.808 ms
22:54:26.358: video_thread(video): min=0.148 ms, median=2.375 ms, max=23.163 ms, 99th percentile=3.172 ms
22:54:26.358: obs_gpu_encode_thread(33.3333 ms): min=0.507 ms, median=0.99 ms, max=8.575 ms, 99th percentile=1.918 ms, 100% below 33.333 ms
22:54:26.358: ┣gpu_encode_frame: min=0.502 ms, median=0.979 ms, max=8.568 ms, 99th percentile=1.673 ms
22:54:26.358: ┗send_packet: min=0.001 ms, median=0.008 ms, max=2.492 ms, 99th percentile=0.022 ms
22:54:26.358: obs_gpu_encode_thread(33.3333 ms): min=0.491 ms, median=1.051 ms, max=9.027 ms, 99th percentile=2.003 ms, 100% below 33.333 ms
22:54:26.358: ┣gpu_encode_frame: min=0.487 ms, median=1.034 ms, max=9.014 ms, 99th percentile=1.886 ms
22:54:26.358: ┗send_packet: min=0.001 ms, median=0.009 ms, max=5.51 ms, 99th percentile=0.029 ms
22:54:26.358: =================================================
22:54:26.358: == Profiler Time Between Calls ==================
22:54:26.358: obs_hotkey_thread(25 ms): min=25.072 ms, median=25.166 ms, max=200.333 ms, 61.672% within ±2% of 25 ms (0% lower, 38.328% higher)
22:54:26.358: obs_graphics_thread(33.3333 ms): min=14.96 ms, median=33.333 ms, max=185.81 ms, 99.9464% within ±2% of 33.333 ms (0.031746% lower, 0.0218254% higher)
22:54:26.358: obs_gpu_encode_thread(33.3333 ms): min=30.991 ms, median=33.339 ms, max=35.198 ms, 90.7407% within ±2% of 33.333 ms (4.49735% lower, 4.7619% higher)
22:54:26.358: obs_gpu_encode_thread(33.3333 ms): min=22.968 ms, median=33.338 ms, max=45.256 ms, 89.8327% within ±2% of 33.333 ms (5.14801% lower, 5.01931% higher)
22:54:26.358: =================================================
22:54:26.407: Number of memory leaks: 0

View file

@ -0,0 +1,161 @@
15:58:00.679: Using EGL/X11
15:58:00.679: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
15:58:00.679: CPU Speed: 4268.453MHz
15:58:00.679: Physical Cores: 8, Logical Cores: 16
15:58:00.679: Physical Memory: 31996MB Total, 3756MB Free
15:58:00.679: Kernel Version: Linux 6.12.7-zen1-1-zen
15:58:00.679: Distribution: "Arch Linux" Unknown
15:58:00.679: Session Type: tty
15:58:00.679: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
15:58:00.680: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
15:58:00.680: Portable mode: false
15:58:00.709: OBS 31.0.0 (linux)
15:58:00.709: ---------------------------------
15:58:00.709: ---------------------------------
15:58:00.710: audio settings reset:
15:58:00.710: samples per sec: 48000
15:58:00.710: speakers: 2
15:58:00.710: max buffering: 960 milliseconds
15:58:00.710: buffering type: dynamically increasing
15:58:00.711: ---------------------------------
15:58:00.711: Initializing OpenGL...
15:58:00.826: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
15:58:00.826: OpenGL loaded successfully, version 3.3.0 NVIDIA 565.77, shading language 3.30 NVIDIA via Cg compiler
15:58:00.952: ---------------------------------
15:58:00.952: video settings reset:
15:58:00.952: base resolution: 1920x1080
15:58:00.952: output resolution: 1920x1080
15:58:00.952: downscale filter: Bicubic
15:58:00.952: fps: 30/1
15:58:00.952: format: NV12
15:58:00.952: YUV mode: Rec. 709/Partial
15:58:00.952: NV12 texture support enabled
15:58:00.952: P010 texture support not available
15:58:01.002: Audio monitoring device:
15:58:01.002: name: Default
15:58:01.002: id: default
15:58:01.004: ---------------------------------
15:58:01.015: Failed to load 'en-US' text for module: 'decklink-captions.so'
15:58:01.025: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
15:58:01.035: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
15:58:01.035: Failed to initialize module 'decklink.so'
15:58:01.186: [pipewire] No capture sources available
15:58:01.253: VAAPI: Failed to initialize display in vaapi_device_h264_supported
15:58:01.253: FFmpeg VAAPI H264 encoding not supported
15:58:01.253: VAAPI: Failed to initialize display in vaapi_device_av1_supported
15:58:01.253: FFmpeg VAAPI AV1 encoding not supported
15:58:01.253: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
15:58:01.253: FFmpeg VAAPI HEVC encoding not supported
15:58:01.897: [obs-nvenc] NVENC version: 12.1 (compiled) / 12.2 (driver), CUDA driver version: 12.70, AV1 supported: false
15:58:01.955: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
15:58:02.093: ---------------------------------
15:58:02.093: Loaded Modules:
15:58:02.093: wlrobs.so
15:58:02.093: text-freetype2.so
15:58:02.093: rtmp-services.so
15:58:02.093: obs-x264.so
15:58:02.093: obs-webrtc.so
15:58:02.093: obs-vst.so
15:58:02.093: obs-vaapi.so
15:58:02.093: obs-transitions.so
15:58:02.093: obs-qsv11.so
15:58:02.093: obs-outputs.so
15:58:02.093: obs-nvenc.so
15:58:02.093: obs-libfdk.so
15:58:02.093: obs-filters.so
15:58:02.093: obs-ffmpeg.so
15:58:02.093: linux-v4l2.so
15:58:02.093: linux-pulseaudio.so
15:58:02.093: linux-pipewire.so
15:58:02.093: linux-jack.so
15:58:02.093: linux-capture.so
15:58:02.093: linux-alsa.so
15:58:02.093: image-source.so
15:58:02.093: frontend-tools.so
15:58:02.093: decklink-output-ui.so
15:58:02.093: decklink-captions.so
15:58:02.093: ---------------------------------
15:58:02.093: ---------------------------------
15:58:02.093: Available Encoders:
15:58:02.093: Video Encoders:
15:58:02.093: - ffmpeg_svt_av1 (SVT-AV1)
15:58:02.093: - ffmpeg_aom_av1 (AOM AV1)
15:58:02.093: - obs_nvenc_h264_tex (NVIDIA NVENC H.264)
15:58:02.093: - obs_nvenc_hevc_tex (NVIDIA NVENC HEVC)
15:58:02.093: - obs_x264 (x264)
15:58:02.093: Audio Encoders:
15:58:02.093: - ffmpeg_aac (FFmpeg AAC)
15:58:02.093: - ffmpeg_opus (FFmpeg Opus)
15:58:02.093: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
15:58:02.093: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
15:58:02.093: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
15:58:02.093: - ffmpeg_alac (FFmpeg ALAC (24-bit))
15:58:02.093: - ffmpeg_flac (FFmpeg FLAC (16-bit))
15:58:02.093: - libfdk_aac (libfdk AAC)
15:58:02.093: ==== Startup complete ===============================================
15:58:02.095: Encoder ID 'av1_ffmpeg_vaapi_tex' not found
15:58:02.095: Encoder ID 'obs-va-vah264lpenc' not found
15:58:02.139: All scene data cleared
15:58:02.139: ------------------------------------------------
15:58:02.145: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:58:02.145: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
15:58:02.145: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
15:58:02.145: [Loaded global audio device]: 'Desktop Audio'
15:58:02.145: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:58:02.146: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
15:58:02.146: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
15:58:02.146: [Loaded global audio device]: 'Mic/Aux'
15:58:02.146: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:58:02.146: pulse-input: An error occurred while getting the source info!
15:58:02.146: [Loaded global audio device]: 'HDMI Capture'
15:58:02.146: v4l2-input: Start capture from /dev/video0
15:58:02.146: v4l2-input: Unable to open device
15:58:02.146: v4l2-input: Initialization failed, errno: No such file or directory
15:58:02.147: xshm-input: Geometry 3840x2160 @ 0,0
15:58:02.147: v4l2-input: Start capture from /dev/video0
15:58:02.147: v4l2-input: Unable to open device
15:58:02.147: v4l2-input: Initialization failed, errno: No such file or directory
15:58:02.300: v4l2-input: Start capture from /dev/video0
15:58:02.300: v4l2-input: Unable to open device
15:58:02.300: v4l2-input: Initialization failed, errno: No such file or directory
15:58:02.301: v4l2-input: Start capture from /dev/video4
15:58:02.301: v4l2-input: Unable to open device
15:58:02.301: v4l2-input: Initialization failed, errno: No such file or directory
15:58:02.301: xshm-input: Geometry 3840x2160 @ 0,0
15:58:02.302: Source ID 'pipewire-desktop-capture-source' not found
15:58:02.302: Failed to create source 'Screen Capture (PipeWire)'!
15:58:02.305: Switched to scene 'screen'
15:58:02.305: ------------------------------------------------
15:58:02.305: Loaded scenes:
15:58:02.305: - scene 'Screen with camera':
15:58:02.305: - source: 'Screen Capture' (xshm_input)
15:58:02.305: - source: 'Camera Capture' (v4l2_input)
15:58:02.305: - source: 'border' (image_source)
15:58:02.305: - scene 'game with camera':
15:58:02.305: - source: 'Camera Capture' (v4l2_input)
15:58:02.305: - source: 'border' (image_source)
15:58:02.305: - source: 'capture acrd' (v4l2_input)
15:58:02.305: - scene 'game':
15:58:02.305: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:58:02.305: - scene 'game 4:3':
15:58:02.305: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:58:02.305: - scene 'screen':
15:58:02.305: - source: 'Screen Capture (XSHM)' (xshm_input)
15:58:02.305: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
15:58:02.305: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
15:58:02.305: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
15:58:02.305: - scene 'camera':
15:58:02.305: - source: 'Camera Capture' (v4l2_input)
15:58:02.305: - scene 'Camera with scope':
15:58:02.305: - source: 'Camera Capture' (v4l2_input)
15:58:02.305: - source: 'border' (image_source)
15:58:02.305: - source: 'scope caputre' (v4l2_input)
15:58:02.305: - scene 'game with screen':
15:58:02.305: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:58:02.305: ------------------------------------------------
15:58:02.694: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
15:58:02.694:
15:58:03.394: Virtual camera started
15:58:03.415: ==== Virtual Camera Start ==========================================
15:58:03.415: Starting Virtual Camera output to Program
15:58:03.418: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop

View file

@ -0,0 +1,245 @@
23:10:43.978: [Safe Mode] Unclean shutdown detected!
23:10:45.431: [Safe Mode] User elected to launch normally.
23:10:45.431: Using EGL/X11
23:10:45.432: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
23:10:45.432: CPU Speed: 3903.152MHz
23:10:45.432: Physical Cores: 8, Logical Cores: 16
23:10:45.432: Physical Memory: 31996MB Total, 11383MB Free
23:10:45.432: Kernel Version: Linux 6.12.7-zen1-1-zen
23:10:45.432: Distribution: "Arch Linux" Unknown
23:10:45.432: Session Type: tty
23:10:45.432: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
23:10:45.433: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
23:10:45.433: Portable mode: false
23:10:45.449: OBS 31.0.0 (linux)
23:10:45.449: ---------------------------------
23:10:45.450: ---------------------------------
23:10:45.450: audio settings reset:
23:10:45.450: samples per sec: 48000
23:10:45.450: speakers: 2
23:10:45.450: max buffering: 960 milliseconds
23:10:45.450: buffering type: dynamically increasing
23:10:45.452: ---------------------------------
23:10:45.452: Initializing OpenGL...
23:10:45.571: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
23:10:45.571: OpenGL loaded successfully, version 3.3.0 NVIDIA 565.77, shading language 3.30 NVIDIA via Cg compiler
23:10:45.598: ---------------------------------
23:10:45.598: video settings reset:
23:10:45.598: base resolution: 1920x1080
23:10:45.598: output resolution: 1920x1080
23:10:45.598: downscale filter: Bicubic
23:10:45.598: fps: 30/1
23:10:45.598: format: NV12
23:10:45.598: YUV mode: Rec. 709/Partial
23:10:45.598: NV12 texture support enabled
23:10:45.598: P010 texture support not available
23:10:45.599: Audio monitoring device:
23:10:45.599: name: Default
23:10:45.599: id: default
23:10:45.600: ---------------------------------
23:10:45.609: Failed to load 'en-US' text for module: 'decklink-captions.so'
23:10:45.618: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
23:10:45.626: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
23:10:45.626: Failed to initialize module 'decklink.so'
23:10:45.766: [pipewire] No capture sources available
23:10:45.828: VAAPI: Failed to initialize display in vaapi_device_h264_supported
23:10:45.828: FFmpeg VAAPI H264 encoding not supported
23:10:45.828: VAAPI: Failed to initialize display in vaapi_device_av1_supported
23:10:45.828: FFmpeg VAAPI AV1 encoding not supported
23:10:45.829: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
23:10:45.829: FFmpeg VAAPI HEVC encoding not supported
23:10:46.340: [obs-nvenc] NVENC version: 12.1 (compiled) / 12.2 (driver), CUDA driver version: 12.70, AV1 supported: false
23:10:46.404: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
23:10:46.552: ---------------------------------
23:10:46.552: Loaded Modules:
23:10:46.552: wlrobs.so
23:10:46.552: text-freetype2.so
23:10:46.552: rtmp-services.so
23:10:46.552: obs-x264.so
23:10:46.552: obs-webrtc.so
23:10:46.552: obs-vst.so
23:10:46.552: obs-vaapi.so
23:10:46.552: obs-transitions.so
23:10:46.552: obs-qsv11.so
23:10:46.552: obs-outputs.so
23:10:46.552: obs-nvenc.so
23:10:46.552: obs-libfdk.so
23:10:46.552: obs-filters.so
23:10:46.552: obs-ffmpeg.so
23:10:46.552: linux-v4l2.so
23:10:46.552: linux-pulseaudio.so
23:10:46.552: linux-pipewire.so
23:10:46.552: linux-jack.so
23:10:46.552: linux-capture.so
23:10:46.552: linux-alsa.so
23:10:46.552: image-source.so
23:10:46.552: frontend-tools.so
23:10:46.552: decklink-output-ui.so
23:10:46.552: decklink-captions.so
23:10:46.552: ---------------------------------
23:10:46.553: ---------------------------------
23:10:46.553: Available Encoders:
23:10:46.553: Video Encoders:
23:10:46.553: - ffmpeg_svt_av1 (SVT-AV1)
23:10:46.553: - ffmpeg_aom_av1 (AOM AV1)
23:10:46.553: - obs_nvenc_h264_tex (NVIDIA NVENC H.264)
23:10:46.553: - obs_nvenc_hevc_tex (NVIDIA NVENC HEVC)
23:10:46.553: - obs_x264 (x264)
23:10:46.553: Audio Encoders:
23:10:46.553: - ffmpeg_aac (FFmpeg AAC)
23:10:46.553: - ffmpeg_opus (FFmpeg Opus)
23:10:46.553: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
23:10:46.553: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
23:10:46.553: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
23:10:46.553: - ffmpeg_alac (FFmpeg ALAC (24-bit))
23:10:46.553: - ffmpeg_flac (FFmpeg FLAC (16-bit))
23:10:46.553: - libfdk_aac (libfdk AAC)
23:10:46.553: ==== Startup complete ===============================================
23:10:46.555: Encoder ID 'av1_ffmpeg_vaapi_tex' not found
23:10:46.555: Encoder ID 'obs-va-vah264lpenc' not found
23:10:46.581: All scene data cleared
23:10:46.581: ------------------------------------------------
23:10:46.585: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
23:10:46.585: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
23:10:46.585: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
23:10:46.585: [Loaded global audio device]: 'Desktop Audio'
23:10:46.586: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
23:10:46.586: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
23:10:46.586: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
23:10:46.586: [Loaded global audio device]: 'Mic/Aux'
23:10:46.586: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
23:10:46.586: pulse-input: An error occurred while getting the source info!
23:10:46.586: [Loaded global audio device]: 'HDMI Capture'
23:10:46.586: v4l2-input: Start capture from /dev/video0
23:10:46.586: v4l2-input: Unable to open device
23:10:46.586: v4l2-input: Initialization failed, errno: No such file or directory
23:10:46.587: xshm-input: Geometry 3840x2160 @ 0,0
23:10:46.587: v4l2-input: Start capture from /dev/video0
23:10:46.587: v4l2-input: Unable to open device
23:10:46.587: v4l2-input: Initialization failed, errno: No such file or directory
23:10:46.738: v4l2-input: Start capture from /dev/video0
23:10:46.738: v4l2-input: Unable to open device
23:10:46.738: v4l2-input: Initialization failed, errno: No such file or directory
23:10:46.738: v4l2-input: Start capture from /dev/video4
23:10:46.738: v4l2-input: Unable to open device
23:10:46.738: v4l2-input: Initialization failed, errno: No such file or directory
23:10:46.739: xshm-input: Geometry 3840x2160 @ 0,0
23:10:46.739: Source ID 'pipewire-desktop-capture-source' not found
23:10:46.739: Failed to create source 'Screen Capture (PipeWire)'!
23:10:46.742: Switched to scene 'screen'
23:10:46.742: ------------------------------------------------
23:10:46.742: Loaded scenes:
23:10:46.742: - scene 'Screen with camera':
23:10:46.742: - source: 'Screen Capture' (xshm_input)
23:10:46.742: - source: 'Camera Capture' (v4l2_input)
23:10:46.742: - source: 'border' (image_source)
23:10:46.742: - scene 'game with camera':
23:10:46.742: - source: 'Camera Capture' (v4l2_input)
23:10:46.742: - source: 'border' (image_source)
23:10:46.742: - source: 'capture acrd' (v4l2_input)
23:10:46.742: - scene 'game':
23:10:46.742: - source: 'Video Capture Device (V4L2)' (v4l2_input)
23:10:46.742: - scene 'game 4:3':
23:10:46.742: - source: 'Video Capture Device (V4L2)' (v4l2_input)
23:10:46.742: - scene 'screen':
23:10:46.742: - source: 'Screen Capture (XSHM)' (xshm_input)
23:10:46.742: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
23:10:46.742: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
23:10:46.742: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
23:10:46.742: - scene 'camera':
23:10:46.742: - source: 'Camera Capture' (v4l2_input)
23:10:46.742: - scene 'Camera with scope':
23:10:46.742: - source: 'Camera Capture' (v4l2_input)
23:10:46.742: - source: 'border' (image_source)
23:10:46.742: - source: 'scope caputre' (v4l2_input)
23:10:46.742: - scene 'game with screen':
23:10:46.742: - source: 'Video Capture Device (V4L2)' (v4l2_input)
23:10:46.742: ------------------------------------------------
23:10:47.136: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
23:10:47.136:
23:10:47.656: Virtual camera started
23:10:47.677: ==== Virtual Camera Start ==========================================
23:10:47.677: Starting Virtual Camera output to Program
23:10:47.691: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
14:04:54.856: ==== Shutting down ==================================================
14:04:54.866: Output 'virtualcam_output': stopping
14:04:54.866: Output 'virtualcam_output': Total frames output: 1609415
14:04:54.866: Output 'virtualcam_output': Total drawn frames: 1608855 (1609415 attempted)
14:04:54.866: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 560 (0.0%)
14:04:54.866: ==== Virtual Camera Stop ===========================================
14:04:54.866: Virtual camera stopped
14:04:55.027: pulse-input: Stopped recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor'
14:04:55.027: pulse-input: Got 2145935 packets with 2575122000 frames
14:04:55.027: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
14:04:55.028: pulse-input: Got 2145937 packets with 2575124400 frames
14:04:55.073: All scene data cleared
14:04:55.073: ------------------------------------------------
14:04:55.249: [Scripting] Total detached callbacks: 0
14:04:55.249: Freeing OBS context data
14:04:55.322: == Profiler Results =============================
14:04:55.322: run_program_init: 2889.7 ms
14:04:55.322: ┣OBSApp::AppInit: 12.794 ms
14:04:55.322: ┃ ┗OBSApp::InitLocale: 2.135 ms
14:04:55.322: ┗OBSApp::OBSInit: 1385.67 ms
14:04:55.322: ┣obs_startup: 1.169 ms
14:04:55.322: ┗OBSBasic::OBSInit: 1367.71 ms
14:04:55.322: ┣OBSBasic::InitBasicConfig: 0.591 ms
14:04:55.322: ┣OBSBasic::ResetAudio: 0.28 ms
14:04:55.322: ┣OBSBasic::ResetVideo: 148.292 ms
14:04:55.322: ┃ ┗obs_init_graphics: 147.827 ms
14:04:55.322: ┃ ┗shader compilation: 26.72 ms
14:04:55.323: ┣OBSBasic::InitOBSCallbacks: 0.003 ms
14:04:55.323: ┣OBSBasic::InitHotkeys: 0.018 ms
14:04:55.323: ┣obs_load_all_modules2: 951.986 ms
14:04:55.323: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
14:04:55.323: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
14:04:55.323: ┃ ┣obs_init_module(decklink.so): 0.138 ms
14:04:55.323: ┃ ┣obs_init_module(frontend-tools.so): 71.597 ms
14:04:55.323: ┃ ┣obs_init_module(image-source.so): 0.01 ms
14:04:55.323: ┃ ┣obs_init_module(linux-alsa.so): 0.003 ms
14:04:55.323: ┃ ┣obs_init_module(linux-capture.so): 0.416 ms
14:04:55.323: ┃ ┣obs_init_module(linux-jack.so): 0.001 ms
14:04:55.323: ┃ ┣obs_init_module(linux-pipewire.so): 3.297 ms
14:04:55.323: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.005 ms
14:04:55.323: ┃ ┣obs_init_module(linux-v4l2.so): 0.115 ms
14:04:55.323: ┃ ┣obs_init_module(obs-ffmpeg.so): 0.44 ms
14:04:55.323: ┃ ┣obs_init_module(obs-filters.so): 0.025 ms
14:04:55.323: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms
14:04:55.323: ┃ ┣obs_init_module(obs-nvenc.so): 474.88 ms
14:04:55.323: ┃ ┃ ┗nvenc_check: 474.87 ms
14:04:55.323: ┃ ┣obs_init_module(obs-outputs.so): 0.005 ms
14:04:55.323: ┃ ┣obs_init_module(obs-qsv11.so): 1.022 ms
14:04:55.323: ┃ ┣obs_init_module(obs-transitions.so): 0.006 ms
14:04:55.323: ┃ ┣obs_init_module(obs-vaapi.so): 65.838 ms
14:04:55.323: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
14:04:55.323: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
14:04:55.323: ┃ ┣obs_init_module(obs-x264.so): 0.001 ms
14:04:55.323: ┃ ┣obs_init_module(rtmp-services.so): 0.761 ms
14:04:55.323: ┃ ┣obs_init_module(text-freetype2.so): 0.016 ms
14:04:55.323: ┃ ┗obs_init_module(wlrobs.so): 0.005 ms
14:04:55.323: ┣OBSBasic::InitService: 1.591 ms
14:04:55.323: ┣OBSBasic::ResetOutputs: 0.214 ms
14:04:55.323: ┣OBSBasic::CreateHotkeys: 0.025 ms
14:04:55.323: ┣OBSBasic::InitPrimitives: 0.158 ms
14:04:55.323: ┗OBSBasic::Load: 191.232 ms
14:04:55.323: obs_hotkey_thread(25 ms): min=0.047 ms, median=0.081 ms, max=607.77 ms, 99th percentile=9.896 ms, 99.981% below 25 ms
14:04:55.323: audio_thread(Audio): min=0.003 ms, median=0.031 ms, max=27.418 ms, 99th percentile=0.152 ms
14:04:55.323: obs_graphics_thread(33.3333 ms): min=0.096 ms, median=9.096 ms, max=622.957 ms, 99th percentile=20.595 ms, 99.9699% below 33.333 ms
14:04:55.323: ┣tick_sources: min=0 ms, median=8.367 ms, max=621.277 ms, 99th percentile=19.73 ms
14:04:55.323: ┣output_frame: min=0.04 ms, median=0.614 ms, max=36.253 ms, 99th percentile=1.008 ms
14:04:55.323: ┃ ┣gs_context(video->graphics): min=0.04 ms, median=0.259 ms, max=35.864 ms, 99th percentile=0.364 ms
14:04:55.323: ┃ ┃ ┣render_video: min=0.018 ms, median=0.214 ms, max=15.726 ms, 99th percentile=0.305 ms
14:04:55.323: ┃ ┃ ┃ ┣render_main_texture: min=0.014 ms, median=0.14 ms, max=4.261 ms, 99th percentile=0.2 ms
14:04:55.323: ┃ ┃ ┃ ┣render_convert_texture: min=0.03 ms, median=0.041 ms, max=1.063 ms, 99th percentile=0.066 ms
14:04:55.323: ┃ ┃ ┃ ┗stage_output_texture: min=0.021 ms, median=0.024 ms, max=15.45 ms, 99th percentile=0.052 ms
14:04:55.323: ┃ ┃ ┣gs_flush: min=0.003 ms, median=0.004 ms, max=35.525 ms, 99th percentile=0.006 ms
14:04:55.323: ┃ ┃ ┗download_frame: min=0 ms, median=0.003 ms, max=0.168 ms, 99th percentile=0.004 ms
14:04:55.323: ┃ ┗output_video_data: min=0.261 ms, median=0.352 ms, max=4.057 ms, 99th percentile=0.675 ms
14:04:55.323: ┗render_displays: min=0.017 ms, median=0.022 ms, max=91.332 ms, 99th percentile=0.323 ms
14:04:55.323: video_thread(video): min=1.914 ms, median=2.227 ms, max=62.911 ms, 99th percentile=2.887 ms
14:04:55.323: =================================================
14:04:55.323: == Profiler Time Between Calls ==================
14:04:55.323: obs_hotkey_thread(25 ms): min=25.066 ms, median=25.147 ms, max=632.847 ms, 90.0887% within ±2% of 25 ms (0% lower, 9.91126% higher)
14:04:55.324: obs_graphics_thread(33.3333 ms): min=9.708 ms, median=33.333 ms, max=622.966 ms, 99.9477% within ±2% of 33.333 ms (0.0198891% lower, 0.0324441% higher)
14:04:55.324: =================================================
14:04:55.396: Number of memory leaks: 0

View file

@ -0,0 +1,252 @@
14:12:23.021: Using EGL/X11
14:12:23.021: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
14:12:23.021: CPU Speed: 4216.363MHz
14:12:23.021: Physical Cores: 8, Logical Cores: 16
14:12:23.021: Physical Memory: 31996MB Total, 2123MB Free
14:12:23.021: Kernel Version: Linux 6.12.7-zen1-1-zen
14:12:23.021: Distribution: "Arch Linux" Unknown
14:12:23.021: Session Type: tty
14:12:23.021: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
14:12:23.022: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
14:12:23.022: Portable mode: false
14:12:23.051: OBS 31.0.0 (linux)
14:12:23.051: ---------------------------------
14:12:23.052: ---------------------------------
14:12:23.052: audio settings reset:
14:12:23.052: samples per sec: 48000
14:12:23.052: speakers: 2
14:12:23.052: max buffering: 960 milliseconds
14:12:23.052: buffering type: dynamically increasing
14:12:23.053: ---------------------------------
14:12:23.053: Initializing OpenGL...
14:12:23.186: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
14:12:23.186: OpenGL loaded successfully, version 3.3.0 NVIDIA 565.77, shading language 3.30 NVIDIA via Cg compiler
14:12:23.212: ---------------------------------
14:12:23.213: video settings reset:
14:12:23.213: base resolution: 1920x1080
14:12:23.213: output resolution: 1920x1080
14:12:23.213: downscale filter: Bicubic
14:12:23.213: fps: 30/1
14:12:23.213: format: NV12
14:12:23.213: YUV mode: Rec. 709/Partial
14:12:23.213: NV12 texture support enabled
14:12:23.213: P010 texture support not available
14:12:23.213: Audio monitoring device:
14:12:23.213: name: Default
14:12:23.213: id: default
14:12:23.214: ---------------------------------
14:12:23.223: Failed to load 'en-US' text for module: 'decklink-captions.so'
14:12:23.232: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
14:12:23.240: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
14:12:23.240: Failed to initialize module 'decklink.so'
14:12:23.376: [pipewire] No capture sources available
14:12:23.442: VAAPI: Failed to initialize display in vaapi_device_h264_supported
14:12:23.443: FFmpeg VAAPI H264 encoding not supported
14:12:23.443: VAAPI: Failed to initialize display in vaapi_device_av1_supported
14:12:23.443: FFmpeg VAAPI AV1 encoding not supported
14:12:23.443: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
14:12:23.443: FFmpeg VAAPI HEVC encoding not supported
14:12:24.064: [obs-nvenc] NVENC version: 12.1 (compiled) / 12.2 (driver), CUDA driver version: 12.70, AV1 supported: false
14:12:24.117: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
14:12:24.204: ---------------------------------
14:12:24.204: Loaded Modules:
14:12:24.204: wlrobs.so
14:12:24.204: text-freetype2.so
14:12:24.204: rtmp-services.so
14:12:24.204: obs-x264.so
14:12:24.204: obs-webrtc.so
14:12:24.204: obs-vst.so
14:12:24.204: obs-vaapi.so
14:12:24.204: obs-transitions.so
14:12:24.204: obs-qsv11.so
14:12:24.204: obs-outputs.so
14:12:24.204: obs-nvenc.so
14:12:24.204: obs-libfdk.so
14:12:24.204: obs-filters.so
14:12:24.204: obs-ffmpeg.so
14:12:24.204: linux-v4l2.so
14:12:24.204: linux-pulseaudio.so
14:12:24.204: linux-pipewire.so
14:12:24.204: linux-jack.so
14:12:24.204: linux-capture.so
14:12:24.204: linux-alsa.so
14:12:24.204: image-source.so
14:12:24.204: frontend-tools.so
14:12:24.204: decklink-output-ui.so
14:12:24.204: decklink-captions.so
14:12:24.204: ---------------------------------
14:12:24.204: ---------------------------------
14:12:24.204: Available Encoders:
14:12:24.204: Video Encoders:
14:12:24.204: - ffmpeg_svt_av1 (SVT-AV1)
14:12:24.204: - ffmpeg_aom_av1 (AOM AV1)
14:12:24.204: - obs_nvenc_h264_tex (NVIDIA NVENC H.264)
14:12:24.204: - obs_nvenc_hevc_tex (NVIDIA NVENC HEVC)
14:12:24.204: - obs_x264 (x264)
14:12:24.204: Audio Encoders:
14:12:24.204: - ffmpeg_aac (FFmpeg AAC)
14:12:24.204: - ffmpeg_opus (FFmpeg Opus)
14:12:24.204: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
14:12:24.204: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
14:12:24.204: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
14:12:24.204: - ffmpeg_alac (FFmpeg ALAC (24-bit))
14:12:24.204: - ffmpeg_flac (FFmpeg FLAC (16-bit))
14:12:24.204: - libfdk_aac (libfdk AAC)
14:12:24.204: ==== Startup complete ===============================================
14:12:24.206: Encoder ID 'av1_ffmpeg_vaapi_tex' not found
14:12:24.206: Encoder ID 'obs-va-vah264lpenc' not found
14:12:24.247: All scene data cleared
14:12:24.247: ------------------------------------------------
14:12:24.251: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
14:12:24.251: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
14:12:24.251: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
14:12:24.251: [Loaded global audio device]: 'Desktop Audio'
14:12:24.252: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
14:12:24.252: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
14:12:24.252: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
14:12:24.252: [Loaded global audio device]: 'Mic/Aux'
14:12:24.252: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
14:12:24.252: pulse-input: An error occurred while getting the source info!
14:12:24.252: [Loaded global audio device]: 'HDMI Capture'
14:12:24.253: v4l2-input: Start capture from /dev/video0
14:12:24.253: v4l2-input: Unable to open device
14:12:24.253: v4l2-input: Initialization failed, errno: No such file or directory
14:12:24.253: xshm-input: Geometry 3840x2160 @ 0,0
14:12:24.253: v4l2-input: Start capture from /dev/video0
14:12:24.253: v4l2-input: Unable to open device
14:12:24.254: v4l2-input: Initialization failed, errno: No such file or directory
14:12:24.370: v4l2-input: Start capture from /dev/video0
14:12:24.370: v4l2-input: Unable to open device
14:12:24.370: v4l2-input: Initialization failed, errno: No such file or directory
14:12:24.370: v4l2-input: Start capture from /dev/video4
14:12:24.370: v4l2-input: Unable to open device
14:12:24.370: v4l2-input: Initialization failed, errno: No such file or directory
14:12:24.371: xshm-input: Geometry 3840x2160 @ 0,0
14:12:24.371: Source ID 'pipewire-desktop-capture-source' not found
14:12:24.371: Failed to create source 'Screen Capture (PipeWire)'!
14:12:24.375: Switched to scene 'screen'
14:12:24.375: ------------------------------------------------
14:12:24.375: Loaded scenes:
14:12:24.375: - scene 'Screen with camera':
14:12:24.375: - source: 'Screen Capture' (xshm_input)
14:12:24.375: - source: 'Camera Capture' (v4l2_input)
14:12:24.375: - source: 'border' (image_source)
14:12:24.375: - scene 'game with camera':
14:12:24.375: - source: 'Camera Capture' (v4l2_input)
14:12:24.375: - source: 'border' (image_source)
14:12:24.375: - source: 'capture acrd' (v4l2_input)
14:12:24.376: - scene 'game':
14:12:24.376: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:12:24.376: - scene 'game 4:3':
14:12:24.376: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:12:24.376: - scene 'screen':
14:12:24.376: - source: 'Screen Capture (XSHM)' (xshm_input)
14:12:24.376: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
14:12:24.376: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
14:12:24.376: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
14:12:24.376: - scene 'camera':
14:12:24.376: - source: 'Camera Capture' (v4l2_input)
14:12:24.376: - scene 'Camera with scope':
14:12:24.376: - source: 'Camera Capture' (v4l2_input)
14:12:24.376: - source: 'border' (image_source)
14:12:24.376: - source: 'scope caputre' (v4l2_input)
14:12:24.376: - scene 'game with screen':
14:12:24.376: - source: 'Video Capture Device (V4L2)' (v4l2_input)
14:12:24.376: ------------------------------------------------
14:12:24.801: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
14:12:24.801:
14:12:26.300: Virtual camera started
14:12:26.323: ==== Virtual Camera Start ==========================================
14:12:26.323: Starting Virtual Camera output to Program
14:12:26.336: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
14:12:36.204: Output 'virtualcam_output': stopping
14:12:36.204: Output 'virtualcam_output': Total frames output: 296
14:12:36.204: Output 'virtualcam_output': Total drawn frames: 296
14:12:36.204: ==== Virtual Camera Stop ===========================================
14:12:36.204: Virtual camera stopped
14:12:38.031: Virtual camera started
14:12:38.032: ==== Virtual Camera Start ==========================================
14:12:38.032: Starting Virtual Camera output to Program
14:12:38.035: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
14:40:05.456: ==== Shutting down ==================================================
14:40:05.459: Output 'virtualcam_output': stopping
14:40:05.459: Output 'virtualcam_output': Total frames output: 49421
14:40:05.459: Output 'virtualcam_output': Total drawn frames: 49419 (49423 attempted)
14:40:05.459: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 4 (0.0%)
14:40:05.459: ==== Virtual Camera Stop ===========================================
14:40:05.459: Virtual camera stopped
14:40:05.526: pulse-input: Stopped recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor'
14:40:05.526: pulse-input: Got 66449 packets with 79738800 frames
14:40:05.527: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
14:40:05.527: pulse-input: Got 66449 packets with 79738800 frames
14:40:05.540: All scene data cleared
14:40:05.540: ------------------------------------------------
14:40:05.650: [Scripting] Total detached callbacks: 0
14:40:05.650: Freeing OBS context data
14:40:05.674: == Profiler Results =============================
14:40:05.674: run_program_init: 1483.84 ms
14:40:05.674: ┣OBSApp::AppInit: 10.617 ms
14:40:05.674: ┃ ┗OBSApp::InitLocale: 0.798 ms
14:40:05.674: ┗OBSApp::OBSInit: 1434.16 ms
14:40:05.674: ┣obs_startup: 1.105 ms
14:40:05.674: ┗OBSBasic::OBSInit: 1403.95 ms
14:40:05.674: ┣OBSBasic::InitBasicConfig: 0.854 ms
14:40:05.674: ┣OBSBasic::ResetAudio: 0.283 ms
14:40:05.674: ┣OBSBasic::ResetVideo: 161.044 ms
14:40:05.674: ┃ ┗obs_init_graphics: 160.543 ms
14:40:05.674: ┃ ┗shader compilation: 25.669 ms
14:40:05.674: ┣OBSBasic::InitOBSCallbacks: 0.003 ms
14:40:05.674: ┣OBSBasic::InitHotkeys: 0.017 ms
14:40:05.674: ┣obs_load_all_modules2: 989.612 ms
14:40:05.674: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
14:40:05.674: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
14:40:05.674: ┃ ┣obs_init_module(decklink.so): 0.215 ms
14:40:05.674: ┃ ┣obs_init_module(frontend-tools.so): 71.414 ms
14:40:05.674: ┃ ┣obs_init_module(image-source.so): 0.011 ms
14:40:05.674: ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms
14:40:05.674: ┃ ┣obs_init_module(linux-capture.so): 0.361 ms
14:40:05.674: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
14:40:05.674: ┃ ┣obs_init_module(linux-pipewire.so): 3.635 ms
14:40:05.674: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.008 ms
14:40:05.674: ┃ ┣obs_init_module(linux-v4l2.so): 0.12 ms
14:40:05.674: ┃ ┣obs_init_module(obs-ffmpeg.so): 0.491 ms
14:40:05.674: ┃ ┣obs_init_module(obs-filters.so): 0.024 ms
14:40:05.674: ┃ ┣obs_init_module(obs-libfdk.so): 0 ms
14:40:05.674: ┃ ┣obs_init_module(obs-nvenc.so): 591.578 ms
14:40:05.675: ┃ ┃ ┗nvenc_check: 591.567 ms
14:40:05.675: ┃ ┣obs_init_module(obs-outputs.so): 0.004 ms
14:40:05.675: ┃ ┣obs_init_module(obs-qsv11.so): 0.942 ms
14:40:05.675: ┃ ┣obs_init_module(obs-transitions.so): 0.007 ms
14:40:05.675: ┃ ┣obs_init_module(obs-vaapi.so): 7.343 ms
14:40:05.675: ┃ ┣obs_init_module(obs-vst.so): 0.004 ms
14:40:05.675: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
14:40:05.675: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
14:40:05.675: ┃ ┣obs_init_module(rtmp-services.so): 0.568 ms
14:40:05.675: ┃ ┣obs_init_module(text-freetype2.so): 0.016 ms
14:40:05.675: ┃ ┗obs_init_module(wlrobs.so): 0.007 ms
14:40:05.675: ┣OBSBasic::InitService: 1.147 ms
14:40:05.675: ┣OBSBasic::ResetOutputs: 0.187 ms
14:40:05.675: ┣OBSBasic::CreateHotkeys: 0.028 ms
14:40:05.675: ┣OBSBasic::InitPrimitives: 0.233 ms
14:40:05.675: ┗OBSBasic::Load: 173.922 ms
14:40:05.675: obs_hotkey_thread(25 ms): min=0.049 ms, median=0.104 ms, max=107.403 ms, 99th percentile=13.07 ms, 99.9881% below 25 ms
14:40:05.675: audio_thread(Audio): min=0.004 ms, median=0.04 ms, max=2.646 ms, 99th percentile=0.519 ms
14:40:05.675: obs_graphics_thread(33.3333 ms): min=0.077 ms, median=10.993 ms, max=161.448 ms, 99th percentile=25.293 ms, 99.9639% below 33.333 ms
14:40:05.675: ┣tick_sources: min=0 ms, median=10.009 ms, max=150.159 ms, 99th percentile=24.361 ms
14:40:05.675: ┣output_frame: min=0.04 ms, median=0.668 ms, max=11.114 ms, 99th percentile=1.192 ms
14:40:05.675: ┃ ┣gs_context(video->graphics): min=0.04 ms, median=0.271 ms, max=11.113 ms, 99th percentile=0.409 ms
14:40:05.675: ┃ ┃ ┣render_video: min=0.018 ms, median=0.225 ms, max=11.012 ms, 99th percentile=0.341 ms
14:40:05.675: ┃ ┃ ┃ ┣render_main_texture: min=0.014 ms, median=0.145 ms, max=10.994 ms, 99th percentile=0.231 ms
14:40:05.675: ┃ ┃ ┃ ┣render_convert_texture: min=0.036 ms, median=0.043 ms, max=1.754 ms, 99th percentile=0.074 ms
14:40:05.675: ┃ ┃ ┃ ┗stage_output_texture: min=0.022 ms, median=0.025 ms, max=3.48 ms, 99th percentile=0.057 ms
14:40:05.675: ┃ ┃ ┣gs_flush: min=0.003 ms, median=0.004 ms, max=0.647 ms, 99th percentile=0.007 ms
14:40:05.675: ┃ ┃ ┗download_frame: min=0 ms, median=0.003 ms, max=0.112 ms, 99th percentile=0.005 ms
14:40:05.675: ┃ ┗output_video_data: min=0.268 ms, median=0.389 ms, max=3.303 ms, 99th percentile=0.801 ms
14:40:05.675: ┗render_displays: min=0.018 ms, median=0.026 ms, max=55.255 ms, 99th percentile=0.31 ms
14:40:05.675: video_thread(video): min=2.001 ms, median=2.43 ms, max=10.78 ms, 99th percentile=3.083 ms
14:40:05.675: =================================================
14:40:05.675: == Profiler Time Between Calls ==================
14:40:05.675: obs_hotkey_thread(25 ms): min=25.073 ms, median=25.173 ms, max=132.482 ms, 59.7156% within ±2% of 25 ms (0% lower, 40.2844% higher)
14:40:05.675: obs_graphics_thread(33.3333 ms): min=10.523 ms, median=33.333 ms, max=161.452 ms, 99.8596% within ±2% of 33.333 ms (0.0822253% lower, 0.0581594% higher)
14:40:05.675: =================================================
14:40:05.721: Number of memory leaks: 0

View file

@ -0,0 +1,164 @@
15:17:53.163: Using EGL/X11
15:17:53.163: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
15:17:53.163: CPU Speed: 4243.030MHz
15:17:53.163: Physical Cores: 8, Logical Cores: 16
15:17:53.163: Physical Memory: 31996MB Total, 2478MB Free
15:17:53.163: Kernel Version: Linux 6.12.7-zen1-1-zen
15:17:53.163: Distribution: "Arch Linux" Unknown
15:17:53.163: Session Type: tty
15:17:53.163: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
15:17:53.164: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
15:17:53.164: Portable mode: false
15:17:53.192: OBS 31.0.0 (linux)
15:17:53.192: ---------------------------------
15:17:53.193: ---------------------------------
15:17:53.193: audio settings reset:
15:17:53.193: samples per sec: 48000
15:17:53.193: speakers: 2
15:17:53.193: max buffering: 960 milliseconds
15:17:53.193: buffering type: dynamically increasing
15:17:53.194: ---------------------------------
15:17:53.194: Initializing OpenGL...
15:17:53.376: Loading up OpenGL on adapter NVIDIA Corporation NVIDIA GeForce RTX 2070 SUPER/PCIe/SSE2
15:17:53.376: OpenGL loaded successfully, version 3.3.0 NVIDIA 565.77, shading language 3.30 NVIDIA via Cg compiler
15:17:53.402: ---------------------------------
15:17:53.402: video settings reset:
15:17:53.402: base resolution: 1920x1080
15:17:53.402: output resolution: 1920x1080
15:17:53.402: downscale filter: Bicubic
15:17:53.402: fps: 30/1
15:17:53.402: format: NV12
15:17:53.402: YUV mode: Rec. 709/Partial
15:17:53.402: NV12 texture support enabled
15:17:53.402: P010 texture support not available
15:17:53.402: Audio monitoring device:
15:17:53.402: name: Default
15:17:53.402: id: default
15:17:53.403: ---------------------------------
15:17:53.412: Failed to load 'en-US' text for module: 'decklink-captions.so'
15:17:53.419: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
15:17:53.427: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
15:17:53.427: Failed to initialize module 'decklink.so'
15:17:53.569: [pipewire] No capture sources available
15:17:53.635: VAAPI: Failed to initialize display in vaapi_device_h264_supported
15:17:53.635: FFmpeg VAAPI H264 encoding not supported
15:17:53.635: VAAPI: Failed to initialize display in vaapi_device_av1_supported
15:17:53.635: FFmpeg VAAPI AV1 encoding not supported
15:17:53.635: VAAPI: Failed to initialize display in vaapi_device_hevc_supported
15:17:53.635: FFmpeg VAAPI HEVC encoding not supported
15:17:54.248: [obs-nvenc] NVENC version: 12.1 (compiled) / 12.2 (driver), CUDA driver version: 12.70, AV1 supported: false
15:17:54.299: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
15:17:54.382: ---------------------------------
15:17:54.382: Loaded Modules:
15:17:54.382: wlrobs.so
15:17:54.382: text-freetype2.so
15:17:54.382: rtmp-services.so
15:17:54.382: obs-x264.so
15:17:54.382: obs-webrtc.so
15:17:54.382: obs-vst.so
15:17:54.382: obs-vaapi.so
15:17:54.382: obs-transitions.so
15:17:54.382: obs-qsv11.so
15:17:54.382: obs-outputs.so
15:17:54.382: obs-nvenc.so
15:17:54.382: obs-libfdk.so
15:17:54.382: obs-filters.so
15:17:54.382: obs-ffmpeg.so
15:17:54.382: linux-v4l2.so
15:17:54.382: linux-pulseaudio.so
15:17:54.382: linux-pipewire.so
15:17:54.382: linux-jack.so
15:17:54.382: linux-capture.so
15:17:54.382: linux-alsa.so
15:17:54.382: image-source.so
15:17:54.382: frontend-tools.so
15:17:54.382: decklink-output-ui.so
15:17:54.382: decklink-captions.so
15:17:54.382: ---------------------------------
15:17:54.382: ---------------------------------
15:17:54.382: Available Encoders:
15:17:54.382: Video Encoders:
15:17:54.382: - ffmpeg_svt_av1 (SVT-AV1)
15:17:54.382: - ffmpeg_aom_av1 (AOM AV1)
15:17:54.382: - obs_nvenc_h264_tex (NVIDIA NVENC H.264)
15:17:54.382: - obs_nvenc_hevc_tex (NVIDIA NVENC HEVC)
15:17:54.382: - obs_x264 (x264)
15:17:54.382: Audio Encoders:
15:17:54.382: - ffmpeg_aac (FFmpeg AAC)
15:17:54.382: - ffmpeg_opus (FFmpeg Opus)
15:17:54.382: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
15:17:54.382: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
15:17:54.382: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
15:17:54.382: - ffmpeg_alac (FFmpeg ALAC (24-bit))
15:17:54.382: - ffmpeg_flac (FFmpeg FLAC (16-bit))
15:17:54.382: - libfdk_aac (libfdk AAC)
15:17:54.382: ==== Startup complete ===============================================
15:17:54.383: Encoder ID 'av1_ffmpeg_vaapi_tex' not found
15:17:54.383: Encoder ID 'obs-va-vah264lpenc' not found
15:17:54.409: All scene data cleared
15:17:54.409: ------------------------------------------------
15:17:54.413: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:17:54.413: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
15:17:54.413: pulse-input: Started recording from 'alsa_output.pci-0000_0c_00.4.analog-stereo.monitor' (default)
15:17:54.413: [Loaded global audio device]: 'Desktop Audio'
15:17:54.414: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:17:54.414: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
15:17:54.414: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
15:17:54.414: [Loaded global audio device]: 'Mic/Aux'
15:17:54.414: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
15:17:54.415: pulse-input: An error occurred while getting the source info!
15:17:54.415: [Loaded global audio device]: 'HDMI Capture'
15:17:54.415: v4l2-input: Start capture from /dev/video0
15:17:54.415: v4l2-input: Unable to open device
15:17:54.415: v4l2-input: Initialization failed, errno: No such file or directory
15:17:54.415: xshm-input: Geometry 3840x2160 @ 0,0
15:17:54.416: v4l2-input: Start capture from /dev/video0
15:17:54.416: v4l2-input: Unable to open device
15:17:54.416: v4l2-input: Initialization failed, errno: No such file or directory
15:17:54.531: v4l2-input: Start capture from /dev/video0
15:17:54.531: v4l2-input: Unable to open device
15:17:54.531: v4l2-input: Initialization failed, errno: No such file or directory
15:17:54.532: v4l2-input: Start capture from /dev/video4
15:17:54.532: v4l2-input: Unable to open device
15:17:54.532: v4l2-input: Initialization failed, errno: No such file or directory
15:17:54.532: xshm-input: Geometry 3840x2160 @ 0,0
15:17:54.533: Source ID 'pipewire-desktop-capture-source' not found
15:17:54.533: Failed to create source 'Screen Capture (PipeWire)'!
15:17:54.535: Switched to scene 'screen'
15:17:54.535: ------------------------------------------------
15:17:54.535: Loaded scenes:
15:17:54.535: - scene 'Screen with camera':
15:17:54.535: - source: 'Screen Capture' (xshm_input)
15:17:54.535: - source: 'Camera Capture' (v4l2_input)
15:17:54.535: - source: 'border' (image_source)
15:17:54.535: - scene 'game with camera':
15:17:54.535: - source: 'Camera Capture' (v4l2_input)
15:17:54.535: - source: 'border' (image_source)
15:17:54.535: - source: 'capture acrd' (v4l2_input)
15:17:54.535: - scene 'game':
15:17:54.535: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:17:54.535: - scene 'game 4:3':
15:17:54.535: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:17:54.535: - scene 'screen':
15:17:54.535: - source: 'Screen Capture (XSHM)' (xshm_input)
15:17:54.535: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
15:17:54.535: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
15:17:54.535: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
15:17:54.535: - scene 'camera':
15:17:54.535: - source: 'Camera Capture' (v4l2_input)
15:17:54.535: - scene 'Camera with scope':
15:17:54.535: - source: 'Camera Capture' (v4l2_input)
15:17:54.535: - source: 'border' (image_source)
15:17:54.536: - source: 'scope caputre' (v4l2_input)
15:17:54.536: - scene 'game with screen':
15:17:54.536: - source: 'Video Capture Device (V4L2)' (v4l2_input)
15:17:54.536: ------------------------------------------------
15:17:54.964: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
15:17:54.964:
15:17:55.006: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Mic/Aux)
15:17:55.006:
15:17:55.421: Virtual camera started
15:17:55.444: ==== Virtual Camera Start ==========================================
15:17:55.444: Starting Virtual Camera output to Program
15:17:55.461: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
15:26:36.392: The X11 connection broke: I/O error (code 1)

View file

@ -0,0 +1,314 @@
16:22:12.887: [Safe Mode] Unclean shutdown detected!
16:22:14.849: [Safe Mode] User elected to launch normally.
16:22:14.850: Platform: Wayland
16:22:14.850: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
16:22:14.850: CPU Speed: 550.000MHz
16:22:14.850: Physical Cores: 8, Logical Cores: 16
16:22:14.850: Physical Memory: 31996MB Total, 13743MB Free
16:22:14.850: Kernel Version: Linux 6.12.7-zen1-1-zen
16:22:14.850: Distribution: "Arch Linux" Unknown
16:22:14.850: Session Type: wayland
16:22:14.851: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
16:22:14.851: Portable mode: false
16:22:14.867: OBS 31.0.0 (linux)
16:22:14.867: ---------------------------------
16:22:14.868: ---------------------------------
16:22:14.868: audio settings reset:
16:22:14.868: samples per sec: 48000
16:22:14.868: speakers: 2
16:22:14.868: max buffering: 960 milliseconds
16:22:14.868: buffering type: dynamically increasing
16:22:14.869: ---------------------------------
16:22:14.869: Initializing OpenGL...
16:22:14.869: Using EGL/Wayland
16:22:14.899: Initialized EGL 1.5
16:22:14.918: Loading up OpenGL on adapter Intel Mesa Intel(R) Graphics (BMG G21)
16:22:14.918: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
16:22:15.052: ---------------------------------
16:22:15.052: video settings reset:
16:22:15.052: base resolution: 1920x1080
16:22:15.052: output resolution: 1920x1080
16:22:15.052: downscale filter: Bicubic
16:22:15.052: fps: 30/1
16:22:15.052: format: NV12
16:22:15.052: YUV mode: Rec. 709/Partial
16:22:15.053: NV12 texture support enabled
16:22:15.053: P010 texture support not available
16:22:15.055: Audio monitoring device:
16:22:15.055: name: Default
16:22:15.055: id: default
16:22:15.057: ---------------------------------
16:22:15.066: Failed to load 'en-US' text for module: 'decklink-captions.so'
16:22:15.075: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
16:22:15.084: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
16:22:15.084: Failed to initialize module 'decklink.so'
16:22:15.233: [pipewire] No capture sources available
16:22:15.329: VAAPI: API version 1.22
16:22:15.335: FFmpeg VAAPI H264 encoding supported
16:22:15.372: FFmpeg VAAPI AV1 encoding supported
16:22:15.409: FFmpeg VAAPI HEVC encoding supported
16:22:15.441: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory
16:22:15.441:
16:22:15.442: NVENC not supported
16:22:15.442: Failed to initialize module 'obs-nvenc.so'
16:22:15.563: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
16:22:16.361: [obs-vaapi] found vah264enc
16:22:16.361: [obs-vaapi] found vaav1enc
16:22:16.361: [obs-vaapi] found vah265enc
16:22:16.361: [obs-vaapi] found vaapih265enc
16:22:16.361: [obs-vaapi] found vaapih264enc
16:22:16.438: ---------------------------------
16:22:16.438: Loaded Modules:
16:22:16.438: wlrobs.so
16:22:16.438: text-freetype2.so
16:22:16.438: rtmp-services.so
16:22:16.438: obs-x264.so
16:22:16.438: obs-webrtc.so
16:22:16.438: obs-vst.so
16:22:16.438: obs-vaapi.so
16:22:16.438: obs-transitions.so
16:22:16.438: obs-qsv11.so
16:22:16.438: obs-outputs.so
16:22:16.438: obs-libfdk.so
16:22:16.438: obs-filters.so
16:22:16.438: obs-ffmpeg.so
16:22:16.438: linux-v4l2.so
16:22:16.438: linux-pulseaudio.so
16:22:16.438: linux-pipewire.so
16:22:16.438: linux-jack.so
16:22:16.438: linux-capture.so
16:22:16.438: linux-alsa.so
16:22:16.438: image-source.so
16:22:16.438: frontend-tools.so
16:22:16.438: decklink-output-ui.so
16:22:16.438: decklink-captions.so
16:22:16.438: ---------------------------------
16:22:16.438: ---------------------------------
16:22:16.438: Available Encoders:
16:22:16.438: Video Encoders:
16:22:16.438: - ffmpeg_svt_av1 (SVT-AV1)
16:22:16.438: - ffmpeg_aom_av1 (AOM AV1)
16:22:16.439: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
16:22:16.439: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
16:22:16.439: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
16:22:16.439: - obs_qsv11_v2 (QuickSync H.264)
16:22:16.439: - obs_qsv11_av1 (QuickSync AV1)
16:22:16.439: - obs_qsv11_hevc (QuickSync HEVC)
16:22:16.444: - obs-va-vah264enc (VAAPI H.264 on Battlemage G21 [Intel Graphics])
16:22:16.449: - obs-va-vaav1enc (VAAPI AV1 on Battlemage G21 [Intel Graphics])
16:22:16.453: - obs-va-vah265enc (VAAPI H.265 on Battlemage G21 [Intel Graphics])
16:22:16.453: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
16:22:16.453: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
16:22:16.453: - obs_x264 (x264)
16:22:16.453: Audio Encoders:
16:22:16.453: - ffmpeg_aac (FFmpeg AAC)
16:22:16.453: - ffmpeg_opus (FFmpeg Opus)
16:22:16.453: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
16:22:16.453: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
16:22:16.453: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
16:22:16.453: - ffmpeg_alac (FFmpeg ALAC (24-bit))
16:22:16.453: - ffmpeg_flac (FFmpeg FLAC (16-bit))
16:22:16.453: - libfdk_aac (libfdk AAC)
16:22:16.453: ==== Startup complete ===============================================
16:22:16.491: Encoder ID 'obs-va-vah264lpenc' not found
16:22:16.535: All scene data cleared
16:22:16.535: ------------------------------------------------
16:22:16.540: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
16:22:16.540: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
16:22:16.540: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
16:22:16.540: [Loaded global audio device]: 'Desktop Audio'
16:22:16.540: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
16:22:16.540: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
16:22:16.540: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
16:22:16.540: [Loaded global audio device]: 'Mic/Aux'
16:22:16.541: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
16:22:16.541: pulse-input: An error occurred while getting the source info!
16:22:16.541: [Loaded global audio device]: 'HDMI Capture'
16:22:16.541: v4l2-input: Start capture from /dev/video0
16:22:16.541: v4l2-input: Unable to open device
16:22:16.541: v4l2-input: Initialization failed, errno: No such file or directory
16:22:16.541: Source ID 'xshm_input' not found
16:22:16.541: Failed to create source 'Screen Capture'!
16:22:16.541: v4l2-input: Start capture from /dev/video0
16:22:16.542: v4l2-input: Unable to open device
16:22:16.542: v4l2-input: Initialization failed, errno: No such file or directory
16:22:16.651: v4l2-input: Start capture from /dev/video0
16:22:16.651: v4l2-input: Unable to open device
16:22:16.651: v4l2-input: Initialization failed, errno: No such file or directory
16:22:16.651: v4l2-input: Start capture from /dev/video4
16:22:16.651: v4l2-input: Unable to open device
16:22:16.651: v4l2-input: Initialization failed, errno: No such file or directory
16:22:16.652: Source ID 'xshm_input' not found
16:22:16.652: Failed to create source 'Screen Capture (XSHM)'!
16:22:16.652: Source ID 'pipewire-desktop-capture-source' not found
16:22:16.652: Failed to create source 'Screen Capture (PipeWire)'!
16:22:16.655: Switched to scene 'screen'
16:22:16.655: ------------------------------------------------
16:22:16.655: Loaded scenes:
16:22:16.655: - scene 'Screen with camera':
16:22:16.655: - source: 'Screen Capture' (xshm_input)
16:22:16.655: - source: 'Camera Capture' (v4l2_input)
16:22:16.655: - source: 'border' (image_source)
16:22:16.655: - scene 'game with camera':
16:22:16.655: - source: 'Camera Capture' (v4l2_input)
16:22:16.655: - source: 'border' (image_source)
16:22:16.655: - source: 'capture acrd' (v4l2_input)
16:22:16.655: - scene 'game':
16:22:16.655: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:22:16.655: - scene 'game 4:3':
16:22:16.655: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:22:16.655: - scene 'screen':
16:22:16.655: - source: 'Screen Capture (XSHM)' (xshm_input)
16:22:16.655: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
16:22:16.655: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
16:22:16.655: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
16:22:16.655: - scene 'camera':
16:22:16.655: - source: 'Camera Capture' (v4l2_input)
16:22:16.655: - scene 'Camera with scope':
16:22:16.655: - source: 'Camera Capture' (v4l2_input)
16:22:16.655: - source: 'border' (image_source)
16:22:16.655: - source: 'scope caputre' (v4l2_input)
16:22:16.655: - scene 'game with screen':
16:22:16.655: - source: 'Video Capture Device (V4L2)' (v4l2_input)
16:22:16.656: ------------------------------------------------
16:22:17.087: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
16:22:17.087:
16:22:34.847: Get on org.freedesktop.portal.Settings returned an invalid reply
16:22:34.847: Get on org.freedesktop.portal.Settings returned an invalid reply
16:22:50.080: Encoder ID 'obs-va-vah264lpenc' not found
16:22:50.080: Settings changed (outputs)
16:22:50.080: ------------------------------------------------
16:22:51.596: [obs-vaapi] qos: 0
16:22:51.596: [obs-vaapi] min-force-key-unit-interval: 0
16:22:51.596: [obs-vaapi] key-int-max: 60
16:22:51.596: [obs-vaapi] gf-group-size: 32
16:22:51.596: [obs-vaapi] ref-frames: 7
16:22:51.596: [obs-vaapi] hierarchical-level: 6
16:22:51.596: [obs-vaapi] superblock-128x128: 0
16:22:51.596: [obs-vaapi] min-qp: 0
16:22:51.596: [obs-vaapi] max-qp: 255
16:22:51.596: [obs-vaapi] qp: 128
16:22:51.596: [obs-vaapi] bitrate: 0
16:22:51.596: [obs-vaapi] target-percentage: 66
16:22:51.596: [obs-vaapi] target-usage: 4
16:22:51.596: [obs-vaapi] cpb-size: 0
16:22:51.596: [obs-vaapi] num-tile-cols: 1
16:22:51.596: [obs-vaapi] num-tile-rows: 1
16:22:51.596: [obs-vaapi] tile-groups: 1
16:22:51.596: [obs-vaapi] mbbrc: disabled
16:22:51.596: [obs-vaapi] rate-control: cbr
16:22:51.596: [obs-vaapi] codec: obs-va-vaav1enc, 1920x1080@30/1, format: NV12
16:22:51.639: ---------------------------------
16:22:51.640: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo, track: 1
16:22:51.640:
16:22:51.640: ---------------------------------
16:22:51.640: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo, track: 2
16:22:51.640:
16:22:51.640: ---------------------------------
16:22:51.640: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo, track: 3
16:22:51.640:
16:22:51.640: ---------------------------------
16:22:51.640: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo, track: 4
16:22:51.640:
16:22:51.664: ==== Recording Start ===============================================
16:22:51.664: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-03 16-22-51.mkv'...
16:22:51.667: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
16:22:59.686: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-03 16-22-51.mkv' stopped
16:22:59.686: Output 'adv_file_output': stopping
16:22:59.686: Output 'adv_file_output': Total frames output: 202
16:22:59.686: Output 'adv_file_output': Total drawn frames: 240
16:22:59.686: ==== Recording Stop ================================================
16:23:42.074: Get on org.freedesktop.portal.Settings returned an invalid reply
16:23:42.074: Get on org.freedesktop.portal.Settings returned an invalid reply
16:23:51.730: Settings changed (outputs)
16:23:51.730: ------------------------------------------------
16:27:41.488: ==== Shutting down ==================================================
16:27:41.519: pulse-input: Stopped recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor'
16:27:41.519: pulse-input: Got 12998 packets with 15597600 frames
16:27:41.519: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
16:27:41.519: pulse-input: Got 12997 packets with 15596400 frames
16:27:41.571: All scene data cleared
16:27:41.571: ------------------------------------------------
16:27:41.640: [Scripting] Total detached callbacks: 0
16:27:41.640: Freeing OBS context data
16:27:41.691: == Profiler Results =============================
16:27:41.692: run_program_init: 3857.72 ms
16:27:41.692: ┣OBSApp::AppInit: 12.472 ms
16:27:41.692: ┃ ┗OBSApp::InitLocale: 2.05 ms
16:27:41.692: ┗OBSApp::OBSInit: 1849.99 ms
16:27:41.692: ┣obs_startup: 1.15 ms
16:27:41.692: ┗OBSBasic::OBSInit: 1832.17 ms
16:27:41.692: ┣OBSBasic::InitBasicConfig: 0.555 ms
16:27:41.692: ┣OBSBasic::ResetAudio: 0.286 ms
16:27:41.692: ┣OBSBasic::ResetVideo: 186.667 ms
16:27:41.692: ┃ ┗obs_init_graphics: 184.173 ms
16:27:41.692: ┃ ┗shader compilation: 134.387 ms
16:27:41.692: ┣OBSBasic::InitOBSCallbacks: 0.006 ms
16:27:41.692: ┣OBSBasic::InitHotkeys: 0.032 ms
16:27:41.692: ┣obs_load_all_modules2: 1381.41 ms
16:27:41.692: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
16:27:41.692: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
16:27:41.692: ┃ ┣obs_init_module(decklink.so): 0.134 ms
16:27:41.692: ┃ ┣obs_init_module(frontend-tools.so): 69.181 ms
16:27:41.692: ┃ ┣obs_init_module(image-source.so): 0.016 ms
16:27:41.692: ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms
16:27:41.692: ┃ ┣obs_init_module(linux-capture.so): 0 ms
16:27:41.692: ┃ ┣obs_init_module(linux-jack.so): 0.004 ms
16:27:41.692: ┃ ┣obs_init_module(linux-pipewire.so): 13.632 ms
16:27:41.692: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.003 ms
16:27:41.692: ┃ ┣obs_init_module(linux-v4l2.so): 0.111 ms
16:27:41.692: ┃ ┣obs_init_module(obs-ffmpeg.so): 113.304 ms
16:27:41.692: ┃ ┣obs_init_module(obs-filters.so): 0.031 ms
16:27:41.692: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
16:27:41.692: ┃ ┣obs_init_module(obs-nvenc.so): 0.143 ms
16:27:41.692: ┃ ┃ ┗nvenc_check: 0.115 ms
16:27:41.692: ┃ ┣obs_init_module(obs-outputs.so): 0.004 ms
16:27:41.692: ┃ ┣obs_init_module(obs-qsv11.so): 73.138 ms
16:27:41.692: ┃ ┣obs_init_module(obs-transitions.so): 0.007 ms
16:27:41.692: ┃ ┣obs_init_module(obs-vaapi.so): 798.134 ms
16:27:41.692: ┃ ┣obs_init_module(obs-vst.so): 0.004 ms
16:27:41.692: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
16:27:41.692: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
16:27:41.692: ┃ ┣obs_init_module(rtmp-services.so): 0.827 ms
16:27:41.692: ┃ ┣obs_init_module(text-freetype2.so): 0.023 ms
16:27:41.692: ┃ ┗obs_init_module(wlrobs.so): 0.01 ms
16:27:41.692: ┣OBSBasic::InitService: 1.467 ms
16:27:41.692: ┣OBSBasic::ResetOutputs: 36.402 ms
16:27:41.692: ┣OBSBasic::CreateHotkeys: 0.025 ms
16:27:41.692: ┣OBSBasic::InitPrimitives: 0.497 ms
16:27:41.692: ┗OBSBasic::Load: 167.308 ms
16:27:41.692: obs_hotkey_thread(25 ms): min=0 ms, median=0 ms, max=0.018 ms, 99th percentile=0.001 ms, 100% below 25 ms
16:27:41.692: audio_thread(Audio): min=0.004 ms, median=0.035 ms, max=164.863 ms, 99th percentile=16.223 ms
16:27:41.692: ┗receive_audio: min=0 ms, median=0.157 ms, max=38.439 ms, 99th percentile=0.514 ms, 0.098975 calls per parent call
16:27:41.692: ┣buffer_audio: min=0 ms, median=0.001 ms, max=0.02 ms, 99th percentile=0.008 ms
16:27:41.692: ┗do_encode: min=0.042 ms, median=0.151 ms, max=38.436 ms, 99th percentile=0.45 ms, 1.05805 calls per parent call
16:27:41.692: ┣encode(Track1): min=0.12 ms, median=0.188 ms, max=0.507 ms, 99th percentile=0.405 ms, 0.25 calls per parent call
16:27:41.692: ┣send_packet: min=0 ms, median=0.001 ms, max=38.367 ms, 99th percentile=0.252 ms
16:27:41.692: ┣encode(Track2): min=0.124 ms, median=0.151 ms, max=0.403 ms, 99th percentile=0.242 ms, 0.25 calls per parent call
16:27:41.692: ┣encode(Track3): min=0.041 ms, median=0.05 ms, max=0.389 ms, 99th percentile=0.097 ms, 0.25 calls per parent call
16:27:41.692: ┗encode(Track4): min=0.12 ms, median=0.146 ms, max=0.306 ms, 99th percentile=0.239 ms, 0.25 calls per parent call
16:27:41.692: obs_graphics_thread(33.3333 ms): min=0.031 ms, median=9.119 ms, max=178.678 ms, 99th percentile=60.188 ms, 98.7499% below 33.333 ms
16:27:41.693: ┣tick_sources: min=0 ms, median=0.012 ms, max=106.007 ms, 99th percentile=0.037 ms
16:27:41.693: ┣output_frame: min=0.023 ms, median=8.705 ms, max=174.592 ms, 99th percentile=52.421 ms
16:27:41.693: ┃ ┣gs_context(video->graphics): min=0.023 ms, median=8.547 ms, max=173.551 ms, 99th percentile=52.419 ms
16:27:41.693: ┃ ┃ ┣render_video: min=0.003 ms, median=8.488 ms, max=173.43 ms, 99th percentile=52.354 ms
16:27:41.693: ┃ ┃ ┃ ┣render_main_texture: min=0.002 ms, median=8.481 ms, max=173.422 ms, 99th percentile=52.351 ms
16:27:41.693: ┃ ┃ ┃ ┣render_convert_texture: min=0.015 ms, median=0.022 ms, max=9.36 ms, 99th percentile=0.047 ms, 0.0251068 calls per parent call
16:27:41.693: ┃ ┃ ┃ ┗stage_output_texture: min=0.008 ms, median=0.013 ms, max=0.421 ms, 99th percentile=0.022 ms, 0.0251068 calls per parent call
16:27:41.693: ┃ ┃ ┣gs_flush: min=0.019 ms, median=0.059 ms, max=2.29 ms, 99th percentile=0.192 ms
16:27:41.693: ┃ ┃ ┗download_frame: min=0 ms, median=0.054 ms, max=0.376 ms, 99th percentile=0.316 ms, 0.0251068 calls per parent call
16:27:41.693: ┃ ┗output_video_data: min=0.312 ms, median=0.427 ms, max=5.844 ms, 99th percentile=1.565 ms, 0.0250026 calls per parent call
16:27:41.693: ┗render_displays: min=0.002 ms, median=0.141 ms, max=24.406 ms, 99th percentile=16.846 ms
16:27:41.693: OBSBasicSettings::LoadThemeList: min=0.025 ms, median=0 ms, max=0.026 ms, 99th percentile=0.026 ms
16:27:41.693: OBSBasic::ResetOutputs: min=0.243 ms, median=0 ms, max=0.346 ms, 99th percentile=0.346 ms
16:27:41.693: video_thread(video): min=2.09 ms, median=5.176 ms, max=176.144 ms, 99th percentile=126.5 ms
16:27:41.693: ┗receive_video: min=2.09 ms, median=5.175 ms, max=176.142 ms, 99th percentile=126.498 ms
16:27:41.693: ┗do_encode: min=2.09 ms, median=5.174 ms, max=176.14 ms, 99th percentile=126.496 ms
16:27:41.693: ┣encode(advanced_video_recording): min=2.07 ms, median=5.075 ms, max=175.987 ms, 99th percentile=126.441 ms
16:27:41.693: ┗send_packet: min=0.001 ms, median=0.022 ms, max=17.525 ms, 99th percentile=1.566 ms, 0.866667 calls per parent call
16:27:41.693: =================================================
16:27:41.693: == Profiler Time Between Calls ==================
16:27:41.693: obs_hotkey_thread(25 ms): min=25.011 ms, median=25.061 ms, max=27.431 ms, 99.7008% within ±2% of 25 ms (0% lower, 0.299194% higher)
16:27:41.693: obs_graphics_thread(33.3333 ms): min=13.162 ms, median=33.333 ms, max=178.687 ms, 97.4161% within ±2% of 33.333 ms (0.854345% lower, 1.72953% higher)
16:27:41.693: =================================================
16:27:41.733: Number of memory leaks: 2

View file

@ -0,0 +1,194 @@
17:09:07.673: Using EGL/X11
17:09:07.673: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
17:09:07.673: CPU Speed: 4226.394MHz
17:09:07.673: Physical Cores: 8, Logical Cores: 16
17:09:07.673: Physical Memory: 31996MB Total, 14813MB Free
17:09:07.673: Kernel Version: Linux 6.12.7-zen1-1-zen
17:09:07.673: Distribution: "Arch Linux" Unknown
17:09:07.673: Session Type: tty
17:09:07.673: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
17:09:07.674: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
17:09:07.674: Portable mode: false
17:09:07.715: OBS 31.0.0 (linux)
17:09:07.715: ---------------------------------
17:09:07.716: ---------------------------------
17:09:07.716: audio settings reset:
17:09:07.716: samples per sec: 48000
17:09:07.716: speakers: 2
17:09:07.716: max buffering: 960 milliseconds
17:09:07.716: buffering type: dynamically increasing
17:09:07.717: ---------------------------------
17:09:07.717: Initializing OpenGL...
17:09:07.821: Loading up OpenGL on adapter Intel Mesa Intel(R) Graphics (BMG G21)
17:09:07.821: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
17:09:07.860: ---------------------------------
17:09:07.860: video settings reset:
17:09:07.860: base resolution: 1920x1080
17:09:07.860: output resolution: 1920x1080
17:09:07.860: downscale filter: Bicubic
17:09:07.860: fps: 30/1
17:09:07.860: format: NV12
17:09:07.860: YUV mode: Rec. 709/Partial
17:09:07.860: NV12 texture support enabled
17:09:07.860: P010 texture support not available
17:09:07.863: Audio monitoring device:
17:09:07.863: name: Default
17:09:07.863: id: default
17:09:07.864: ---------------------------------
17:09:07.872: Failed to load 'en-US' text for module: 'decklink-captions.so'
17:09:07.878: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
17:09:07.885: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
17:09:07.885: Failed to initialize module 'decklink.so'
17:09:08.044: [pipewire] No capture sources available
17:09:08.181: VAAPI: API version 1.22
17:09:08.214: FFmpeg VAAPI H264 encoding supported
17:09:08.315: FFmpeg VAAPI AV1 encoding supported
17:09:08.424: FFmpeg VAAPI HEVC encoding supported
17:09:08.454: 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:09:08.454:
17:09:08.454: NVENC not supported
17:09:08.454: Failed to initialize module 'obs-nvenc.so'
17:09:08.680: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
17:09:10.634: [obs-vaapi] found vah264enc
17:09:10.634: [obs-vaapi] found vaav1enc
17:09:10.634: [obs-vaapi] found vah265enc
17:09:10.634: [obs-vaapi] found vaapih265enc
17:09:10.634: [obs-vaapi] found vaapih264enc
17:09:10.706: ---------------------------------
17:09:10.706: Loaded Modules:
17:09:10.706: wlrobs.so
17:09:10.706: text-freetype2.so
17:09:10.706: rtmp-services.so
17:09:10.706: obs-x264.so
17:09:10.706: obs-webrtc.so
17:09:10.706: obs-vst.so
17:09:10.706: obs-vaapi.so
17:09:10.706: obs-transitions.so
17:09:10.706: obs-qsv11.so
17:09:10.706: obs-outputs.so
17:09:10.706: obs-libfdk.so
17:09:10.706: obs-filters.so
17:09:10.706: obs-ffmpeg.so
17:09:10.706: linux-v4l2.so
17:09:10.706: linux-pulseaudio.so
17:09:10.706: linux-pipewire.so
17:09:10.706: linux-jack.so
17:09:10.706: linux-capture.so
17:09:10.706: linux-alsa.so
17:09:10.706: image-source.so
17:09:10.706: frontend-tools.so
17:09:10.706: decklink-output-ui.so
17:09:10.706: decklink-captions.so
17:09:10.706: ---------------------------------
17:09:10.706: ---------------------------------
17:09:10.706: Available Encoders:
17:09:10.706: Video Encoders:
17:09:10.706: - ffmpeg_svt_av1 (SVT-AV1)
17:09:10.706: - ffmpeg_aom_av1 (AOM AV1)
17:09:10.706: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
17:09:10.706: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
17:09:10.706: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
17:09:10.706: - obs_qsv11_v2 (QuickSync H.264)
17:09:10.706: - obs_qsv11_av1 (QuickSync AV1)
17:09:10.706: - obs_qsv11_hevc (QuickSync HEVC)
17:09:10.712: - obs-va-vah264enc (VAAPI H.264 on Battlemage G21 [Intel Graphics])
17:09:10.716: - obs-va-vaav1enc (VAAPI AV1 on Battlemage G21 [Intel Graphics])
17:09:10.721: - obs-va-vah265enc (VAAPI H.265 on Battlemage G21 [Intel Graphics])
17:09:10.721: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
17:09:10.721: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
17:09:10.721: - obs_x264 (x264)
17:09:10.721: Audio Encoders:
17:09:10.721: - ffmpeg_aac (FFmpeg AAC)
17:09:10.721: - ffmpeg_opus (FFmpeg Opus)
17:09:10.721: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
17:09:10.721: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
17:09:10.721: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
17:09:10.721: - ffmpeg_alac (FFmpeg ALAC (24-bit))
17:09:10.721: - ffmpeg_flac (FFmpeg FLAC (16-bit))
17:09:10.721: - libfdk_aac (libfdk AAC)
17:09:10.721: ==== Startup complete ===============================================
17:09:11.897: All scene data cleared
17:09:11.898: ------------------------------------------------
17:09:11.902: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:09:11.902: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
17:09:11.902: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
17:09:11.902: [Loaded global audio device]: 'Desktop Audio'
17:09:11.909: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:09:11.909: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
17:09:11.909: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
17:09:11.909: [Loaded global audio device]: 'Mic/Aux'
17:09:11.909: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:09:11.909: pulse-input: An error occurred while getting the source info!
17:09:11.909: [Loaded global audio device]: 'HDMI Capture'
17:09:11.909: v4l2-input: Start capture from /dev/video0
17:09:11.909: v4l2-input: Unable to open device
17:09:11.909: v4l2-input: Initialization failed, errno: No such file or directory
17:09:11.910: xshm-input: Geometry 3840x2160 @ 0,0
17:09:11.917: v4l2-input: Start capture from /dev/video0
17:09:11.917: v4l2-input: Unable to open device
17:09:11.917: v4l2-input: Initialization failed, errno: No such file or directory
17:09:12.028: v4l2-input: Start capture from /dev/video0
17:09:12.028: v4l2-input: Unable to open device
17:09:12.028: v4l2-input: Initialization failed, errno: No such file or directory
17:09:12.028: v4l2-input: Start capture from /dev/video4
17:09:12.028: v4l2-input: Unable to open device
17:09:12.028: v4l2-input: Initialization failed, errno: No such file or directory
17:09:12.029: xshm-input: Geometry 3840x2160 @ 0,0
17:09:12.032: Source ID 'pipewire-desktop-capture-source' not found
17:09:12.032: Failed to create source 'Screen Capture (PipeWire)'!
17:09:12.033: Switched to scene 'screen'
17:09:12.033: ------------------------------------------------
17:09:12.033: Loaded scenes:
17:09:12.033: - scene 'Screen with camera':
17:09:12.033: - source: 'Screen Capture' (xshm_input)
17:09:12.034: - source: 'Camera Capture' (v4l2_input)
17:09:12.034: - source: 'border' (image_source)
17:09:12.034: - scene 'game with camera':
17:09:12.034: - source: 'Camera Capture' (v4l2_input)
17:09:12.034: - source: 'border' (image_source)
17:09:12.034: - source: 'capture acrd' (v4l2_input)
17:09:12.034: - scene 'game':
17:09:12.034: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:09:12.034: - scene 'game 4:3':
17:09:12.034: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:09:12.034: - scene 'screen':
17:09:12.034: - source: 'Screen Capture (XSHM)' (xshm_input)
17:09:12.034: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
17:09:12.034: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
17:09:12.034: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
17:09:12.034: - scene 'camera':
17:09:12.034: - source: 'Camera Capture' (v4l2_input)
17:09:12.034: - scene 'Camera with scope':
17:09:12.034: - source: 'Camera Capture' (v4l2_input)
17:09:12.034: - source: 'border' (image_source)
17:09:12.034: - source: 'scope caputre' (v4l2_input)
17:09:12.034: - scene 'game with screen':
17:09:12.034: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:09:12.034: ------------------------------------------------
17:09:12.452: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
17:09:12.452:
17:09:14.478: Virtual camera started
17:09:14.499: ==== Virtual Camera Start ==========================================
17:09:14.499: Starting Virtual Camera output to Program
17:09:14.515: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
17:09:19.842: Get on org.freedesktop.portal.Settings returned an invalid reply
17:09:19.842: Get on org.freedesktop.portal.Settings returned an invalid reply
17:09:47.906: Get on org.freedesktop.portal.Settings returned an invalid reply
17:09:47.906: Get on org.freedesktop.portal.Settings returned an invalid reply
17:17:53.643: Get on org.freedesktop.portal.Settings returned an invalid reply
17:17:53.644: Get on org.freedesktop.portal.Settings returned an invalid reply
17:18:01.014: Output 'virtualcam_output': stopping
17:18:01.014: Output 'virtualcam_output': Total frames output: 15794
17:18:01.014: Output 'virtualcam_output': Total drawn frames: 15740 (15795 attempted)
17:18:01.014: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 55 (0.3%)
17:18:01.014: ==== Virtual Camera Stop ===========================================
17:18:01.015: Virtual camera stopped
17:18:02.033: Get on org.freedesktop.portal.Settings returned an invalid reply
17:18:02.033: Get on org.freedesktop.portal.Settings returned an invalid reply
17:26:38.411: Get on org.freedesktop.portal.Settings returned an invalid reply
17:26:38.411: Get on org.freedesktop.portal.Settings returned an invalid reply
17:26:52.910: Settings changed (outputs)
17:26:52.910: ------------------------------------------------
17:26:54.728: Get on org.freedesktop.portal.Settings returned an invalid reply
17:26:54.728: Get on org.freedesktop.portal.Settings returned an invalid reply
17:27:06.367: The X11 connection broke (error 1). Did the X11 server die?

View file

@ -0,0 +1,179 @@
17:31:39.815: [Safe Mode] Unclean shutdown detected!
17:31:42.186: [Safe Mode] User elected to launch normally.
17:31:42.186: Platform: Wayland
17:31:42.186: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
17:31:42.186: CPU Speed: 4269.868MHz
17:31:42.187: Physical Cores: 8, Logical Cores: 16
17:31:42.187: Physical Memory: 31996MB Total, 14114MB Free
17:31:42.187: Kernel Version: Linux 6.12.7-zen1-1-zen
17:31:42.187: Distribution: "Arch Linux" Unknown
17:31:42.187: Session Type: wayland
17:31:42.187: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
17:31:42.187: Portable mode: false
17:31:42.205: OBS 31.0.0 (linux)
17:31:42.205: ---------------------------------
17:31:42.205: ---------------------------------
17:31:42.205: audio settings reset:
17:31:42.205: samples per sec: 48000
17:31:42.205: speakers: 2
17:31:42.205: max buffering: 960 milliseconds
17:31:42.205: buffering type: dynamically increasing
17:31:42.207: ---------------------------------
17:31:42.207: Initializing OpenGL...
17:31:42.207: Using EGL/Wayland
17:31:42.237: Initialized EGL 1.5
17:31:42.256: Loading up OpenGL on adapter Intel Mesa Intel(R) Graphics (BMG G21)
17:31:42.256: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
17:31:42.289: ---------------------------------
17:31:42.290: video settings reset:
17:31:42.290: base resolution: 1920x1080
17:31:42.290: output resolution: 1920x1080
17:31:42.290: downscale filter: Bicubic
17:31:42.290: fps: 30/1
17:31:42.290: format: NV12
17:31:42.290: YUV mode: Rec. 709/Partial
17:31:42.290: NV12 texture support enabled
17:31:42.290: P010 texture support not available
17:31:42.292: Audio monitoring device:
17:31:42.292: name: Default
17:31:42.292: id: default
17:31:42.293: ---------------------------------
17:31:42.301: Failed to load 'en-US' text for module: 'decklink-captions.so'
17:31:42.308: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
17:31:42.315: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
17:31:42.315: Failed to initialize module 'decklink.so'
17:31:42.445: [pipewire] No capture sources available
17:31:42.539: VAAPI: API version 1.22
17:31:42.546: FFmpeg VAAPI H264 encoding supported
17:31:42.588: FFmpeg VAAPI AV1 encoding supported
17:31:42.628: FFmpeg VAAPI HEVC encoding supported
17:31:42.654: 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:31:42.654:
17:31:42.654: NVENC not supported
17:31:42.654: Failed to initialize module 'obs-nvenc.so'
17:31:42.781: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
17:31:42.908: [obs-vaapi] found vah265enc
17:31:42.908: [obs-vaapi] found vaav1enc
17:31:42.908: [obs-vaapi] found vah264enc
17:31:42.908: [obs-vaapi] found vaapih265enc
17:31:42.908: [obs-vaapi] found vaapih264enc
17:31:42.973: ---------------------------------
17:31:42.973: Loaded Modules:
17:31:42.973: wlrobs.so
17:31:42.973: text-freetype2.so
17:31:42.973: rtmp-services.so
17:31:42.973: obs-x264.so
17:31:42.973: obs-webrtc.so
17:31:42.973: obs-vst.so
17:31:42.973: obs-vaapi.so
17:31:42.973: obs-transitions.so
17:31:42.973: obs-qsv11.so
17:31:42.973: obs-outputs.so
17:31:42.973: obs-libfdk.so
17:31:42.973: obs-filters.so
17:31:42.973: obs-ffmpeg.so
17:31:42.973: linux-v4l2.so
17:31:42.973: linux-pulseaudio.so
17:31:42.973: linux-pipewire.so
17:31:42.973: linux-jack.so
17:31:42.973: linux-capture.so
17:31:42.973: linux-alsa.so
17:31:42.973: image-source.so
17:31:42.973: frontend-tools.so
17:31:42.973: decklink-output-ui.so
17:31:42.973: decklink-captions.so
17:31:42.973: ---------------------------------
17:31:42.973: ---------------------------------
17:31:42.973: Available Encoders:
17:31:42.973: Video Encoders:
17:31:42.973: - ffmpeg_svt_av1 (SVT-AV1)
17:31:42.973: - ffmpeg_aom_av1 (AOM AV1)
17:31:42.973: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
17:31:42.973: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
17:31:42.973: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
17:31:42.973: - obs_qsv11_v2 (QuickSync H.264)
17:31:42.973: - obs_qsv11_av1 (QuickSync AV1)
17:31:42.973: - obs_qsv11_hevc (QuickSync HEVC)
17:31:42.979: - obs-va-vah265enc (VAAPI H.265 on Battlemage G21 [Intel Graphics])
17:31:42.983: - obs-va-vaav1enc (VAAPI AV1 on Battlemage G21 [Intel Graphics])
17:31:42.988: - obs-va-vah264enc (VAAPI H.264 on Battlemage G21 [Intel Graphics])
17:31:42.988: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
17:31:42.988: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
17:31:42.988: - obs_x264 (x264)
17:31:42.988: Audio Encoders:
17:31:42.988: - ffmpeg_aac (FFmpeg AAC)
17:31:42.988: - ffmpeg_opus (FFmpeg Opus)
17:31:42.988: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
17:31:42.988: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
17:31:42.988: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
17:31:42.988: - ffmpeg_alac (FFmpeg ALAC (24-bit))
17:31:42.988: - ffmpeg_flac (FFmpeg FLAC (16-bit))
17:31:42.988: - libfdk_aac (libfdk AAC)
17:31:42.988: ==== Startup complete ===============================================
17:31:43.531: All scene data cleared
17:31:43.531: ------------------------------------------------
17:31:43.534: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:31:43.534: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
17:31:43.534: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
17:31:43.534: [Loaded global audio device]: 'Desktop Audio'
17:31:43.535: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:31:43.535: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
17:31:43.535: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
17:31:43.535: [Loaded global audio device]: 'Mic/Aux'
17:31:43.535: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
17:31:43.536: pulse-input: An error occurred while getting the source info!
17:31:43.536: [Loaded global audio device]: 'HDMI Capture'
17:31:43.536: v4l2-input: Start capture from /dev/video0
17:31:43.536: v4l2-input: Unable to open device
17:31:43.536: v4l2-input: Initialization failed, errno: No such file or directory
17:31:43.536: Source ID 'xshm_input' not found
17:31:43.536: Failed to create source 'Screen Capture'!
17:31:43.536: v4l2-input: Start capture from /dev/video0
17:31:43.536: v4l2-input: Unable to open device
17:31:43.536: v4l2-input: Initialization failed, errno: No such file or directory
17:31:43.646: v4l2-input: Start capture from /dev/video0
17:31:43.646: v4l2-input: Unable to open device
17:31:43.646: v4l2-input: Initialization failed, errno: No such file or directory
17:31:43.646: v4l2-input: Start capture from /dev/video4
17:31:43.646: v4l2-input: Unable to open device
17:31:43.646: v4l2-input: Initialization failed, errno: No such file or directory
17:31:43.647: Source ID 'xshm_input' not found
17:31:43.647: Failed to create source 'Screen Capture (XSHM)'!
17:31:43.647: Source ID 'pipewire-desktop-capture-source' not found
17:31:43.647: Failed to create source 'Screen Capture (PipeWire)'!
17:31:43.648: Switched to scene 'screen'
17:31:43.649: ------------------------------------------------
17:31:43.649: Loaded scenes:
17:31:43.649: - scene 'Screen with camera':
17:31:43.649: - source: 'Screen Capture' (xshm_input)
17:31:43.649: - source: 'Camera Capture' (v4l2_input)
17:31:43.649: - source: 'border' (image_source)
17:31:43.649: - scene 'game with camera':
17:31:43.649: - source: 'Camera Capture' (v4l2_input)
17:31:43.649: - source: 'border' (image_source)
17:31:43.649: - source: 'capture acrd' (v4l2_input)
17:31:43.649: - scene 'game':
17:31:43.649: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:31:43.649: - scene 'game 4:3':
17:31:43.649: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:31:43.649: - scene 'screen':
17:31:43.649: - source: 'Screen Capture (XSHM)' (xshm_input)
17:31:43.649: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
17:31:43.649: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
17:31:43.649: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
17:31:43.649: - scene 'camera':
17:31:43.649: - source: 'Camera Capture' (v4l2_input)
17:31:43.649: - scene 'Camera with scope':
17:31:43.649: - source: 'Camera Capture' (v4l2_input)
17:31:43.649: - source: 'border' (image_source)
17:31:43.649: - source: 'scope caputre' (v4l2_input)
17:31:43.649: - scene 'game with screen':
17:31:43.649: - source: 'Video Capture Device (V4L2)' (v4l2_input)
17:31:43.649: ------------------------------------------------
17:31:44.083: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
17:31:44.083:
17:31:45.048: Virtual camera started
17:31:45.069: ==== Virtual Camera Start ==========================================
17:31:45.069: Starting Virtual Camera output to Program
17:31:45.072: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
17:55:54.060: The Wayland connection broke. Did the Wayland compositor die?

View file

@ -0,0 +1,314 @@
18:55:31.087: [Safe Mode] Unclean shutdown detected!
18:55:32.386: [Safe Mode] User elected to launch normally.
18:55:32.395: Using EGL/X11
18:55:32.395: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
18:55:32.395: CPU Speed: 4265.574MHz
18:55:32.396: Physical Cores: 8, Logical Cores: 16
18:55:32.396: Physical Memory: 31996MB Total, 11336MB Free
18:55:32.396: Kernel Version: Linux 6.12.7-zen1-1-zen
18:55:32.396: Distribution: "Arch Linux" Unknown
18:55:32.396: Session Type: tty
18:55:32.396: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
18:55:32.396: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
18:55:32.396: Portable mode: false
18:55:32.414: OBS 31.0.0 (linux)
18:55:32.414: ---------------------------------
18:55:32.415: ---------------------------------
18:55:32.415: audio settings reset:
18:55:32.415: samples per sec: 48000
18:55:32.415: speakers: 2
18:55:32.415: max buffering: 960 milliseconds
18:55:32.415: buffering type: dynamically increasing
18:55:32.416: ---------------------------------
18:55:32.416: Initializing OpenGL...
18:55:32.504: Loading up OpenGL on adapter Intel Mesa Intel(R) Graphics (BMG G21)
18:55:32.504: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
18:55:32.539: ---------------------------------
18:55:32.539: video settings reset:
18:55:32.539: base resolution: 1920x1080
18:55:32.539: output resolution: 1920x1080
18:55:32.539: downscale filter: Bicubic
18:55:32.539: fps: 30/1
18:55:32.539: format: NV12
18:55:32.539: YUV mode: Rec. 709/Partial
18:55:32.540: NV12 texture support enabled
18:55:32.540: P010 texture support not available
18:55:32.541: Audio monitoring device:
18:55:32.541: name: Default
18:55:32.541: id: default
18:55:32.542: ---------------------------------
18:55:32.551: Failed to load 'en-US' text for module: 'decklink-captions.so'
18:55:32.559: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
18:55:32.566: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
18:55:32.566: Failed to initialize module 'decklink.so'
18:55:32.705: [pipewire] No capture sources available
18:55:32.802: VAAPI: API version 1.22
18:55:32.808: FFmpeg VAAPI H264 encoding supported
18:55:32.845: FFmpeg VAAPI AV1 encoding supported
18:55:32.882: FFmpeg VAAPI HEVC encoding supported
18:55:32.909: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory
18:55:32.909:
18:55:32.909: NVENC not supported
18:55:32.909: Failed to initialize module 'obs-nvenc.so'
18:55:33.028: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
18:55:33.182: [obs-vaapi] found vah264enc
18:55:33.182: [obs-vaapi] found vaav1enc
18:55:33.182: [obs-vaapi] found vah265enc
18:55:33.182: [obs-vaapi] found vaapih265enc
18:55:33.182: [obs-vaapi] found vaapih264enc
18:55:33.249: ---------------------------------
18:55:33.249: Loaded Modules:
18:55:33.249: wlrobs.so
18:55:33.249: text-freetype2.so
18:55:33.249: rtmp-services.so
18:55:33.249: obs-x264.so
18:55:33.249: obs-webrtc.so
18:55:33.249: obs-vst.so
18:55:33.249: obs-vaapi.so
18:55:33.249: obs-transitions.so
18:55:33.249: obs-qsv11.so
18:55:33.249: obs-outputs.so
18:55:33.249: obs-libfdk.so
18:55:33.249: obs-filters.so
18:55:33.249: obs-ffmpeg.so
18:55:33.249: linux-v4l2.so
18:55:33.249: linux-pulseaudio.so
18:55:33.249: linux-pipewire.so
18:55:33.249: linux-jack.so
18:55:33.249: linux-capture.so
18:55:33.249: linux-alsa.so
18:55:33.249: image-source.so
18:55:33.249: frontend-tools.so
18:55:33.249: decklink-output-ui.so
18:55:33.249: decklink-captions.so
18:55:33.249: ---------------------------------
18:55:33.250: ---------------------------------
18:55:33.250: Available Encoders:
18:55:33.250: Video Encoders:
18:55:33.250: - ffmpeg_svt_av1 (SVT-AV1)
18:55:33.250: - ffmpeg_aom_av1 (AOM AV1)
18:55:33.250: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
18:55:33.250: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
18:55:33.250: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
18:55:33.250: - obs_qsv11_v2 (QuickSync H.264)
18:55:33.250: - obs_qsv11_av1 (QuickSync AV1)
18:55:33.250: - obs_qsv11_hevc (QuickSync HEVC)
18:55:33.255: - obs-va-vah264enc (VAAPI H.264 on Battlemage G21 [Intel Graphics])
18:55:33.260: - obs-va-vaav1enc (VAAPI AV1 on Battlemage G21 [Intel Graphics])
18:55:33.264: - obs-va-vah265enc (VAAPI H.265 on Battlemage G21 [Intel Graphics])
18:55:33.264: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
18:55:33.265: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
18:55:33.265: - obs_x264 (x264)
18:55:33.265: Audio Encoders:
18:55:33.265: - ffmpeg_aac (FFmpeg AAC)
18:55:33.265: - ffmpeg_opus (FFmpeg Opus)
18:55:33.265: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
18:55:33.265: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
18:55:33.265: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
18:55:33.265: - ffmpeg_alac (FFmpeg ALAC (24-bit))
18:55:33.265: - ffmpeg_flac (FFmpeg FLAC (16-bit))
18:55:33.265: - libfdk_aac (libfdk AAC)
18:55:33.265: ==== Startup complete ===============================================
18:55:33.759: All scene data cleared
18:55:33.759: ------------------------------------------------
18:55:33.763: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
18:55:33.763: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
18:55:33.763: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
18:55:33.763: [Loaded global audio device]: 'Desktop Audio'
18:55:33.763: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
18:55:33.763: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
18:55:33.763: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
18:55:33.763: [Loaded global audio device]: 'Mic/Aux'
18:55:33.764: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
18:55:33.764: pulse-input: An error occurred while getting the source info!
18:55:33.764: [Loaded global audio device]: 'HDMI Capture'
18:55:33.764: v4l2-input: Start capture from /dev/video0
18:55:33.764: v4l2-input: Unable to open device
18:55:33.764: v4l2-input: Initialization failed, errno: No such file or directory
18:55:33.764: xshm-input: Geometry 3840x2160 @ 0,0
18:55:33.771: v4l2-input: Start capture from /dev/video0
18:55:33.771: v4l2-input: Unable to open device
18:55:33.771: v4l2-input: Initialization failed, errno: No such file or directory
18:55:33.880: v4l2-input: Start capture from /dev/video0
18:55:33.880: v4l2-input: Unable to open device
18:55:33.880: v4l2-input: Initialization failed, errno: No such file or directory
18:55:33.880: v4l2-input: Start capture from /dev/video4
18:55:33.880: v4l2-input: Unable to open device
18:55:33.880: v4l2-input: Initialization failed, errno: No such file or directory
18:55:33.881: xshm-input: Geometry 3840x2160 @ 0,0
18:55:33.884: Source ID 'pipewire-desktop-capture-source' not found
18:55:33.884: Failed to create source 'Screen Capture (PipeWire)'!
18:55:33.886: Switched to scene 'screen'
18:55:33.886: ------------------------------------------------
18:55:33.886: Loaded scenes:
18:55:33.886: - scene 'Screen with camera':
18:55:33.886: - source: 'Screen Capture' (xshm_input)
18:55:33.886: - source: 'Camera Capture' (v4l2_input)
18:55:33.886: - source: 'border' (image_source)
18:55:33.886: - scene 'game with camera':
18:55:33.886: - source: 'Camera Capture' (v4l2_input)
18:55:33.886: - source: 'border' (image_source)
18:55:33.886: - source: 'capture acrd' (v4l2_input)
18:55:33.886: - scene 'game':
18:55:33.886: - source: 'Video Capture Device (V4L2)' (v4l2_input)
18:55:33.886: - scene 'game 4:3':
18:55:33.886: - source: 'Video Capture Device (V4L2)' (v4l2_input)
18:55:33.886: - scene 'screen':
18:55:33.886: - source: 'Screen Capture (XSHM)' (xshm_input)
18:55:33.886: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
18:55:33.886: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
18:55:33.886: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
18:55:33.886: - scene 'camera':
18:55:33.886: - source: 'Camera Capture' (v4l2_input)
18:55:33.886: - scene 'Camera with scope':
18:55:33.886: - source: 'Camera Capture' (v4l2_input)
18:55:33.886: - source: 'border' (image_source)
18:55:33.886: - source: 'scope caputre' (v4l2_input)
18:55:33.886: - scene 'game with screen':
18:55:33.886: - source: 'Video Capture Device (V4L2)' (v4l2_input)
18:55:33.886: ------------------------------------------------
18:55:34.335: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
18:55:34.335:
18:55:35.189: Virtual camera started
18:55:35.210: ==== Virtual Camera Start ==========================================
18:55:35.210: Starting Virtual Camera output to Program
18:55:35.223: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
18:57:08.899: Get on org.freedesktop.portal.Settings returned an invalid reply
18:57:08.899: Get on org.freedesktop.portal.Settings returned an invalid reply
19:16:59.247: Get on org.freedesktop.portal.Settings returned an invalid reply
19:16:59.247: Get on org.freedesktop.portal.Settings returned an invalid reply
19:17:06.196: [obs-vaapi] qos: 0
19:17:06.196: [obs-vaapi] min-force-key-unit-interval: 0
19:17:06.196: [obs-vaapi] key-int-max: 60
19:17:06.196: [obs-vaapi] gf-group-size: 32
19:17:06.196: [obs-vaapi] ref-frames: 7
19:17:06.196: [obs-vaapi] hierarchical-level: 6
19:17:06.196: [obs-vaapi] superblock-128x128: 0
19:17:06.196: [obs-vaapi] min-qp: 0
19:17:06.196: [obs-vaapi] max-qp: 255
19:17:06.196: [obs-vaapi] qp: 128
19:17:06.196: [obs-vaapi] bitrate: 0
19:17:06.196: [obs-vaapi] target-percentage: 66
19:17:06.196: [obs-vaapi] target-usage: 4
19:17:06.196: [obs-vaapi] cpb-size: 0
19:17:06.196: [obs-vaapi] num-tile-cols: 1
19:17:06.196: [obs-vaapi] num-tile-rows: 1
19:17:06.196: [obs-vaapi] tile-groups: 1
19:17:06.196: [obs-vaapi] mbbrc: disabled
19:17:06.196: [obs-vaapi] rate-control: cbr
19:17:06.196: [obs-vaapi] codec: obs-va-vaav1enc, 1920x1080@30/1, format: NV12
19:17:06.220: ---------------------------------
19:17:06.221: [FFmpeg libopus encoder: 'Track1'] bitrate: 160, channels: 2, channel_layout: stereo, track: 1
19:17:06.221:
19:17:06.221: ---------------------------------
19:17:06.221: [FFmpeg libopus encoder: 'Track2'] bitrate: 160, channels: 2, channel_layout: stereo, track: 2
19:17:06.221:
19:17:06.221: ---------------------------------
19:17:06.221: [FFmpeg libopus encoder: 'Track3'] bitrate: 160, channels: 2, channel_layout: stereo, track: 3
19:17:06.221:
19:17:06.221: ---------------------------------
19:17:06.221: [FFmpeg libopus encoder: 'Track4'] bitrate: 160, channels: 2, channel_layout: stereo, track: 4
19:17:06.221:
19:17:06.227: ==== Recording Start ===============================================
19:17:06.228: [ffmpeg muxer: 'adv_file_output'] Writing file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-03 19-17-06.mkv'...
20:19:16.777: Output 'virtualcam_output': stopping
20:19:16.777: Output 'virtualcam_output': Total frames output: 150645
20:19:16.777: Output 'virtualcam_output': Total drawn frames: 150163 (150646 attempted)
20:19:16.777: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 483 (0.3%)
20:19:16.778: ==== Virtual Camera Stop ===========================================
20:19:16.778: Virtual camera stopped
20:21:08.012: [ffmpeg muxer: 'adv_file_output'] Output of file '/mnt/zombienas/organized_data/absolutely-unique/video/video_recordings/2025-01-03 19-17-06.mkv' stopped
20:21:08.012: Output 'adv_file_output': stopping
20:21:08.012: Output 'adv_file_output': Total frames output: 115213
20:21:08.012: Output 'adv_file_output': Total drawn frames: 115122 (115254 attempted)
20:21:08.012: Output 'adv_file_output': Number of lagged frames due to rendering lag/stalls: 132 (0.1%)
20:21:08.013: ==== Recording Stop ================================================
20:21:08.781: ==== Shutting down ==================================================
20:21:08.848: pulse-input: Stopped recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor'
20:21:08.848: pulse-input: Got 205402 packets with 246482400 frames
20:21:08.848: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
20:21:08.848: pulse-input: Got 205403 packets with 246483600 frames
20:21:08.889: All scene data cleared
20:21:08.889: ------------------------------------------------
20:21:08.958: [Scripting] Total detached callbacks: 0
20:21:08.958: Freeing OBS context data
20:21:09.016: == Profiler Results =============================
20:21:09.016: run_program_init: 3027.25 ms
20:21:09.016: ┣OBSApp::AppInit: 10.599 ms
20:21:09.016: ┃ ┗OBSApp::InitLocale: 0.775 ms
20:21:09.016: ┗OBSApp::OBSInit: 1664.27 ms
20:21:09.016: ┣obs_startup: 1.293 ms
20:21:09.017: ┗OBSBasic::OBSInit: 1644.91 ms
20:21:09.017: ┣OBSBasic::InitBasicConfig: 0.581 ms
20:21:09.017: ┣OBSBasic::ResetAudio: 0.276 ms
20:21:09.017: ┣OBSBasic::ResetVideo: 126.075 ms
20:21:09.017: ┃ ┗obs_init_graphics: 124.244 ms
20:21:09.017: ┃ ┗shader compilation: 34.866 ms
20:21:09.017: ┣OBSBasic::InitOBSCallbacks: 0.006 ms
20:21:09.017: ┣OBSBasic::InitHotkeys: 0.025 ms
20:21:09.017: ┣obs_load_all_modules2: 706.692 ms
20:21:09.017: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
20:21:09.017: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
20:21:09.017: ┃ ┣obs_init_module(decklink.so): 0.132 ms
20:21:09.017: ┃ ┣obs_init_module(frontend-tools.so): 71.569 ms
20:21:09.017: ┃ ┣obs_init_module(image-source.so): 0.011 ms
20:21:09.017: ┃ ┣obs_init_module(linux-alsa.so): 0.003 ms
20:21:09.017: ┃ ┣obs_init_module(linux-capture.so): 0.392 ms
20:21:09.017: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
20:21:09.017: ┃ ┣obs_init_module(linux-pipewire.so): 13.779 ms
20:21:09.017: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.006 ms
20:21:09.017: ┃ ┣obs_init_module(linux-v4l2.so): 0.109 ms
20:21:09.017: ┃ ┣obs_init_module(obs-ffmpeg.so): 114.776 ms
20:21:09.017: ┃ ┣obs_init_module(obs-filters.so): 0.024 ms
20:21:09.017: ┃ ┣obs_init_module(obs-libfdk.so): 0.002 ms
20:21:09.017: ┃ ┣obs_init_module(obs-nvenc.so): 0.149 ms
20:21:09.017: ┃ ┃ ┗nvenc_check: 0.123 ms
20:21:09.017: ┃ ┣obs_init_module(obs-outputs.so): 0.006 ms
20:21:09.017: ┃ ┣obs_init_module(obs-qsv11.so): 74.517 ms
20:21:09.017: ┃ ┣obs_init_module(obs-transitions.so): 0.008 ms
20:21:09.017: ┃ ┣obs_init_module(obs-vaapi.so): 154.093 ms
20:21:09.017: ┃ ┣obs_init_module(obs-vst.so): 0.004 ms
20:21:09.017: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
20:21:09.017: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
20:21:09.017: ┃ ┣obs_init_module(rtmp-services.so): 0.516 ms
20:21:09.017: ┃ ┣obs_init_module(text-freetype2.so): 0.009 ms
20:21:09.017: ┃ ┗obs_init_module(wlrobs.so): 0.005 ms
20:21:09.017: ┣OBSBasic::InitService: 0.974 ms
20:21:09.017: ┣OBSBasic::ResetOutputs: 438.574 ms
20:21:09.017: ┣OBSBasic::CreateHotkeys: 0.027 ms
20:21:09.017: ┣OBSBasic::InitPrimitives: 0.516 ms
20:21:09.017: ┗OBSBasic::Load: 185.076 ms
20:21:09.017: obs_hotkey_thread(25 ms): min=0.06 ms, median=8.173 ms, max=205.978 ms, 99th percentile=18.737 ms, 99.6111% below 25 ms
20:21:09.017: audio_thread(Audio): min=0.004 ms, median=0.719 ms, max=45.408 ms, 99th percentile=2.804 ms
20:21:09.017: ┗receive_audio: min=0.002 ms, median=0.178 ms, max=44.522 ms, 99th percentile=0.812 ms, 2.99177 calls per parent call
20:21:09.017: ┣buffer_audio: min=0 ms, median=0.001 ms, max=0.226 ms, 99th percentile=0.006 ms
20:21:09.017: ┗do_encode: min=0.041 ms, median=0.17 ms, max=44.517 ms, 99th percentile=0.732 ms, 1.06666 calls per parent call
20:21:09.017: ┣encode(Track1): min=0.107 ms, median=0.224 ms, max=1.038 ms, 99th percentile=0.397 ms, 0.25 calls per parent call
20:21:09.017: ┣send_packet: min=0 ms, median=0.002 ms, max=44.454 ms, 99th percentile=0.611 ms
20:21:09.017: ┣encode(Track2): min=0.041 ms, median=0.168 ms, max=2.056 ms, 99th percentile=0.264 ms, 0.25 calls per parent call
20:21:09.017: ┣encode(Track3): min=0.04 ms, median=0.052 ms, max=0.524 ms, 99th percentile=0.09 ms, 0.25 calls per parent call
20:21:09.017: ┗encode(Track4): min=0.115 ms, median=0.15 ms, max=1.223 ms, 99th percentile=0.249 ms, 0.25 calls per parent call
20:21:09.017: obs_graphics_thread(33.3333 ms): min=0.041 ms, median=23.894 ms, max=229.056 ms, 99th percentile=39.381 ms, 94.5059% below 33.333 ms
20:21:09.017: ┣tick_sources: min=0 ms, median=22.62 ms, max=225.517 ms, 99th percentile=36.2 ms
20:21:09.017: ┣output_frame: min=0.026 ms, median=0.713 ms, max=9.451 ms, 99th percentile=1.712 ms
20:21:09.017: ┃ ┣gs_context(video->graphics): min=0.026 ms, median=0.216 ms, max=4.684 ms, 99th percentile=0.426 ms
20:21:09.017: ┃ ┃ ┣render_video: min=0.002 ms, median=0.125 ms, max=1.044 ms, 99th percentile=0.266 ms
20:21:09.018: ┃ ┃ ┃ ┣render_main_texture: min=0.002 ms, median=0.086 ms, max=0.934 ms, 99th percentile=0.196 ms
20:21:09.018: ┃ ┃ ┃ ┣render_convert_texture: min=0.013 ms, median=0.021 ms, max=0.902 ms, 99th percentile=0.048 ms
20:21:09.018: ┃ ┃ ┃ ┗stage_output_texture: min=0.008 ms, median=0.012 ms, max=0.42 ms, 99th percentile=0.033 ms
20:21:09.018: ┃ ┃ ┣gs_flush: min=0.015 ms, median=0.021 ms, max=3.864 ms, 99th percentile=0.038 ms
20:21:09.018: ┃ ┃ ┗download_frame: min=0 ms, median=0.059 ms, max=1.742 ms, 99th percentile=0.148 ms
20:21:09.018: ┃ ┗output_video_data: min=0.287 ms, median=0.489 ms, max=8.38 ms, 99th percentile=1.331 ms
20:21:09.018: ┗render_displays: min=0.001 ms, median=0.235 ms, max=89.818 ms, 99th percentile=9.218 ms
20:21:09.018: video_thread(video): min=0 ms, median=8.721 ms, max=200.985 ms, 99th percentile=137.843 ms
20:21:09.018: ┗receive_video: min=0.001 ms, median=6.226 ms, max=198.248 ms, 99th percentile=145.001 ms, 0.751289 calls per parent call
20:21:09.018: ┗do_encode: min=2.246 ms, median=6.225 ms, max=198.247 ms, 99th percentile=145 ms
20:21:09.018: ┣encode(advanced_video_recording): min=2.127 ms, median=6.182 ms, max=198.008 ms, 99th percentile=144.824 ms
20:21:09.018: ┗send_packet: min=0.001 ms, median=0.029 ms, max=29.525 ms, 99th percentile=0.68 ms
20:21:09.018: OBSBasicSettings::LoadThemeList: min=0.036 ms, median=0 ms, max=0.091 ms, 99th percentile=0.091 ms
20:21:09.018: =================================================
20:21:09.018: == Profiler Time Between Calls ==================
20:21:09.018: obs_hotkey_thread(25 ms): min=25.084 ms, median=33.241 ms, max=231.088 ms, 1.23811% within ±2% of 25 ms (0% lower, 98.7619% higher)
20:21:09.018: obs_graphics_thread(33.3333 ms): min=14.087 ms, median=33.333 ms, max=229.08 ms, 91.5275% within ±2% of 33.333 ms (4.31115% lower, 4.16132% higher)
20:21:09.018: =================================================
20:21:09.196: Number of memory leaks: 0

View file

@ -0,0 +1,286 @@
12:45:04.283: Using EGL/X11
12:45:04.283: CPU Name: AMD Ryzen 7 3700X 8-Core Processor
12:45:04.283: CPU Speed: 4290.242MHz
12:45:04.283: Physical Cores: 8, Logical Cores: 16
12:45:04.283: Physical Memory: 31996MB Total, 5748MB Free
12:45:04.283: Kernel Version: Linux 6.12.7-zen1-1-zen
12:45:04.283: Distribution: "Arch Linux" Unknown
12:45:04.283: Session Type: tty
12:45:04.283: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.21.1
12:45:04.288: Qt Version: 6.8.1 (runtime), 6.8.1 (compiled)
12:45:04.288: Portable mode: false
12:45:04.315: OBS 31.0.0 (linux)
12:45:04.315: ---------------------------------
12:45:04.316: ---------------------------------
12:45:04.316: audio settings reset:
12:45:04.316: samples per sec: 48000
12:45:04.316: speakers: 2
12:45:04.316: max buffering: 960 milliseconds
12:45:04.316: buffering type: dynamically increasing
12:45:04.317: ---------------------------------
12:45:04.317: Initializing OpenGL...
12:45:04.401: Loading up OpenGL on adapter Intel Mesa Intel(R) Graphics (BMG G21)
12:45:04.401: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 24.3.2-arch1.1, shading language 4.60
12:45:04.439: ---------------------------------
12:45:04.439: video settings reset:
12:45:04.439: base resolution: 1920x1080
12:45:04.439: output resolution: 1920x1080
12:45:04.439: downscale filter: Bicubic
12:45:04.439: fps: 30/1
12:45:04.439: format: NV12
12:45:04.439: YUV mode: Rec. 709/Partial
12:45:04.439: NV12 texture support enabled
12:45:04.439: P010 texture support not available
12:45:04.441: Audio monitoring device:
12:45:04.441: name: Default
12:45:04.441: id: default
12:45:04.442: ---------------------------------
12:45:04.450: Failed to load 'en-US' text for module: 'decklink-captions.so'
12:45:04.459: Failed to load 'en-US' text for module: 'decklink-output-ui.so'
12:45:04.466: A DeckLink iterator could not be created. The DeckLink drivers may not be installed
12:45:04.466: Failed to initialize module 'decklink.so'
12:45:04.616: [pipewire] No capture sources available
12:45:04.731: VAAPI: API version 1.22
12:45:04.740: FFmpeg VAAPI H264 encoding supported
12:45:04.792: FFmpeg VAAPI AV1 encoding supported
12:45:04.857: FFmpeg VAAPI HEVC encoding supported
12:45:04.887: 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:45:04.887:
12:45:04.887: NVENC not supported
12:45:04.887: Failed to initialize module 'obs-nvenc.so'
12:45:05.056: [obs-vaapi] version: 0.4.2, gst-runtime: 1.24.10
12:45:05.223: [obs-vaapi] found vah265enc
12:45:05.223: [obs-vaapi] found vaav1enc
12:45:05.223: [obs-vaapi] found vah264enc
12:45:05.223: [obs-vaapi] found vaapih265enc
12:45:05.223: [obs-vaapi] found vaapih264enc
12:45:05.299: ---------------------------------
12:45:05.299: Loaded Modules:
12:45:05.299: wlrobs.so
12:45:05.299: text-freetype2.so
12:45:05.299: rtmp-services.so
12:45:05.299: obs-x264.so
12:45:05.299: obs-webrtc.so
12:45:05.299: obs-vst.so
12:45:05.299: obs-vaapi.so
12:45:05.299: obs-transitions.so
12:45:05.299: obs-qsv11.so
12:45:05.299: obs-outputs.so
12:45:05.299: obs-libfdk.so
12:45:05.299: obs-filters.so
12:45:05.299: obs-ffmpeg.so
12:45:05.299: linux-v4l2.so
12:45:05.299: linux-pulseaudio.so
12:45:05.299: linux-pipewire.so
12:45:05.299: linux-jack.so
12:45:05.299: linux-capture.so
12:45:05.299: linux-alsa.so
12:45:05.299: image-source.so
12:45:05.299: frontend-tools.so
12:45:05.299: decklink-output-ui.so
12:45:05.299: decklink-captions.so
12:45:05.299: ---------------------------------
12:45:05.299: ---------------------------------
12:45:05.299: Available Encoders:
12:45:05.299: Video Encoders:
12:45:05.299: - ffmpeg_svt_av1 (SVT-AV1)
12:45:05.299: - ffmpeg_aom_av1 (AOM AV1)
12:45:05.299: - ffmpeg_vaapi_tex (FFmpeg VAAPI H.264)
12:45:05.299: - av1_ffmpeg_vaapi_tex (FFmpeg VAAPI AV1)
12:45:05.299: - hevc_ffmpeg_vaapi_tex (FFmpeg VAAPI HEVC)
12:45:05.299: - obs_qsv11_v2 (QuickSync H.264)
12:45:05.300: - obs_qsv11_av1 (QuickSync AV1)
12:45:05.300: - obs_qsv11_hevc (QuickSync HEVC)
12:45:05.310: - obs-va-vah265enc (VAAPI H.265 on Battlemage G21 [Intel Graphics])
12:45:05.315: - obs-va-vaav1enc (VAAPI AV1 on Battlemage G21 [Intel Graphics])
12:45:05.319: - obs-va-vah264enc (VAAPI H.264 on Battlemage G21 [Intel Graphics])
12:45:05.319: - obs-vaapi-vaapih265enc (VAAPI H.265 (Legacy))
12:45:05.319: - obs-vaapi-vaapih264enc (VAAPI H.264 (Legacy))
12:45:05.320: - obs_x264 (x264)
12:45:05.320: Audio Encoders:
12:45:05.320: - ffmpeg_aac (FFmpeg AAC)
12:45:05.320: - ffmpeg_opus (FFmpeg Opus)
12:45:05.320: - ffmpeg_pcm_s16le (FFmpeg PCM (16-bit))
12:45:05.320: - ffmpeg_pcm_s24le (FFmpeg PCM (24-bit))
12:45:05.320: - ffmpeg_pcm_f32le (FFmpeg PCM (32-bit float))
12:45:05.320: - ffmpeg_alac (FFmpeg ALAC (24-bit))
12:45:05.320: - ffmpeg_flac (FFmpeg FLAC (16-bit))
12:45:05.320: - libfdk_aac (libfdk AAC)
12:45:05.320: ==== Startup complete ===============================================
12:45:06.087: All scene data cleared
12:45:06.087: ------------------------------------------------
12:45:06.091: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
12:45:06.091: pulse-input: Audio format: s32le, 48000 Hz, 2 channels
12:45:06.091: pulse-input: Started recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor' (default)
12:45:06.091: [Loaded global audio device]: 'Desktop Audio'
12:45:06.091: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
12:45:06.091: pulse-input: Audio format: s16le, 48000 Hz, 1 channels
12:45:06.091: pulse-input: Started recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
12:45:06.091: [Loaded global audio device]: 'Mic/Aux'
12:45:06.091: pulse-input: Server name: 'PulseAudio (on PipeWire 1.2.7) 15.0.0'
12:45:06.092: pulse-input: An error occurred while getting the source info!
12:45:06.092: [Loaded global audio device]: 'HDMI Capture'
12:45:06.092: v4l2-input: Start capture from /dev/video0
12:45:06.092: v4l2-input: Unable to open device
12:45:06.092: v4l2-input: Initialization failed, errno: No such file or directory
12:45:06.092: xshm-input: Geometry 3840x2160 @ 0,0
12:45:06.099: v4l2-input: Start capture from /dev/video0
12:45:06.099: v4l2-input: Unable to open device
12:45:06.099: v4l2-input: Initialization failed, errno: No such file or directory
12:45:06.209: v4l2-input: Start capture from /dev/video0
12:45:06.209: v4l2-input: Unable to open device
12:45:06.209: v4l2-input: Initialization failed, errno: No such file or directory
12:45:06.209: v4l2-input: Start capture from /dev/video4
12:45:06.209: v4l2-input: Unable to open device
12:45:06.209: v4l2-input: Initialization failed, errno: No such file or directory
12:45:06.215: xshm-input: Geometry 3840x2160 @ 0,0
12:45:06.218: Source ID 'pipewire-desktop-capture-source' not found
12:45:06.218: Failed to create source 'Screen Capture (PipeWire)'!
12:45:06.220: Switched to scene 'screen'
12:45:06.220: ------------------------------------------------
12:45:06.220: Loaded scenes:
12:45:06.220: - scene 'Screen with camera':
12:45:06.220: - source: 'Screen Capture' (xshm_input)
12:45:06.220: - source: 'Camera Capture' (v4l2_input)
12:45:06.220: - source: 'border' (image_source)
12:45:06.220: - scene 'game with camera':
12:45:06.220: - source: 'Camera Capture' (v4l2_input)
12:45:06.220: - source: 'border' (image_source)
12:45:06.220: - source: 'capture acrd' (v4l2_input)
12:45:06.220: - scene 'game':
12:45:06.220: - source: 'Video Capture Device (V4L2)' (v4l2_input)
12:45:06.220: - scene 'game 4:3':
12:45:06.220: - source: 'Video Capture Device (V4L2)' (v4l2_input)
12:45:06.220: - scene 'screen':
12:45:06.220: - source: 'Screen Capture (XSHM)' (xshm_input)
12:45:06.220: - source: 'Text (FreeType 2)' (text_ft2_source_v2)
12:45:06.220: - source: 'Screen Capture (PipeWire)' (pipewire-desktop-capture-source)
12:45:06.220: - source: 'Wayland output(dmabuf)' (wlrobs-dmabuf)
12:45:06.220: - scene 'camera':
12:45:06.220: - source: 'Camera Capture' (v4l2_input)
12:45:06.220: - scene 'Camera with scope':
12:45:06.220: - source: 'Camera Capture' (v4l2_input)
12:45:06.220: - source: 'border' (image_source)
12:45:06.220: - source: 'scope caputre' (v4l2_input)
12:45:06.220: - scene 'game with screen':
12:45:06.220: - source: 'Video Capture Device (V4L2)' (v4l2_input)
12:45:06.220: ------------------------------------------------
12:45:06.642: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)
12:45:06.642:
12:45:07.654: Virtual camera started
12:45:07.675: ==== Virtual Camera Start ==========================================
12:45:07.675: Starting Virtual Camera output to Program
12:45:07.696: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
12:52:04.569: Get on org.freedesktop.portal.Settings returned an invalid reply
12:52:04.569: Get on org.freedesktop.portal.Settings returned an invalid reply
12:52:33.224: Settings changed (outputs)
12:52:33.224: ------------------------------------------------
12:52:35.828: Get on org.freedesktop.portal.Settings returned an invalid reply
12:52:35.828: Get on org.freedesktop.portal.Settings returned an invalid reply
12:56:59.104: Get on org.freedesktop.portal.Settings returned an invalid reply
12:56:59.104: Get on org.freedesktop.portal.Settings returned an invalid reply
12:57:03.982: Output 'virtualcam_output': stopping
12:57:03.982: Output 'virtualcam_output': Total frames output: 21487
12:57:03.982: Output 'virtualcam_output': Total drawn frames: 21397 (21488 attempted)
12:57:03.982: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 91 (0.4%)
12:57:03.982: ==== Virtual Camera Stop ===========================================
12:57:03.983: Virtual camera stopped
12:57:05.445: Get on org.freedesktop.portal.Settings returned an invalid reply
12:57:05.445: Get on org.freedesktop.portal.Settings returned an invalid reply
12:57:11.165: Settings changed (outputs)
12:57:11.165: ------------------------------------------------
12:57:12.558: Virtual camera started
12:57:12.559: ==== Virtual Camera Start ==========================================
12:57:12.559: Starting Virtual Camera output to Program
12:57:12.566: Failed to inhibit: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface “org.freedesktop.portal.Inhibit” on object at path /org/freedesktop/portal/desktop
13:09:14.796: Get on org.freedesktop.portal.Settings returned an invalid reply
13:09:14.796: Get on org.freedesktop.portal.Settings returned an invalid reply
13:09:32.594: Settings changed (outputs)
13:09:32.594: ------------------------------------------------
15:01:42.589: adding 21 milliseconds of audio buffering, total audio buffering is now 42 milliseconds (source: Mic/Aux)
15:01:42.589:
15:14:12.181: ==== Shutting down ==================================================
15:14:12.183: Output 'virtualcam_output': stopping
15:14:12.183: Output 'virtualcam_output': Total frames output: 246582
15:14:12.183: Output 'virtualcam_output': Total drawn frames: 211461 (246589 attempted)
15:14:12.183: Output 'virtualcam_output': Number of lagged frames due to rendering lag/stalls: 35128 (14.2%)
15:14:12.188: ==== Virtual Camera Stop ===========================================
15:14:12.192: Virtual camera stopped
15:14:12.207: Video stopped, number of skipped frames due to encoding lag: 833/246585 (0.3%)
15:14:12.460: pulse-input: Stopped recording from 'alsa_output.pci-0000_0f_00.4.analog-stereo.monitor'
15:14:12.461: pulse-input: Got 357852 packets with 429422400 frames
15:14:12.462: pulse-input: Stopped recording from 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'
15:14:12.462: pulse-input: Got 357853 packets with 429423600 frames
15:14:12.567: All scene data cleared
15:14:12.567: ------------------------------------------------
15:14:12.987: [Scripting] Total detached callbacks: 0
15:14:12.987: Freeing OBS context data
15:14:13.450: == Profiler Results =============================
15:14:13.450: run_program_init: 2217 ms
15:14:13.450: ┣OBSApp::AppInit: 11.836 ms
15:14:13.450: ┃ ┗OBSApp::InitLocale: 1.368 ms
15:14:13.451: ┗OBSApp::OBSInit: 2164.18 ms
15:14:13.451: ┣obs_startup: 5.021 ms
15:14:13.451: ┗OBSBasic::OBSInit: 2131.65 ms
15:14:13.451: ┣OBSBasic::InitBasicConfig: 0.571 ms
15:14:13.451: ┣OBSBasic::ResetAudio: 0.258 ms
15:14:13.451: ┣OBSBasic::ResetVideo: 124.85 ms
15:14:13.451: ┃ ┗obs_init_graphics: 122.418 ms
15:14:13.451: ┃ ┗shader compilation: 37.344 ms
15:14:13.451: ┣OBSBasic::InitOBSCallbacks: 0.005 ms
15:14:13.451: ┣OBSBasic::InitHotkeys: 0.023 ms
15:14:13.451: ┣obs_load_all_modules2: 856.923 ms
15:14:13.451: ┃ ┣obs_init_module(decklink-captions.so): 0 ms
15:14:13.451: ┃ ┣obs_init_module(decklink-output-ui.so): 0 ms
15:14:13.451: ┃ ┣obs_init_module(decklink.so): 0.116 ms
15:14:13.451: ┃ ┣obs_init_module(frontend-tools.so): 72.236 ms
15:14:13.451: ┃ ┣obs_init_module(image-source.so): 0.009 ms
15:14:13.451: ┃ ┣obs_init_module(linux-alsa.so): 0.004 ms
15:14:13.451: ┃ ┣obs_init_module(linux-capture.so): 6.837 ms
15:14:13.451: ┃ ┣obs_init_module(linux-jack.so): 0.002 ms
15:14:13.451: ┃ ┣obs_init_module(linux-pipewire.so): 13.579 ms
15:14:13.451: ┃ ┣obs_init_module(linux-pulseaudio.so): 0.005 ms
15:14:13.451: ┃ ┣obs_init_module(linux-v4l2.so): 0.113 ms
15:14:13.451: ┃ ┣obs_init_module(obs-ffmpeg.so): 183.322 ms
15:14:13.451: ┃ ┣obs_init_module(obs-filters.so): 0.027 ms
15:14:13.451: ┃ ┣obs_init_module(obs-libfdk.so): 0.001 ms
15:14:13.451: ┃ ┣obs_init_module(obs-nvenc.so): 0.134 ms
15:14:13.451: ┃ ┃ ┗nvenc_check: 0.108 ms
15:14:13.451: ┃ ┣obs_init_module(obs-outputs.so): 0.003 ms
15:14:13.451: ┃ ┣obs_init_module(obs-qsv11.so): 125.362 ms
15:14:13.451: ┃ ┣obs_init_module(obs-transitions.so): 0.015 ms
15:14:13.451: ┃ ┣obs_init_module(obs-vaapi.so): 166.885 ms
15:14:13.451: ┃ ┣obs_init_module(obs-vst.so): 0.005 ms
15:14:13.451: ┃ ┣obs_init_module(obs-webrtc.so): 0.005 ms
15:14:13.451: ┃ ┣obs_init_module(obs-x264.so): 0.002 ms
15:14:13.451: ┃ ┣obs_init_module(rtmp-services.so): 0.66 ms
15:14:13.451: ┃ ┣obs_init_module(text-freetype2.so): 0.015 ms
15:14:13.451: ┃ ┗obs_init_module(wlrobs.so): 0.005 ms
15:14:13.451: ┣OBSBasic::InitService: 1.028 ms
15:14:13.451: ┣OBSBasic::ResetOutputs: 729.622 ms
15:14:13.451: ┣OBSBasic::CreateHotkeys: 0.025 ms
15:14:13.451: ┣OBSBasic::InitPrimitives: 0.497 ms
15:14:13.451: ┗OBSBasic::Load: 174.355 ms
15:14:13.451: obs_hotkey_thread(25 ms): min=0.056 ms, median=8.301 ms, max=396.197 ms, 99th percentile=57.177 ms, 90.798% below 25 ms
15:14:13.453: audio_thread(Audio): min=0.003 ms, median=0.056 ms, max=46.639 ms, 99th percentile=1.64 ms
15:14:13.454: obs_graphics_thread(33.3333 ms): min=0.048 ms, median=25.968 ms, max=412.385 ms, 99th percentile=92.985 ms, 81.0163% below 33.333 ms
15:14:13.454: ┣tick_sources: min=0 ms, median=25.186 ms, max=402.359 ms, 99th percentile=87.114 ms
15:14:13.454: ┣output_frame: min=0.039 ms, median=0.745 ms, max=47.453 ms, 99th percentile=9.011 ms
15:14:13.454: ┃ ┣gs_context(video->graphics): min=0.039 ms, median=0.222 ms, max=19.758 ms, 99th percentile=2.252 ms
15:14:13.454: ┃ ┃ ┣render_video: min=0.007 ms, median=0.125 ms, max=18.079 ms, 99th percentile=0.421 ms
15:14:13.454: ┃ ┃ ┃ ┣render_main_texture: min=0.005 ms, median=0.087 ms, max=17.98 ms, 99th percentile=0.303 ms
15:14:13.454: ┃ ┃ ┃ ┣render_convert_texture: min=0.01 ms, median=0.02 ms, max=11.443 ms, 99th percentile=0.061 ms
15:14:13.454: ┃ ┃ ┃ ┗stage_output_texture: min=0.006 ms, median=0.012 ms, max=7.149 ms, 99th percentile=0.049 ms
15:14:13.454: ┃ ┃ ┣gs_flush: min=0.016 ms, median=0.022 ms, max=18.271 ms, 99th percentile=1.002 ms
15:14:13.454: ┃ ┃ ┗download_frame: min=0 ms, median=0.062 ms, max=18.614 ms, 99th percentile=0.275 ms
15:14:13.454: ┃ ┗output_video_data: min=0 ms, median=0.517 ms, max=46.998 ms, 99th percentile=7.969 ms
15:14:13.454: ┗render_displays: min=0.001 ms, median=0.005 ms, max=301.297 ms, 99th percentile=0.277 ms
15:14:13.454: video_thread(video): min=0.012 ms, median=2.659 ms, max=2625.32 ms, 99th percentile=47.156 ms
15:14:13.454: OBSBasicSettings::LoadThemeList: min=0.025 ms, median=0.028 ms, max=0.039 ms, 99th percentile=0.039 ms
15:14:13.454: OBSBasic::ResetOutputs: min=0.307 ms, median=3.42 ms, max=23.445 ms, 99th percentile=23.445 ms
15:14:13.454: =================================================
15:14:13.454: == Profiler Time Between Calls ==================
15:14:13.455: obs_hotkey_thread(25 ms): min=25.092 ms, median=33.374 ms, max=422.992 ms, 2.9509% within ±2% of 25 ms (0% lower, 97.0491% higher)
15:14:13.455: obs_graphics_thread(33.3333 ms): min=6.231 ms, median=33.334 ms, max=412.395 ms, 78.3449% within ±2% of 33.333 ms (3.59025% lower, 18.0649% higher)
15:14:13.455: =================================================
15:14:14.387: Number of memory leaks: 0

View file

@ -0,0 +1,89 @@
[General]
Pre19Defaults=false
Pre21Defaults=false
Pre23Defaults=false
Pre24.1Defaults=false
FirstRun=true
LastVersion=503447552
MaxLogs=10
InfoIncrement=-1
ProcessPriority=Normal
EnableAutoUpdates=true
ConfirmOnExit=true
HotkeyFocusType=NeverDisableHotkeys
InstallGUID=fe756bdf30934cf7ac79444f1dc3278ed581e6d0
[Basic]
Profile=Untitled
ProfileDir=Untitled
SceneCollection=Untitled
SceneCollectionFile=Untitled
ConfigOnNewProfile=true
[BasicWindow]
gridMode=false
geometry=AdnQywADAAAAAA8DAAAAGgAAGPwAAAWcAAAPBQAAABwAABj6AAAFmgAAAAEAAAAACgAAAA8FAAAAHAAAGPoAAAWa
DockState=AAAA/wAAAAD9AAAAAQAAAAMAAAn2AAABAfwBAAAABvsAAAAUAHMAYwBlAG4AZQBzAEQAbwBjAGsBAAAAAAAAAhoAAACYAP////sAAAAWAHMAbwB1AHIAYwBlAHMARABvAGMAawEAAAIeAAABqwAAAJgA////+wAAABIAbQBpAHgAZQByAEQAbwBjAGsBAAADzQAAAhQAAADeAP////sAAAAeAHQAcgBhAG4AcwBpAHQAaQBvAG4AcwBEAG8AYwBrAQAABeUAAAIjAAAAmgD////7AAAAGABjAG8AbgB0AHIAbwBsAHMARABvAGMAawEAAAgMAAAB6gAAAM0A////+wAAABIAcwB0AGEAdABzAEQAbwBjAGsCAAAMRAAAA+gAAAK8AAAAyAAACfYAAARBAAAABAAAAAQAAAAIAAAACPwAAAAA
PreviewEnabled=true
AlwaysOnTop=false
SceneDuplicationMode=true
SwapScenesMode=true
EditPropertiesMode=false
PreviewProgramMode=false
DocksLocked=false
SnappingEnabled=true
ScreenSnapping=true
SourceSnapping=true
CenterSnapping=false
SnapDistance=9.0
SpacingHelpersEnabled=true
RecordWhenStreaming=false
KeepRecordingWhenStreamStops=false
SysTrayEnabled=true
SysTrayWhenStarted=false
SaveProjectors=false
ShowTransitions=true
ShowListboxToolbars=true
ShowStatusBar=true
ShowSourceIcons=true
ShowContextToolbars=true
StudioModeLabels=true
VerticalVolControl=false
MultiviewMouseSwitch=true
MultiviewDrawNames=true
MultiviewDrawAreas=true
MediaControlsCountdownTimer=true
WarnBeforeStartingStream=false
WarnBeforeStoppingStream=false
WarnBeforeStoppingRecord=false
ExtraBrowserDocks=[]
SideDocks=false
[ScriptLogWindow]
geometry=AdnQywADAAAAAAABAAAAGQAAAlgAAAGoAAAAAQAAABkAAAJYAAABqAAAAAAAAAAADwAAAAABAAAAGQAAAlgAAAGo
[PropertiesWindow]
cx=720
cy=580
[Video]
Renderer=OpenGL
[Accessibility]
SelectRed=255
SelectGreen=65280
SelectBlue=16744192
MixerGreen=2522918
MixerYellow=2523007
MixerRed=2500223
MixerGreenActive=5046092
MixerYellowActive=5046271
MixerRedActive=5000447
[OBSWebSocket]
FirstLoad=false
ServerEnabled=false
ServerPort=4455
AlertsEnabled=false
AuthRequired=true
ServerPassword=UkzQ5OIFcND0ZlV1