Showing preview only (867K chars total). Download the full file or copy to clipboard to get everything.
Repository: BarRaider/obs-websocket-dotnet
Branch: master
Commit: f0ad1fefe160
Files: 131
Total size: 819.2 KB
Directory structure:
gitextract_ua3ds4ck/
├── .gitattributes
├── .github/
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ └── feedback-or-support-request.md
│ └── workflows/
│ └── dotnet-core-desktop.yml
├── .gitignore
├── LICENSE
├── README.md
├── TestClient/
│ ├── AdvancedWindow.Designer.cs
│ ├── AdvancedWindow.cs
│ ├── AdvancedWindow.resx
│ ├── App.config
│ ├── LICENSE.md
│ ├── MainWindow.Designer.cs
│ ├── MainWindow.cs
│ ├── MainWindow.resx
│ ├── Program.cs
│ ├── Properties/
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TestClient.csproj
│ └── packages.config
├── obs-websocket-dotnet/
│ ├── Communication/
│ │ ├── MessageFactory.cs
│ │ ├── MessageTypes.cs
│ │ ├── OBSAuthInfo.cs
│ │ ├── ObsCloseCodes.cs
│ │ ├── ObsDisconnectionInfo.cs
│ │ └── ServerMessage.cs
│ ├── Events.cs
│ ├── Exceptions.cs
│ ├── IOBSWebsocket.cs
│ ├── LICENSE.md
│ ├── OBSWebsocket.cs
│ ├── OBSWebsocket_Requests.cs
│ ├── Types/
│ │ ├── Events/
│ │ │ ├── CurrentPreviewSceneChangedEventArgs.cs
│ │ │ ├── CurrentProfileChangedEventArgs.cs
│ │ │ ├── CurrentProfileChangingEventArgs.cs
│ │ │ ├── CurrentSceneCollectionChangedEventArgs.cs
│ │ │ ├── CurrentSceneCollectionChangingEventArgs.cs
│ │ │ ├── CurrentSceneTransitionChangedEventArgs.cs
│ │ │ ├── CurrentSceneTransitionDurationChangedEventArgs.cs
│ │ │ ├── InputActiveStateChangedEventArgs.cs
│ │ │ ├── InputAudioBalanceChangedEventArgs.cs
│ │ │ ├── InputAudioMonitorTypeChangedEventArgs.cs
│ │ │ ├── InputAudioSyncOffsetChangedEventArgs.cs
│ │ │ ├── InputAudioTracksChangedEventArgs.cs
│ │ │ ├── InputCreatedEventArgs.cs
│ │ │ ├── InputMuteStateChangedEventArgs.cs
│ │ │ ├── InputNameChangedEventArgs.cs
│ │ │ ├── InputRemovedEventArgs.cs
│ │ │ ├── InputShowStateChangedEventArgs.cs
│ │ │ ├── InputVolumeChangedEventArgs.cs
│ │ │ ├── InputVolumeMetersEventArgs.cs
│ │ │ ├── MediaInputActionTriggeredEventArgs.cs
│ │ │ ├── MediaInputPlaybackEndedEventArgs.cs
│ │ │ ├── MediaInputPlaybackStartedEventArgs.cs
│ │ │ ├── ProfileListChangedEventArgs.cs
│ │ │ ├── ProgramSceneChangedEventArgs.cs
│ │ │ ├── RecordStateChangedEventArgs.cs
│ │ │ ├── ReplayBufferSavedEventArgs.cs
│ │ │ ├── ReplayBufferStateChangedEventArgs.cs
│ │ │ ├── SceneCollectionListChangedEventArgs.cs
│ │ │ ├── SceneCreatedEventArgs.cs
│ │ │ ├── SceneItemCreatedEventArgs.cs
│ │ │ ├── SceneItemEnableStateChangedEventArgs.cs
│ │ │ ├── SceneItemListReindexedEventArgs.cs
│ │ │ ├── SceneItemLockStateChangedEventArgs.cs
│ │ │ ├── SceneItemRemovedEventArgs.cs
│ │ │ ├── SceneItemSelectedEventArgs.cs
│ │ │ ├── SceneItemTransformEventArgs.cs
│ │ │ ├── SceneListChangedEventArgs.cs
│ │ │ ├── SceneNameChangedEventArgs.cs
│ │ │ ├── SceneRemovedEventArgs.cs
│ │ │ ├── SceneTransitionEndedEventArgs.cs
│ │ │ ├── SceneTransitionStartedEventArgs.cs
│ │ │ ├── SceneTransitionVideoEndedEventArgs.cs
│ │ │ ├── SourceFilterCreatedEventArgs.cs
│ │ │ ├── SourceFilterEnableStateChangedEventArgs.cs
│ │ │ ├── SourceFilterListReindexedEventArgs.cs
│ │ │ ├── SourceFilterNameChangedEventArgs.cs
│ │ │ ├── SourceFilterRemovedEventArgs.cs
│ │ │ ├── StreamStateChangedEventArgs.cs
│ │ │ ├── StudioModeStateChangedEventArgs.cs
│ │ │ ├── UnsupportedEventArgs.cs
│ │ │ ├── VendorEventArgs.cs
│ │ │ └── VirtualcamStateChangedEventArgs.cs
│ │ ├── FilterReorderItem.cs
│ │ ├── FilterSettings.cs
│ │ ├── GetProfileListInfo.cs
│ │ ├── GetSceneListInfo.cs
│ │ ├── GetTransitionListInfo.cs
│ │ ├── Input.cs
│ │ ├── InputBasicInfo.cs
│ │ ├── InputBrowserSourceSettings.cs
│ │ ├── InputFFMpegSettings.cs
│ │ ├── InputSettings.cs
│ │ ├── InputVolume.cs
│ │ ├── KeyModifier.cs
│ │ ├── MediaInputStatus.cs
│ │ ├── Monitor.cs
│ │ ├── OBSHotkey.cs
│ │ ├── OBSScene.cs
│ │ ├── OBSStats.cs
│ │ ├── OBSVersion.cs
│ │ ├── OBSVideoSettings.cs
│ │ ├── OutputState.cs
│ │ ├── OutputStateChanged.cs
│ │ ├── OutputStatus.cs
│ │ ├── RecordStateChanged.cs
│ │ ├── RecordingStatus.cs
│ │ ├── SceneBasicInfo.cs
│ │ ├── SceneItemBoundsType.cs
│ │ ├── SceneItemDetails.cs
│ │ ├── SceneItemSourceType.cs
│ │ ├── SceneItemTransformInfo.cs
│ │ ├── SourceActiveInfo.cs
│ │ ├── SourceTracks.cs
│ │ ├── StreamingService.cs
│ │ ├── StreamingServiceSettings.cs
│ │ ├── TransitionOverrideInfo.cs
│ │ ├── TransitionSettings.cs
│ │ ├── VirtualCamStatus.cs
│ │ └── VolumeInfo.cs
│ ├── obs-websocket-dotnet.csproj
│ └── obs-websocket-dotnet.xml
├── obs-websocket-dotnet-tests/
│ ├── UnitTest_OBSWebsocket.cs
│ ├── UnitTest_Types.cs
│ ├── obs-websocket-dotnet-tests.csproj
│ └── packages.config
└── obs-websocket-dotnet.sln
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp
###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary
###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary
###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: BarRaider
patreon: BarRaider
custom: paypal.me/BarRaider
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: ''
assignees: ''
---
**Issue Type**
# Only keep ONE of the options below:
- Bug
- Feature Request
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Versions**
OBS Version:
OBS WebSocket Version:
OBS WebSocket Dotnet (this library) Version:
OS: [e.g. Windows 10]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/ISSUE_TEMPLATE/feedback-or-support-request.md
================================================
---
name: Feedback or Support request
about: Anything that ISN'T a bug
title: "[ISSUE]"
labels: ''
assignees: ''
---
**Issue Type**
# Only keep ONE of the options below:
- Bug
- Feature Request
- Support Issue
**Describe the issue**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Versions**
OBS Version:
OBS WebSocket Version:
OBS WebSocket Dotnet (this library) Version:
OS: [e.g. Windows 10]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/workflows/dotnet-core-desktop.yml
================================================
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build, test, sign and package a WPF or Windows Forms desktop application
# built on .NET Core.
# To learn how to migrate your existing application to .NET Core,
# refer to https://docs.microsoft.com/en-us/dotnet/desktop-wpf/migration/convert-project-from-net-framework
#
# To configure this workflow:
#
# 1. Configure environment variables
# GitHub sets default environment variables for every workflow run.
# Replace the variables relative to your project in the "env" section below.
#
# 2. Signing
# Generate a signing certificate in the Windows Application
# Packaging Project or add an existing signing certificate to the project.
# Next, use PowerShell to encode the .pfx file using Base64 encoding
# by running the following Powershell script to generate the output string:
#
# $pfx_cert = Get-Content '.\SigningCertificate.pfx' -Encoding Byte
# [System.Convert]::ToBase64String($pfx_cert) | Out-File 'SigningCertificate_Encoded.txt'
#
# Open the output file, SigningCertificate_Encoded.txt, and copy the
# string inside. Then, add the string to the repo as a GitHub secret
# and name it "Base64_Encoded_Pfx."
# For more information on how to configure your signing certificate for
# this workflow, refer to https://github.com/microsoft/github-actions-for-desktop-apps#signing
#
# Finally, add the signing certificate password to the repo as a secret and name it "Pfx_Key".
# See "Build the Windows Application Packaging project" below to see how the secret is used.
#
# For more information on GitHub Actions, refer to https://github.com/features/actions
# For a complete CI/CD sample to get started with GitHub Action workflows for Desktop Applications,
# refer to https://github.com/microsoft/github-actions-for-desktop-apps
name: obs-websocket-dotnet Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
configuration: [ Release ]
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
env:
Solution_Name: obs-websocket-dotnet.sln # Replace with your solution name, i.e. MyWpfApp.sln.
Test_Project_Path: obs-websocket-dotnet-tests\obs-websocket-dotnet-tests.csproj # Replace with the path to your test project, i.e. MyWpfApp.Tests\MyWpfApp.Tests.csproj.
#Wap_Project_Directory: your-wap-project-directory-name # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package.
#Wap_Project_Path: your-wap-project-path # Replace with the path to your Wap project, i.e. MyWpf.App.Package\MyWpfApp.Package.wapproj.
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Mono auto generated files
mono_crash.*
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
Generated\ Files/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# StyleCop
StyleCopReport.xml
# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# Visual Studio Trace Files
*.e2e
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# BeatPulse healthcheck temp database
healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
.idea/
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2021 BarRaider
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# obs-websocket-dotnet
 Releases: [](https://www.nuget.org/packages/obs-websocket-dotnet)
Official .NET library (written in C#) to communicate with an obs-websocket server.
This library is available on the [NuGet gallery](https://www.nuget.org/packages/obs-websocket-dotnet)
See the `TestClient` project for a working example.
## New in v5.0.1
* Fixes for deserialization issues in MediaInputStatus
* Allow OBSVideoSettings to be updated via the API
* New ILogger support instead of writing to console
* New UnsupportedEvent event
* Updated to netstandard 2.1
Please report issues/bugs via the [Issues Tracker](https://github.com/BarRaider/obs-websocket-dotnet/issues) or discuss in our [Discord](http://discord.barraider.com)
## Dev Discussions
**Discord:** Discuss in #developers-chat in [Bar Raiders](http://discord.barraider.com)
## EOL for v4.x branch
NOTE: We will no longer be updating the v4.x branch as we move towards v5.0 (which is NOT backwards compatible).
================================================
FILE: TestClient/AdvancedWindow.Designer.cs
================================================
namespace TestClient
{
partial class AdvancedWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tbLog = new System.Windows.Forms.TextBox();
this.btnEvents = new System.Windows.Forms.Button();
this.btnSourceFilters = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.tbSourceName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.tbSceneName = new System.Windows.Forms.TextBox();
this.btnInputInfo = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.btnSourceInfo = new System.Windows.Forms.Button();
this.btnGetMonitorList = new System.Windows.Forms.Button();
this.btnTransitions = new System.Windows.Forms.Button();
this.btnGetGroupList = new System.Windows.Forms.Button();
this.btnGetInputList = new System.Windows.Forms.Button();
this.btnSourcesList = new System.Windows.Forms.Button();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.btnStopRecord = new System.Windows.Forms.Button();
this.btnRename = new System.Windows.Forms.Button();
this.btnToggleVidCapDvc = new System.Windows.Forms.Button();
this.btnTracks = new System.Windows.Forms.Button();
this.btnCreateScene = new System.Windows.Forms.Button();
this.btnDoNothing = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.SuspendLayout();
//
// tbLog
//
this.tbLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.tbLog.Location = new System.Drawing.Point(12, 80);
this.tbLog.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbLog.Multiline = true;
this.tbLog.Name = "tbLog";
this.tbLog.ReadOnly = true;
this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tbLog.Size = new System.Drawing.Size(874, 600);
this.tbLog.TabIndex = 0;
//
// btnEvents
//
this.btnEvents.Location = new System.Drawing.Point(896, 20);
this.btnEvents.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnEvents.Name = "btnEvents";
this.btnEvents.Size = new System.Drawing.Size(156, 36);
this.btnEvents.TabIndex = 1;
this.btnEvents.Text = "Events Subscribe";
this.btnEvents.UseVisualStyleBackColor = true;
this.btnEvents.Click += new System.EventHandler(this.btnEvents_Click);
//
// btnSourceFilters
//
this.btnSourceFilters.Location = new System.Drawing.Point(4, 343);
this.btnSourceFilters.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSourceFilters.Name = "btnSourceFilters";
this.btnSourceFilters.Size = new System.Drawing.Size(149, 36);
this.btnSourceFilters.TabIndex = 4;
this.btnSourceFilters.Text = "Get Source\'s Filters";
this.btnSourceFilters.UseVisualStyleBackColor = true;
this.btnSourceFilters.Click += new System.EventHandler(this.btnSourceFilters_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.tbSourceName);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.tbSceneName);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(879, 61);
this.groupBox1.TabIndex = 13;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Inputs (for buttons):";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(267, 25);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(141, 20);
this.label2.TabIndex = 3;
this.label2.Text = "Source/Input Name:";
//
// tbSourceName
//
this.tbSourceName.Location = new System.Drawing.Point(414, 25);
this.tbSourceName.Name = "tbSourceName";
this.tbSourceName.Size = new System.Drawing.Size(121, 27);
this.tbSourceName.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(7, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Scene Name:";
//
// tbSceneName
//
this.tbSceneName.Location = new System.Drawing.Point(107, 25);
this.tbSceneName.Name = "tbSceneName";
this.tbSceneName.Size = new System.Drawing.Size(121, 27);
this.tbSceneName.TabIndex = 0;
//
// btnInputInfo
//
this.btnInputInfo.Location = new System.Drawing.Point(4, 386);
this.btnInputInfo.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnInputInfo.Name = "btnInputInfo";
this.btnInputInfo.Size = new System.Drawing.Size(149, 36);
this.btnInputInfo.TabIndex = 15;
this.btnInputInfo.Text = "Get Input Settings";
this.btnInputInfo.UseVisualStyleBackColor = true;
this.btnInputInfo.Click += new System.EventHandler(this.btnInputInfo_Click);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(897, 63);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(162, 621);
this.tabControl1.TabIndex = 17;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.btnDoNothing);
this.tabPage1.Controls.Add(this.btnSourceInfo);
this.tabPage1.Controls.Add(this.btnGetMonitorList);
this.tabPage1.Controls.Add(this.btnInputInfo);
this.tabPage1.Controls.Add(this.btnTransitions);
this.tabPage1.Controls.Add(this.btnGetGroupList);
this.tabPage1.Controls.Add(this.btnGetInputList);
this.tabPage1.Controls.Add(this.btnSourcesList);
this.tabPage1.Controls.Add(this.btnSourceFilters);
this.tabPage1.Location = new System.Drawing.Point(4, 29);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(154, 588);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "1";
this.tabPage1.UseVisualStyleBackColor = true;
//
// btnSourceInfo
//
this.btnSourceInfo.Location = new System.Drawing.Point(4, 300);
this.btnSourceInfo.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSourceInfo.Name = "btnSourceInfo";
this.btnSourceInfo.Size = new System.Drawing.Size(149, 36);
this.btnSourceInfo.TabIndex = 21;
this.btnSourceInfo.Text = "Get Source Info";
this.btnSourceInfo.UseVisualStyleBackColor = true;
this.btnSourceInfo.Click += new System.EventHandler(this.btnSourceInfo_Click);
//
// btnGetMonitorList
//
this.btnGetMonitorList.Location = new System.Drawing.Point(4, 139);
this.btnGetMonitorList.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetMonitorList.Name = "btnGetMonitorList";
this.btnGetMonitorList.Size = new System.Drawing.Size(149, 36);
this.btnGetMonitorList.TabIndex = 19;
this.btnGetMonitorList.Text = "List Monitors";
this.btnGetMonitorList.UseVisualStyleBackColor = true;
this.btnGetMonitorList.Click += new System.EventHandler(this.btnGetMonitorList_Click);
//
// btnTransitions
//
this.btnTransitions.Location = new System.Drawing.Point(4, 183);
this.btnTransitions.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnTransitions.Name = "btnTransitions";
this.btnTransitions.Size = new System.Drawing.Size(149, 36);
this.btnTransitions.TabIndex = 18;
this.btnTransitions.Text = "List Transitions";
this.btnTransitions.UseVisualStyleBackColor = true;
this.btnTransitions.Click += new System.EventHandler(this.btnTransition_Click);
//
// btnGetGroupList
//
this.btnGetGroupList.Location = new System.Drawing.Point(4, 95);
this.btnGetGroupList.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetGroupList.Name = "btnGetGroupList";
this.btnGetGroupList.Size = new System.Drawing.Size(149, 36);
this.btnGetGroupList.TabIndex = 17;
this.btnGetGroupList.Text = "List Groups";
this.btnGetGroupList.UseVisualStyleBackColor = true;
this.btnGetGroupList.Click += new System.EventHandler(this.btnGetGroupList_Click);
//
// btnGetInputList
//
this.btnGetInputList.Location = new System.Drawing.Point(4, 51);
this.btnGetInputList.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetInputList.Name = "btnGetInputList";
this.btnGetInputList.Size = new System.Drawing.Size(149, 36);
this.btnGetInputList.TabIndex = 16;
this.btnGetInputList.Text = "List Inputs";
this.btnGetInputList.UseVisualStyleBackColor = true;
this.btnGetInputList.Click += new System.EventHandler(this.btnGetInputList_Click);
//
// btnSourcesList
//
this.btnSourcesList.Location = new System.Drawing.Point(4, 7);
this.btnSourcesList.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSourcesList.Name = "btnSourcesList";
this.btnSourcesList.Size = new System.Drawing.Size(149, 36);
this.btnSourcesList.TabIndex = 15;
this.btnSourcesList.Text = "List Sources";
this.btnSourcesList.UseVisualStyleBackColor = true;
this.btnSourcesList.Click += new System.EventHandler(this.btnSourcesList_Click);
//
// tabPage2
//
this.tabPage2.Controls.Add(this.btnStopRecord);
this.tabPage2.Controls.Add(this.btnRename);
this.tabPage2.Controls.Add(this.btnToggleVidCapDvc);
this.tabPage2.Controls.Add(this.btnTracks);
this.tabPage2.Controls.Add(this.btnCreateScene);
this.tabPage2.Location = new System.Drawing.Point(4, 29);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(154, 588);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "2";
this.tabPage2.UseVisualStyleBackColor = true;
//
// btnStopRecord
//
this.btnStopRecord.Location = new System.Drawing.Point(2, 230);
this.btnStopRecord.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btnStopRecord.Name = "btnStopRecord";
this.btnStopRecord.Size = new System.Drawing.Size(149, 36);
this.btnStopRecord.TabIndex = 25;
this.btnStopRecord.Text = "Stop Record";
this.btnStopRecord.UseVisualStyleBackColor = true;
this.btnStopRecord.Click += new System.EventHandler(this.btnStopRecord_Click);
//
// btnRename
//
this.btnRename.Location = new System.Drawing.Point(2, 51);
this.btnRename.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnRename.Name = "btnRename";
this.btnRename.Size = new System.Drawing.Size(149, 36);
this.btnRename.TabIndex = 24;
this.btnRename.Text = "Source Rename";
this.btnRename.UseVisualStyleBackColor = true;
//
// btnToggleVidCapDvc
//
this.btnToggleVidCapDvc.Location = new System.Drawing.Point(2, 186);
this.btnToggleVidCapDvc.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.btnToggleVidCapDvc.Name = "btnToggleVidCapDvc";
this.btnToggleVidCapDvc.Size = new System.Drawing.Size(149, 36);
this.btnToggleVidCapDvc.TabIndex = 23;
this.btnToggleVidCapDvc.Text = "Toggle VidCapDvc";
this.btnToggleVidCapDvc.UseVisualStyleBackColor = true;
this.btnToggleVidCapDvc.Click += new System.EventHandler(this.btnToggleVidCapDvc_Click);
//
// btnTracks
//
this.btnTracks.Location = new System.Drawing.Point(2, 141);
this.btnTracks.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnTracks.Name = "btnTracks";
this.btnTracks.Size = new System.Drawing.Size(149, 36);
this.btnTracks.TabIndex = 22;
this.btnTracks.Text = "Tracks";
this.btnTracks.UseVisualStyleBackColor = true;
this.btnTracks.Click += new System.EventHandler(this.btnTracks_Click);
//
// btnCreateScene
//
this.btnCreateScene.Location = new System.Drawing.Point(2, 7);
this.btnCreateScene.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnCreateScene.Name = "btnCreateScene";
this.btnCreateScene.Size = new System.Drawing.Size(149, 36);
this.btnCreateScene.TabIndex = 21;
this.btnCreateScene.Text = "Create Scene";
this.btnCreateScene.UseVisualStyleBackColor = true;
this.btnCreateScene.Click += new System.EventHandler(this.btnCreateScene_Click);
//
// btnDoNothing
//
this.btnDoNothing.Location = new System.Drawing.Point(2, 545);
this.btnDoNothing.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnDoNothing.Name = "btnDoNothing";
this.btnDoNothing.Size = new System.Drawing.Size(149, 36);
this.btnDoNothing.TabIndex = 22;
this.btnDoNothing.Text = "Do Nothing";
this.btnDoNothing.UseVisualStyleBackColor = true;
this.btnDoNothing.Click += new System.EventHandler(this.btnDoNothing_Click);
//
// AdvancedWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1111, 692);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnEvents);
this.Controls.Add(this.tbLog);
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AdvancedWindow";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "AdvancedWindow";
this.Load += new System.EventHandler(this.AdvancedWindow_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox tbLog;
private System.Windows.Forms.Button btnEvents;
private System.Windows.Forms.Button btnSourceFilters;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox tbSceneName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tbSourceName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnInputInfo;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.Button btnTransitions;
private System.Windows.Forms.Button btnGetGroupList;
private System.Windows.Forms.Button btnGetInputList;
private System.Windows.Forms.Button btnSourcesList;
private System.Windows.Forms.Button btnSourceInfo;
private System.Windows.Forms.Button btnGetMonitorList;
private System.Windows.Forms.Button btnToggleVidCapDvc;
private System.Windows.Forms.Button btnTracks;
private System.Windows.Forms.Button btnCreateScene;
private System.Windows.Forms.Button btnRename;
private System.Windows.Forms.Button btnStopRecord;
private System.Windows.Forms.Button btnDoNothing;
}
}
================================================
FILE: TestClient/AdvancedWindow.cs
================================================
using Newtonsoft.Json.Linq;
using OBSWebsocketDotNet;
using OBSWebsocketDotNet.Types;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using OBSWebsocketDotNet.Types.Events;
namespace TestClient
{
public partial class AdvancedWindow : Form
{
#pragma warning disable IDE1006 // Naming Styles
// Source to test on
private readonly Random random = new Random();
protected OBSWebsocket obs;
public void SetOBS(OBSWebsocket obs)
{
this.obs = obs;
}
public AdvancedWindow()
{
InitializeComponent();
}
private void AdvancedWindow_Load(object sender, EventArgs e)
{
}
private void btnEvents_Click(object sender, EventArgs e)
{
if (obs == null)
{
LogMessage("Error: OBS is null!");
return;
}
obs.StreamStateChanged += Obs_StreamStateChanged;
obs.RecordStateChanged += Obs_RecordStateChanged;
obs.Disconnected += Obs_Disconnected;
obs.CurrentProgramSceneChanged += Obs_CurrentProgramSceneChanged;
obs.CurrentPreviewSceneChanged += Obs_CurrentPreviewSceneChanged;
obs.CurrentSceneCollectionChanged += Obs_CurrentSceneCollectionChanged;
obs.CurrentSceneTransitionChanged += Obs_CurrentSceneTransitionChanged;
obs.CurrentSceneTransitionDurationChanged += Obs_CurrentSceneTransitionDurationChanged;
obs.CurrentProfileChanged += Obs_CurrentProfileChanged;
obs.InputActiveStateChanged += Obs_InputActiveStateChanged;
obs.InputMuteStateChanged += Obs_InputMuteStateChanged;
obs.InputVolumeChanged += OBS_onInputVolumeChanged;
obs.ProfileListChanged += Obs_ProfileListChanged;
obs.ReplayBufferStateChanged += Obs_ReplayBufferStateChanged;
obs.ReplayBufferSaved += Obs_ReplayBufferSaved;
obs.SceneCollectionListChanged += Obs_SceneCollectionListChanged;
obs.SceneItemCreated += Obs_SceneItemCreated;
obs.SceneItemRemoved += Obs_SceneItemRemoved;
obs.SceneItemSelected += Obs_SceneItemSelected;
obs.SceneItemLockStateChanged += OBS_onSceneItemLockStateChanged;
obs.SceneItemEnableStateChanged += OBS_onSceneItemEnableStateChanged;
obs.SceneItemTransformChanged += Obs_SceneItemTransformChanged;
obs.SceneItemListReindexed += OBS_onSceneItemListIndexingChanged;
obs.SceneListChanged += Obs_SceneListChanged;
obs.SceneTransitionStarted += OBS_onSceneTransitionStarted;
obs.SceneTransitionEnded += OBS_onSceneTransitionEnded;
obs.SceneTransitionVideoEnded += OBS_onSceneTransitionVideoEnded;
obs.SourceFilterCreated += OBS_onSourceFilterCreated;
obs.SourceFilterEnableStateChanged += OBS_onSourceFilterEnableStateChanged;
obs.SourceFilterRemoved += OBS_onSourceFilterRemoved;
obs.SourceFilterListReindexed += OBS_onSourceFilterListReindexed;
obs.StudioModeStateChanged += Obs_StudioModeStateChanged;
obs.VirtualcamStateChanged += Obs_VirtualcamStateChanged;
}
private void Obs_InputActiveStateChanged(object sender, InputActiveStateChangedEventArgs args)
{
LogMessage($"[InputActiveStateChanged] Name: {args.InputName} Video Active: {args.VideoActive}");
}
private void Obs_InputMuteStateChanged(object sender, InputMuteStateChangedEventArgs args)
{
LogMessage($"[InputMuteStateChanged] Name: {args.InputName} Muted: {args.InputMuted}");
}
private void Obs_SceneItemTransformChanged(object sender, SceneItemTransformEventArgs args)
{
LogMessage($"[SceneItemTransformChanged] Scene: {args.SceneName} ItemId: {args.SceneItemId} Transform: {args.Transform.X},{args.Transform.Y}");
}
private void Obs_SceneItemSelected(object sender, SceneItemSelectedEventArgs args)
{
LogMessage($"[SceneItemSelected] Scene: {args.SceneName} ItemId: {args.SceneItemId}");
}
private void Obs_Disconnected(object sender, OBSWebsocketDotNet.Communication.ObsDisconnectionInfo e)
{
LogMessage($"[OBS DISCONNECTED] CloseCode: {e.ObsCloseCode} Reason: {e.DisconnectReason} Type: {e.WebsocketDisconnectionInfo?.Type} Exception: {e.WebsocketDisconnectionInfo?.Exception?.Message}");
}
private void Obs_StudioModeStateChanged(object sender, StudioModeStateChangedEventArgs args)
{
LogMessage($"[Preview/Studio ModeChanged] Enabled: {args.StudioModeEnabled}");
}
private void Obs_ReplayBufferSaved(object sender, ReplayBufferSavedEventArgs args)
{
LogMessage($"[ReplayBufferSaved] Save Location: {args.SavedReplayPath}");
}
private void Obs_ReplayBufferStateChanged(object sender, ReplayBufferStateChangedEventArgs args)
{
LogMessage($"[ReplayBufferStateChanged] Active: {args.OutputState.IsActive} State: {args.OutputState.StateStr} {args.OutputState.State}");
}
private void Obs_RecordStateChanged(object sender, RecordStateChangedEventArgs args)
{
LogMessage($"[RecordingStateChanged] Active: {args.OutputState.IsActive} Output: {args.OutputState.OutputPath} State: {args.OutputState.StateStr} {args.OutputState.State}");
}
private void Obs_StreamStateChanged(object sender, StreamStateChangedEventArgs args)
{
LogMessage($"[StreamStateChanged] Active: {args.OutputState.IsActive} State: {args.OutputState.StateStr} {args.OutputState.State}");
}
private void Obs_VirtualcamStateChanged(object sender, VirtualcamStateChangedEventArgs args)
{
LogMessage($"[VirtualcamStateChanged] Active: {args.OutputState.IsActive} State: {args.OutputState.StateStr} {args.OutputState.State}");
}
private void Obs_ProfileListChanged(object sender, ProfileListChangedEventArgs args)
{
LogMessage($"[ProfileListchanged] Count: {args.Profiles.Count}");
foreach (var profile in args.Profiles)
{
LogMessage($"\t{profile}");
}
}
private void Obs_CurrentProfileChanged(object sender, CurrentProfileChangedEventArgs args)
{
LogMessage($"[CurrentProfileChanged] Current: {args.ProfileName}");
}
private void Obs_CurrentSceneTransitionDurationChanged(object sender, CurrentSceneTransitionDurationChangedEventArgs args)
{
LogMessage($"[CurrentSceneTransitionDurationChanged] Current: {args.TransitionDuration}");
}
private void Obs_CurrentSceneTransitionChanged(object sender, CurrentSceneTransitionChangedEventArgs args)
{
LogMessage($"[CurrentSceneTransitionChanged] Current: {args.TransitionName}");
}
private void Obs_SceneCollectionListChanged(object sender, SceneCollectionListChangedEventArgs args)
{
LogMessage($"[SceneCollectionListChanged] Count: {args.SceneCollections.Count}");
foreach (var sc in args.SceneCollections)
{
LogMessage($"\t{sc}");
}
}
private void Obs_CurrentSceneCollectionChanged(object sender, CurrentSceneCollectionChangedEventArgs args)
{
LogMessage($"[CurrentSceneCollectionChanged] Current: {args.SceneCollectionName}");
}
private void Obs_SceneItemRemoved(object sender, SceneItemRemovedEventArgs args)
{
LogMessage($"[SceneItemRemoved] Scene: {args.SourceName} Source: {args.SourceName} ItemId: {args.SceneItemId}");
}
private void Obs_SceneItemCreated(object sender, SceneItemCreatedEventArgs args)
{
LogMessage($"[SceneItemCreated] Scene: {args.SourceName} Source: {args.SourceName} ItemId: {args.SceneItemId} ItemIndex: {args.SceneItemIndex}");
}
private void Obs_SceneListChanged(object sender, SceneListChangedEventArgs args)
{
LogMessage($"[SceneListChanged] Count: {args.Scenes.Count}");
foreach (var scene in args.Scenes)
{
LogMessage($"\n{scene}");
}
}
private void Obs_CurrentProgramSceneChanged(object sender, ProgramSceneChangedEventArgs args)
{
LogMessage($"[SceneChanged] Current: {args.SceneName}");
}
private void Obs_CurrentPreviewSceneChanged(object sender, CurrentPreviewSceneChangedEventArgs args)
{
LogMessage($"[Preview/Studio SceneChanged] Current: {args.SceneName}");
}
private void OBS_onInputVolumeChanged(object sender, InputVolumeChangedEventArgs args)
{
LogMessage($"[SourceVolumeChanged] Source: {args.Volume.InputName} Volume: {args.Volume.InputVolumeMul} VolumeDB: {args.Volume.InputVolumeDb}");
}
private void OBS_onSceneItemEnableStateChanged(object sender, SceneItemEnableStateChangedEventArgs args)
{
LogMessage($"[SceneItemEnableStateChanged] Scene: {args.SceneName} ItemId: {args.SceneItemId} Enabled?: {args.SceneItemEnabled}");
}
private void OBS_onSceneItemLockStateChanged(object sender, SceneItemLockStateChangedEventArgs args)
{
LogMessage($"[SceneItemLockStateChanged] Scene: {args.SceneName} ItemId: {args.SceneItemId} IsLocked: {args.SceneItemLocked}");
}
private void OBS_onSourceFilterListReindexed(object sender, SourceFilterListReindexedEventArgs args)
{
LogMessage($"[SourceFilterListReindexed] Source: {args.SourceName}");
foreach (var filter in args.Filters)
{
LogMessage($"\t{filter.Name}");
}
}
private void OBS_onSceneItemListIndexingChanged(object sender, SceneItemListReindexedEventArgs args)
{
LogMessage($"[SceneItemListReindexed] Scene: {args.SceneName}{Environment.NewLine}\tSceneItems: {args.SceneItems}");
}
private void OBS_onSourceFilterEnableStateChanged(object sender, SourceFilterEnableStateChangedEventArgs args)
{
LogMessage($"[SourceFilterEnableStateChanged] Source: {args.SourceName} Filter: {args.FilterName} Enabled: {args.FilterEnabled}");
}
private void OBS_onSourceFilterRemoved(object sender, SourceFilterRemovedEventArgs args)
{
LogMessage($"[SourceFilterRemoved] Source: {args.SourceName} Filter: {args.FilterName}");
}
private void OBS_onSourceFilterCreated(object sender, SourceFilterCreatedEventArgs args)
{
LogMessage($"[SourceFilterCreated] Source: {args.SourceName} Filter: {args.FilterName} FilterKind: {args.FilterKind} FilterIndex: {args.FilterIndex}{Environment.NewLine}\tSettings: {args.FilterSettings}{Environment.NewLine}\tDefaultSettings: {args.DefaultFilterSettings}");
}
private void OBS_onSceneTransitionVideoEnded(object sender, SceneTransitionVideoEndedEventArgs args)
{
LogMessage($"[SceneTransitionVideoEnded] Name: {args.TransitionName}");
}
private void OBS_onSceneTransitionEnded(object sender, SceneTransitionEndedEventArgs args)
{
LogMessage($"[SceneTransitionEnded] Name: {args.TransitionName}");
}
private void OBS_onSceneTransitionStarted(object sender, SceneTransitionStartedEventArgs args)
{
LogMessage($"[SceneTransitionStarted] Name: {args.TransitionName}");
}
private void LogMessage(string message)
{
if (InvokeRequired)
{
this.Invoke(new MethodInvoker(() =>
{
tbLog.AppendText($"{Environment.NewLine}[{DateTime.Now:HH:mm:ss}]{message}");
}));
}
else
{
tbLog.AppendText($"{Environment.NewLine}[{DateTime.Now:HH:mm:ss}]{message}");
}
}
private void btnRename_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(tbSourceName.Text))
{
MessageBox.Show("Enter name of Source in input box");
return;
}
string source = tbSourceName.Text;
var active = obs.GetSourceActive(source).VideoActive;
LogMessage($"GetSourceActive for {source}: {active}. Renaming source");
obs.SetInputName(source, source + random.Next(100));
}
private void btnSourceInfo_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(tbSceneName.Text))
{
MessageBox.Show("Enter name of Scene in input box");
return;
}
if (String.IsNullOrEmpty(tbSourceName.Text))
{
MessageBox.Show("Enter name of Source in input box");
return;
}
string scene = tbSceneName.Text;
string source = tbSourceName.Text;
int itemId = obs.GetSceneItemId(scene, source, 0);
LogMessage($"Item Id for {source} is {itemId}");
bool isEnabled = obs.GetSceneItemEnabled(scene, itemId);
LogMessage($"Source Enabled: {isEnabled}");
bool isLocked = obs.GetSceneItemLocked(scene, itemId);
LogMessage($"Source Locked: {isLocked}");
JObject data = obs.GetSceneItemTransformRaw(scene, itemId);
LogMessage($"Raw Data: {data}");
var transform = obs.GetSceneItemTransform(scene, itemId);
LogMessage($"Transform Object: X: {transform.X}, Y: {transform.Y}, ScaleX: {transform.ScaleX}, ScaleY: {transform.ScaleY}, Height: {transform.Height}, Width: {transform.Width}, SourceHeight: {transform.SourceHeight}, SourceWidth: {transform.SourceWidth}, Rotation: {transform.Rotation}, Crop Top: {transform.CropTop}, Crop Bottom: {transform.CropBottom}, Crop Left: {transform.CropLeft}, Crop Right: {transform.CropRight}");
LogMessage($"Alignment: {transform.Alignnment}, BoundsHeight: {transform.BoundsHeight}, BoundsWidth: {transform.BoundsWidth}, BoundsType: {transform.BoundsType}");
}
private void btnSourceFilters_Click(object sender, EventArgs e)
{
try
{
if (String.IsNullOrEmpty(tbSourceName.Text))
{
MessageBox.Show("Enter name of Source in input box");
return;
}
string source = tbSourceName.Text;
LogMessage("GetSourceFilters:");
var filters = obs.GetSourceFilterList(source);
foreach (var filter in filters)
{
LogFilter(filter);
}
var firstFilter = filters.FirstOrDefault();
if (firstFilter == null)
{
LogMessage("ERROR: No filters found");
return;
}
LogMessage("GetSourceFilterInfo:");
LogFilter(obs.GetSourceFilter(source, firstFilter.Name));
}
catch (Exception ex)
{
LogMessage($"ERROR: {ex}");
}
}
private void LogFilter(FilterSettings filter)
{
LogMessage($"Filter: {filter.Name} Type: {filter.Kind} Enabled: {filter.IsEnabled}{Environment.NewLine}Settings: {filter.Settings}");
}
private void btnCreateScene_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(tbSceneName.Text))
{
MessageBox.Show("Enter name of Scene in input box");
return;
}
string newScene = tbSceneName.Text;
obs.CreateScene(newScene);
var createdScene = obs.GetSceneList().Scenes.FirstOrDefault(s => s.Name == newScene);
if (createdScene == null)
{
LogMessage($"ERROR: Scene was not created!");
return;
}
LogMessage($"Created scene: {createdScene.Name}");
}
private void btnOutputs_Click(object sender, EventArgs e)
{
// TODO refactor for v5.0.0 if possible
/*LogMessage("Testing ListOutputs:");
var outputs = obs.ListOutputs();
foreach (var output in outputs)
{
LogOutput(output);
}
LogMessage("Testing GetOutputInfo:");
var firstOutput = outputs.Skip(1).FirstOrDefault();
if (firstOutput == null)
{
LogMessage($"ERROR: No outputs retrieved!");
return;
}*/
// TODO: Reuse when properly works on Windows
/* Output information does not work properly on OBS Websocket Window
string outputName = firstOutput.Name;
var retrievedOutput = obs.GetOutputInfo(outputName);
LogOutput(retrievedOutput);
LogMessage("Testing StartOutput:");
obs.StartOutput(outputName);
retrievedOutput = obs.GetOutputInfo(outputName);
LogOutput(retrievedOutput);
LogMessage("Testing StopOutput:");
obs.StopOutput(outputName);
retrievedOutput = obs.GetOutputInfo(outputName);
LogOutput(retrievedOutput);
*/
}
private void btnTransition_Click(object sender, EventArgs e)
{
LogMessage($"Getting Transitions");
var transitions = obs.GetSceneTransitionList();
LogMessage($"Found {transitions.Transitions.Count} transitions. Active: {transitions.CurrentTransition}");
var enteringTransition = obs.GetCurrentSceneTransition();
foreach (var transition in transitions.Transitions)
{
obs.SetCurrentSceneTransition(transition.Name);
var activeTransition = obs.GetCurrentSceneTransition();
var info = activeTransition.Settings;
info ??= new JObject();
LogMessage($"Transition: {transition.Name} has {info.Count} settings");
}
obs.SetCurrentSceneTransition(enteringTransition.Name);
}
private void btnTracks_Click(object sender, EventArgs e)
{
try
{
if (String.IsNullOrEmpty(tbSourceName.Text))
{
MessageBox.Show("Enter name of Source in input box");
return;
}
string source = tbSourceName.Text;
LogMessage($"Getting tracks for source {source}:");
var tracks = obs.GetInputAudioTracks(source);
if (tracks == null)
{
LogMessage("ERROR: No tracks returned");
return;
}
LogMessage($"Active Tracks: 1 {tracks.IsTrack1Active}, 2 {tracks.IsTrack2Active}, 3 {tracks.IsTrack3Active}, 4 {tracks.IsTrack4Active}, 5 {tracks.IsTrack5Active}, 6 {tracks.IsTrack6Active}");
bool trackToggle = !tracks.IsTrack3Active;
LogMessage($"Setting Track 3 to {trackToggle}");
// TODO: Get track settings structure to set track values appropriately
//obs.SetInputAudioTracks(SOURCE_NAME, 3, trackToggle);
tracks = obs.GetInputAudioTracks(source);
LogMessage($"Active Tracks: 1 {tracks.IsTrack1Active}, 2 {tracks.IsTrack2Active}, 3 {tracks.IsTrack3Active}, 4 {tracks.IsTrack4Active}, 5 {tracks.IsTrack5Active}, 6 {tracks.IsTrack6Active}");
LogMessage($"Value is {tracks.IsTrack3Active} expected {trackToggle}");
if (tracks.IsTrack3Active != trackToggle)
{
LogMessage("ERROR: FAILED!");
return;
}
trackToggle = !tracks.IsTrack3Active;
LogMessage($"Setting Track 3 back to to {trackToggle}");
// TODO: Get track settings structure to set track values appropriately
//obs.SetInputAudioTracks(SOURCE_NAME, 3, trackToggle);
tracks = obs.GetInputAudioTracks(source);
LogMessage($"Active Tracks: 1 {tracks.IsTrack1Active}, 2 {tracks.IsTrack2Active}, 3 {tracks.IsTrack3Active}, 4 {tracks.IsTrack4Active}, 5 {tracks.IsTrack5Active}, 6 {tracks.IsTrack6Active}");
LogMessage($"Value is {tracks.IsTrack3Active} expected {trackToggle}");
if (tracks.IsTrack3Active != trackToggle)
{
LogMessage("ERROR: FAILED!");
return;
}
}
catch (Exception ex)
{
LogMessage($"ERROR: {ex}");
}
}
private void btnToggleVidCapDvc_Click(object sender, EventArgs e)
{
var sceneName = obs.GetCurrentProgramScene();
var sourceItems = obs.GetSceneItemList(sceneName);
var vidCapItems = sourceItems.Where(x => x.SourceKind.Equals("dshow_input"));
var itemListSettings = new List<InputSettings>();
foreach (var vidCapItem in vidCapItems)
{
var enabled = obs.GetSceneItemEnabled(sceneName, vidCapItem.ItemId);
obs.SetSceneItemEnabled(sceneName, vidCapItem.ItemId, enabled ? false : true);
LogMessage($"{vidCapItem.SourceName} active button toggled.");
}
}
private void btnGetInputList_Click(object sender, EventArgs e)
{
LogMessage("Getting OBS Input List...");
var inputList = obs.GetInputList();
foreach (var input in inputList)
{
LogMessage($"{input.InputName} {input.InputKind} {input.UnversionedKind}");
}
LogMessage("Getting Input Kind list");
var inputKinds = obs.GetInputKindList();
foreach (var kind in inputKinds)
{
LogMessage($"{kind}\n");
}
}
private void btnGetGroupList_Click(object sender, EventArgs e)
{
LogMessage("Getting Group Item List...");
var groupItems = obs.GetGroupList();
foreach (var groupItem in groupItems)
{
LogMessage(groupItem.ToString());
}
}
private void btnGetMonitorList_Click(object sender, EventArgs e)
{
LogMessage("Getting Monitor List...");
var monitorList = obs.GetMonitorList();
foreach (var monitor in monitorList)
{
LogMessage($"{monitor.Index} {monitor.Name} {monitor.Width}x{monitor.Height} {monitor.PositionX},{monitor.PositionY}");
}
}
private void btnInputInfo_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(tbSourceName.Text))
{
MessageBox.Show("Enter name of Input in input box");
return;
}
string input = tbSourceName.Text;
var inputSettings = obs.GetInputSettings(input);
LogMessage($"Name: {inputSettings.InputName} Kind: {inputSettings.InputKind} \r\nSettings: {inputSettings.Settings}");
var defaults = obs.GetInputDefaultSettings(inputSettings.InputKind);
LogMessage($"*** Defaults for {inputSettings.InputKind} ***:\r\n {defaults}");
}
private void btnSourcesList_Click(object sender, EventArgs e)
{
var scenes = obs.GetSceneList();
foreach (var scene in scenes.Scenes)
{
LogMessage($"Scene: {scene.Name} Index: {scene.Index}");
var sources = obs.GetSceneItemList(scene.Name);
LogMessage($"\t Total Items: {sources.Count} \tItems' Names: {String.Join(',', sources.Select(i => i.SourceName).ToArray())}");
}
}
private void btnStopRecord_Click(object sender, EventArgs e)
{
string output = obs.StopRecord();
LogMessage($"Stop record: Output is {output}");
}
private void btnDoNothing_Click(object sender, EventArgs e)
{
}
#pragma warning restore IDE1006 // Naming Styles
}
}
================================================
FILE: TestClient/AdvancedWindow.resx
================================================
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
================================================
FILE: TestClient/App.config
================================================
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>
================================================
FILE: TestClient/LICENSE.md
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
{one line to give the program's name and a brief idea of what it does.}
Copyright (C) {year} {name of author}
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
{project} Copyright (C) {year} {fullname}
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
================================================
FILE: TestClient/MainWindow.Designer.cs
================================================
/*
TestClient for obs-websocket-dotnet
Copyright (C) 2021 Stéphane Lepin, BarRaider
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <https://www.gnu.org/licenses/>
*/
namespace TestClient
{
partial class MainWindow
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.btnConnect = new System.Windows.Forms.Button();
this.txtServerIP = new System.Windows.Forms.TextBox();
this.txtServerPassword = new System.Windows.Forms.TextBox();
this.tvScenes = new System.Windows.Forms.TreeView();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnSetCurrentScene = new System.Windows.Forms.Button();
this.btnGetCurrentScene = new System.Windows.Forms.Button();
this.btnListScenes = new System.Windows.Forms.Button();
this.tbCurrentScene = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.gbControls = new System.Windows.Forms.GroupBox();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.lblVirtualCamStatus = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.btnVirtualCamToggle = new System.Windows.Forms.Button();
this.btnVirtualCamStop = new System.Windows.Forms.Button();
this.btnVirtualCamStart = new System.Windows.Forms.Button();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.btnBrowse = new System.Windows.Forms.Button();
this.tbFolderPath = new System.Windows.Forms.TextBox();
this.btnSetPath = new System.Windows.Forms.Button();
this.btnAdvanced = new System.Windows.Forms.Button();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.btnSetTransitionDuration = new System.Windows.Forms.Button();
this.btnGetTransitionDuration = new System.Windows.Forms.Button();
this.tbTransitionDuration = new System.Windows.Forms.NumericUpDown();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.btnSetCurrentTransition = new System.Windows.Forms.Button();
this.btnGetCurrentTransition = new System.Windows.Forms.Button();
this.tbTransition = new System.Windows.Forms.TextBox();
this.btnListTransitions = new System.Windows.Forms.Button();
this.tvTransitions = new System.Windows.Forms.TreeView();
this.gbStatus = new System.Windows.Forms.GroupBox();
this.tabStats = new System.Windows.Forms.TabControl();
this.obsPage = new System.Windows.Forms.TabPage();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
this.lblOutgoingMessages = new System.Windows.Forms.Label();
this.lblIncomingMessages = new System.Windows.Forms.Label();
this.lblDisk = new System.Windows.Forms.Label();
this.lblMemory = new System.Windows.Forms.Label();
this.lblCPU = new System.Windows.Forms.Label();
this.lblFPS = new System.Windows.Forms.Label();
this.lblAvgRender = new System.Windows.Forms.Label();
this.lblSkipped = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.lblOutputTotal = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.lblMissed = new System.Windows.Forms.Label();
this.lblRendered = new System.Windows.Forms.Label();
this.streamPage = new System.Windows.Forms.TabPage();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.lblStreamSkippedFrames = new System.Windows.Forms.Label();
this.label32 = new System.Windows.Forms.Label();
this.label31 = new System.Windows.Forms.Label();
this.lblStreamOutputBytes = new System.Windows.Forms.Label();
this.lblStreamTotalFrames = new System.Windows.Forms.Label();
this.lblStreamCongestion = new System.Windows.Forms.Label();
this.lblStreamDuration = new System.Windows.Forms.Label();
this.lblStreamTimeCode = new System.Windows.Forms.Label();
this.lblStreamReconnect = new System.Windows.Forms.Label();
this.lblStreamActive = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.recPage = new System.Windows.Forms.TabPage();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.lblRecordingBytes = new System.Windows.Forms.Label();
this.lblRecordingDuration = new System.Windows.Forms.Label();
this.lblRecordingTimeCode = new System.Windows.Forms.Label();
this.lblRecordingPaused = new System.Windows.Forms.Label();
this.lblRecording = new System.Windows.Forms.Label();
this.label30 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.label28 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.btnPauseRecording = new System.Windows.Forms.Button();
this.btnToggleRecording = new System.Windows.Forms.Button();
this.btnToggleStreaming = new System.Windows.Forms.Button();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.btnSetCurrentProfile = new System.Windows.Forms.Button();
this.btnGetCurrentProfile = new System.Windows.Forms.Button();
this.tbProfile = new System.Windows.Forms.TextBox();
this.btnListProfiles = new System.Windows.Forms.Button();
this.tvProfiles = new System.Windows.Forms.TreeView();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btnSetCurrentSceneCol = new System.Windows.Forms.Button();
this.btnGetCurrentSceneCol = new System.Windows.Forms.Button();
this.tbSceneCol = new System.Windows.Forms.TextBox();
this.btnListSceneCol = new System.Windows.Forms.Button();
this.tvSceneCols = new System.Windows.Forms.TreeView();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tbOBSVersion = new System.Windows.Forms.Label();
this.tbPluginVersion = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
this.fileSystemWatcher1 = new System.IO.FileSystemWatcher();
this.groupBox1.SuspendLayout();
this.gbControls.SuspendLayout();
this.groupBox9.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox7.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tbTransitionDuration)).BeginInit();
this.groupBox6.SuspendLayout();
this.gbStatus.SuspendLayout();
this.tabStats.SuspendLayout();
this.obsPage.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.streamPage.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.recPage.SuspendLayout();
this.tableLayoutPanel5.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
this.SuspendLayout();
//
// btnConnect
//
this.btnConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnConnect.Location = new System.Drawing.Point(681, 8);
this.btnConnect.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(101, 36);
this.btnConnect.TabIndex = 1;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// txtServerIP
//
this.txtServerIP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.txtServerIP.Location = new System.Drawing.Point(271, 11);
this.txtServerIP.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.txtServerIP.Name = "txtServerIP";
this.txtServerIP.Size = new System.Drawing.Size(150, 27);
this.txtServerIP.TabIndex = 2;
this.txtServerIP.Text = "ws://127.0.0.1:4455";
//
// txtServerPassword
//
this.txtServerPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.txtServerPassword.Location = new System.Drawing.Point(521, 11);
this.txtServerPassword.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.txtServerPassword.Name = "txtServerPassword";
this.txtServerPassword.Size = new System.Drawing.Size(150, 27);
this.txtServerPassword.TabIndex = 3;
this.txtServerPassword.UseSystemPasswordChar = true;
//
// tvScenes
//
this.tvScenes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tvScenes.Location = new System.Drawing.Point(8, 76);
this.tvScenes.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tvScenes.Name = "tvScenes";
this.tvScenes.Size = new System.Drawing.Size(182, 180);
this.tvScenes.TabIndex = 4;
this.tvScenes.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvScenes_NodeMouseClick);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnSetCurrentScene);
this.groupBox1.Controls.Add(this.btnGetCurrentScene);
this.groupBox1.Controls.Add(this.btnListScenes);
this.groupBox1.Controls.Add(this.tvScenes);
this.groupBox1.Controls.Add(this.tbCurrentScene);
this.groupBox1.Location = new System.Drawing.Point(8, 19);
this.groupBox1.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox1.Size = new System.Drawing.Size(200, 373);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Scene List with Items";
//
// btnSetCurrentScene
//
this.btnSetCurrentScene.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetCurrentScene.Location = new System.Drawing.Point(104, 307);
this.btnSetCurrentScene.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetCurrentScene.Name = "btnSetCurrentScene";
this.btnSetCurrentScene.Size = new System.Drawing.Size(88, 59);
this.btnSetCurrentScene.TabIndex = 1;
this.btnSetCurrentScene.Text = "Set\r\nCurScene";
this.btnSetCurrentScene.UseVisualStyleBackColor = true;
this.btnSetCurrentScene.Click += new System.EventHandler(this.btnSetCurrentScene_Click);
//
// btnGetCurrentScene
//
this.btnGetCurrentScene.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnGetCurrentScene.Location = new System.Drawing.Point(8, 307);
this.btnGetCurrentScene.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetCurrentScene.Name = "btnGetCurrentScene";
this.btnGetCurrentScene.Size = new System.Drawing.Size(82, 59);
this.btnGetCurrentScene.TabIndex = 2;
this.btnGetCurrentScene.Text = "Get\r\nCurScene";
this.btnGetCurrentScene.UseVisualStyleBackColor = true;
this.btnGetCurrentScene.Click += new System.EventHandler(this.btnGetCurrentScene_Click);
//
// btnListScenes
//
this.btnListScenes.Location = new System.Drawing.Point(9, 31);
this.btnListScenes.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnListScenes.Name = "btnListScenes";
this.btnListScenes.Size = new System.Drawing.Size(101, 36);
this.btnListScenes.TabIndex = 5;
this.btnListScenes.Text = "ListScenes";
this.btnListScenes.UseVisualStyleBackColor = true;
this.btnListScenes.Click += new System.EventHandler(this.btnListScenes_Click);
//
// tbCurrentScene
//
this.tbCurrentScene.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbCurrentScene.Location = new System.Drawing.Point(8, 267);
this.tbCurrentScene.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbCurrentScene.Name = "tbCurrentScene";
this.tbCurrentScene.Size = new System.Drawing.Size(182, 27);
this.tbCurrentScene.TabIndex = 0;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(192, 16);
this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(66, 20);
this.label1.TabIndex = 7;
this.label1.Text = "IP:PORT :";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(440, 16);
this.label2.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(77, 20);
this.label2.TabIndex = 8;
this.label2.Text = "Password :";
//
// gbControls
//
this.gbControls.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbControls.Controls.Add(this.groupBox9);
this.gbControls.Controls.Add(this.groupBox8);
this.gbControls.Controls.Add(this.btnAdvanced);
this.gbControls.Controls.Add(this.groupBox7);
this.gbControls.Controls.Add(this.groupBox6);
this.gbControls.Controls.Add(this.gbStatus);
this.gbControls.Controls.Add(this.groupBox5);
this.gbControls.Controls.Add(this.groupBox4);
this.gbControls.Controls.Add(this.groupBox2);
this.gbControls.Controls.Add(this.groupBox3);
this.gbControls.Controls.Add(this.groupBox1);
this.gbControls.Enabled = false;
this.gbControls.Location = new System.Drawing.Point(15, 52);
this.gbControls.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.gbControls.Name = "gbControls";
this.gbControls.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.gbControls.Size = new System.Drawing.Size(766, 856);
this.gbControls.TabIndex = 9;
this.gbControls.TabStop = false;
//
// groupBox9
//
this.groupBox9.Controls.Add(this.lblVirtualCamStatus);
this.groupBox9.Controls.Add(this.label4);
this.groupBox9.Controls.Add(this.btnVirtualCamToggle);
this.groupBox9.Controls.Add(this.btnVirtualCamStop);
this.groupBox9.Controls.Add(this.btnVirtualCamStart);
this.groupBox9.Location = new System.Drawing.Point(562, 571);
this.groupBox9.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox9.Name = "groupBox9";
this.groupBox9.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox9.Size = new System.Drawing.Size(194, 89);
this.groupBox9.TabIndex = 13;
this.groupBox9.TabStop = false;
this.groupBox9.Text = "Virtual Cam";
//
// lblVirtualCamStatus
//
this.lblVirtualCamStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblVirtualCamStatus.Location = new System.Drawing.Point(65, 23);
this.lblVirtualCamStatus.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblVirtualCamStatus.Name = "lblVirtualCamStatus";
this.lblVirtualCamStatus.Size = new System.Drawing.Size(122, 20);
this.lblVirtualCamStatus.TabIndex = 8;
this.lblVirtualCamStatus.Text = "Unknown";
this.lblVirtualCamStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(7, 23);
this.label4.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(52, 20);
this.label4.TabIndex = 7;
this.label4.Text = "Status:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btnVirtualCamToggle
//
this.btnVirtualCamToggle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnVirtualCamToggle.Location = new System.Drawing.Point(125, 44);
this.btnVirtualCamToggle.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnVirtualCamToggle.Name = "btnVirtualCamToggle";
this.btnVirtualCamToggle.Size = new System.Drawing.Size(64, 36);
this.btnVirtualCamToggle.TabIndex = 3;
this.btnVirtualCamToggle.Text = "Toggle";
this.btnVirtualCamToggle.UseVisualStyleBackColor = true;
this.btnVirtualCamToggle.Click += new System.EventHandler(this.btnVirtualCamToggle_Click);
//
// btnVirtualCamStop
//
this.btnVirtualCamStop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnVirtualCamStop.Location = new System.Drawing.Point(67, 44);
this.btnVirtualCamStop.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnVirtualCamStop.Name = "btnVirtualCamStop";
this.btnVirtualCamStop.Size = new System.Drawing.Size(54, 36);
this.btnVirtualCamStop.TabIndex = 2;
this.btnVirtualCamStop.Text = "Stop";
this.btnVirtualCamStop.UseVisualStyleBackColor = true;
this.btnVirtualCamStop.Click += new System.EventHandler(this.btnVirtualCamStop_Click);
//
// btnVirtualCamStart
//
this.btnVirtualCamStart.Location = new System.Drawing.Point(7, 44);
this.btnVirtualCamStart.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnVirtualCamStart.Name = "btnVirtualCamStart";
this.btnVirtualCamStart.Size = new System.Drawing.Size(55, 36);
this.btnVirtualCamStart.TabIndex = 1;
this.btnVirtualCamStart.Text = "Start";
this.btnVirtualCamStart.UseVisualStyleBackColor = true;
this.btnVirtualCamStart.Click += new System.EventHandler(this.btnVirtualCamStart_Click);
//
// groupBox8
//
this.groupBox8.Controls.Add(this.btnBrowse);
this.groupBox8.Controls.Add(this.tbFolderPath);
this.groupBox8.Controls.Add(this.btnSetPath);
this.groupBox8.Location = new System.Drawing.Point(8, 776);
this.groupBox8.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.groupBox8.Size = new System.Drawing.Size(482, 68);
this.groupBox8.TabIndex = 15;
this.groupBox8.TabStop = false;
this.groupBox8.Text = "Recordings Directory";
//
// btnBrowse
//
this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowse.Enabled = false;
this.btnBrowse.Location = new System.Drawing.Point(277, 29);
this.btnBrowse.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(38, 31);
this.btnBrowse.TabIndex = 17;
this.btnBrowse.Text = "...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// tbFolderPath
//
this.tbFolderPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.tbFolderPath.Location = new System.Drawing.Point(9, 29);
this.tbFolderPath.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbFolderPath.Name = "tbFolderPath";
this.tbFolderPath.Size = new System.Drawing.Size(265, 27);
this.tbFolderPath.TabIndex = 15;
//
// btnSetPath
//
this.btnSetPath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetPath.Enabled = false;
this.btnSetPath.Location = new System.Drawing.Point(365, 28);
this.btnSetPath.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetPath.Name = "btnSetPath";
this.btnSetPath.Size = new System.Drawing.Size(107, 31);
this.btnSetPath.TabIndex = 16;
this.btnSetPath.Text = "Set Path";
this.btnSetPath.UseVisualStyleBackColor = true;
this.btnSetPath.Click += new System.EventHandler(this.btnSetPath_Click);
//
// btnAdvanced
//
this.btnAdvanced.Location = new System.Drawing.Point(657, 799);
this.btnAdvanced.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnAdvanced.Name = "btnAdvanced";
this.btnAdvanced.Size = new System.Drawing.Size(101, 36);
this.btnAdvanced.TabIndex = 13;
this.btnAdvanced.Text = "Advanced >>";
this.btnAdvanced.UseVisualStyleBackColor = true;
this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
//
// groupBox7
//
this.groupBox7.Controls.Add(this.btnSetTransitionDuration);
this.groupBox7.Controls.Add(this.btnGetTransitionDuration);
this.groupBox7.Controls.Add(this.tbTransitionDuration);
this.groupBox7.Location = new System.Drawing.Point(563, 668);
this.groupBox7.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox7.Size = new System.Drawing.Size(194, 81);
this.groupBox7.TabIndex = 12;
this.groupBox7.TabStop = false;
this.groupBox7.Text = "Transition Duration";
//
// btnSetTransitionDuration
//
this.btnSetTransitionDuration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetTransitionDuration.Location = new System.Drawing.Point(129, 33);
this.btnSetTransitionDuration.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetTransitionDuration.Name = "btnSetTransitionDuration";
this.btnSetTransitionDuration.Size = new System.Drawing.Size(54, 36);
this.btnSetTransitionDuration.TabIndex = 2;
this.btnSetTransitionDuration.Text = "Set";
this.btnSetTransitionDuration.UseVisualStyleBackColor = true;
this.btnSetTransitionDuration.Click += new System.EventHandler(this.btnSetTransitionDuration_Click);
//
// btnGetTransitionDuration
//
this.btnGetTransitionDuration.Location = new System.Drawing.Point(9, 33);
this.btnGetTransitionDuration.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetTransitionDuration.Name = "btnGetTransitionDuration";
this.btnGetTransitionDuration.Size = new System.Drawing.Size(55, 36);
this.btnGetTransitionDuration.TabIndex = 1;
this.btnGetTransitionDuration.Text = "Get";
this.btnGetTransitionDuration.UseVisualStyleBackColor = true;
this.btnGetTransitionDuration.Click += new System.EventHandler(this.btnGetTransitionDuration_Click);
//
// tbTransitionDuration
//
this.tbTransitionDuration.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbTransitionDuration.Increment = new decimal(new int[] {
50,
0,
0,
0});
this.tbTransitionDuration.Location = new System.Drawing.Point(67, 36);
this.tbTransitionDuration.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbTransitionDuration.Maximum = new decimal(new int[] {
120000,
0,
0,
0});
this.tbTransitionDuration.Name = "tbTransitionDuration";
this.tbTransitionDuration.Size = new System.Drawing.Size(53, 27);
this.tbTransitionDuration.TabIndex = 0;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.btnSetCurrentTransition);
this.groupBox6.Controls.Add(this.btnGetCurrentTransition);
this.groupBox6.Controls.Add(this.tbTransition);
this.groupBox6.Controls.Add(this.btnListTransitions);
this.groupBox6.Controls.Add(this.tvTransitions);
this.groupBox6.Location = new System.Drawing.Point(234, 401);
this.groupBox6.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox6.Size = new System.Drawing.Size(256, 373);
this.groupBox6.TabIndex = 10;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "Transitions";
//
// btnSetCurrentTransition
//
this.btnSetCurrentTransition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetCurrentTransition.Location = new System.Drawing.Point(138, 307);
this.btnSetCurrentTransition.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetCurrentTransition.Name = "btnSetCurrentTransition";
this.btnSetCurrentTransition.Size = new System.Drawing.Size(107, 59);
this.btnSetCurrentTransition.TabIndex = 5;
this.btnSetCurrentTransition.Text = "Set\r\nCurTransition";
this.btnSetCurrentTransition.UseVisualStyleBackColor = true;
this.btnSetCurrentTransition.Click += new System.EventHandler(this.btnSetCurrentTransition_Click);
//
// btnGetCurrentTransition
//
this.btnGetCurrentTransition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnGetCurrentTransition.Location = new System.Drawing.Point(8, 307);
this.btnGetCurrentTransition.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetCurrentTransition.Name = "btnGetCurrentTransition";
this.btnGetCurrentTransition.Size = new System.Drawing.Size(114, 59);
this.btnGetCurrentTransition.TabIndex = 4;
this.btnGetCurrentTransition.Text = "Get\r\nCurTransition";
this.btnGetCurrentTransition.UseVisualStyleBackColor = true;
this.btnGetCurrentTransition.Click += new System.EventHandler(this.btnGetCurrentTransition_Click);
//
// tbTransition
//
this.tbTransition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbTransition.Location = new System.Drawing.Point(8, 267);
this.tbTransition.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbTransition.Name = "tbTransition";
this.tbTransition.Size = new System.Drawing.Size(237, 27);
this.tbTransition.TabIndex = 3;
//
// btnListTransitions
//
this.btnListTransitions.Location = new System.Drawing.Point(8, 29);
this.btnListTransitions.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnListTransitions.Name = "btnListTransitions";
this.btnListTransitions.Size = new System.Drawing.Size(114, 36);
this.btnListTransitions.TabIndex = 2;
this.btnListTransitions.Text = "ListTransitions";
this.btnListTransitions.UseVisualStyleBackColor = true;
this.btnListTransitions.Click += new System.EventHandler(this.btnListTransitions_Click);
//
// tvTransitions
//
this.tvTransitions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tvTransitions.Location = new System.Drawing.Point(8, 76);
this.tvTransitions.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tvTransitions.Name = "tvTransitions";
this.tvTransitions.Size = new System.Drawing.Size(238, 180);
this.tvTransitions.TabIndex = 1;
this.tvTransitions.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvTransitions_NodeMouseClick);
//
// gbStatus
//
this.gbStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.gbStatus.Controls.Add(this.tabStats);
this.gbStatus.Location = new System.Drawing.Point(453, 19);
this.gbStatus.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.gbStatus.Name = "gbStatus";
this.gbStatus.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.gbStatus.Size = new System.Drawing.Size(305, 269);
this.gbStatus.TabIndex = 11;
this.gbStatus.TabStop = false;
//
// tabStats
//
this.tabStats.Controls.Add(this.obsPage);
this.tabStats.Controls.Add(this.streamPage);
this.tabStats.Controls.Add(this.recPage);
this.tabStats.Location = new System.Drawing.Point(4, 0);
this.tabStats.Name = "tabStats";
this.tabStats.SelectedIndex = 0;
this.tabStats.Size = new System.Drawing.Size(294, 262);
this.tabStats.TabIndex = 1;
//
// obsPage
//
this.obsPage.Controls.Add(this.tableLayoutPanel3);
this.obsPage.Location = new System.Drawing.Point(4, 29);
this.obsPage.Name = "obsPage";
this.obsPage.Padding = new System.Windows.Forms.Padding(3);
this.obsPage.Size = new System.Drawing.Size(286, 229);
this.obsPage.TabIndex = 0;
this.obsPage.Text = "OBS";
this.obsPage.UseVisualStyleBackColor = true;
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 2;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 134F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel3.Controls.Add(this.lblOutgoingMessages, 1, 10);
this.tableLayoutPanel3.Controls.Add(this.lblIncomingMessages, 1, 9);
this.tableLayoutPanel3.Controls.Add(this.lblDisk, 1, 8);
this.tableLayoutPanel3.Controls.Add(this.lblMemory, 1, 7);
this.tableLayoutPanel3.Controls.Add(this.lblCPU, 1, 6);
this.tableLayoutPanel3.Controls.Add(this.lblFPS, 1, 5);
this.tableLayoutPanel3.Controls.Add(this.lblAvgRender, 1, 4);
this.tableLayoutPanel3.Controls.Add(this.lblSkipped, 1, 3);
this.tableLayoutPanel3.Controls.Add(this.label26, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.label25, 0, 10);
this.tableLayoutPanel3.Controls.Add(this.label24, 0, 0);
this.tableLayoutPanel3.Controls.Add(this.label23, 0, 8);
this.tableLayoutPanel3.Controls.Add(this.label22, 0, 9);
this.tableLayoutPanel3.Controls.Add(this.lblOutputTotal, 1, 2);
this.tableLayoutPanel3.Controls.Add(this.label20, 0, 7);
this.tableLayoutPanel3.Controls.Add(this.label19, 0, 5);
this.tableLayoutPanel3.Controls.Add(this.label18, 0, 6);
this.tableLayoutPanel3.Controls.Add(this.label17, 0, 4);
this.tableLayoutPanel3.Controls.Add(this.label16, 0, 2);
this.tableLayoutPanel3.Controls.Add(this.label15, 0, 3);
this.tableLayoutPanel3.Controls.Add(this.lblMissed, 0, 1);
this.tableLayoutPanel3.Controls.Add(this.lblRendered, 1, 0);
this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 13;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel3.Size = new System.Drawing.Size(286, 215);
this.tableLayoutPanel3.TabIndex = 0;
this.tableLayoutPanel3.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel3_Paint);
//
// lblOutgoingMessages
//
this.lblOutgoingMessages.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblOutgoingMessages.AutoSize = true;
this.lblOutgoingMessages.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblOutgoingMessages.Location = new System.Drawing.Point(139, 199);
this.lblOutgoingMessages.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblOutgoingMessages.Name = "lblOutgoingMessages";
this.lblOutgoingMessages.Size = new System.Drawing.Size(142, 19);
this.lblOutgoingMessages.TabIndex = 23;
this.lblOutgoingMessages.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblIncomingMessages
//
this.lblIncomingMessages.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblIncomingMessages.AutoSize = true;
this.lblIncomingMessages.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblIncomingMessages.Location = new System.Drawing.Point(139, 180);
this.lblIncomingMessages.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblIncomingMessages.Name = "lblIncomingMessages";
this.lblIncomingMessages.Size = new System.Drawing.Size(142, 19);
this.lblIncomingMessages.TabIndex = 22;
this.lblIncomingMessages.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblDisk
//
this.lblDisk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblDisk.AutoSize = true;
this.lblDisk.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblDisk.Location = new System.Drawing.Point(139, 160);
this.lblDisk.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblDisk.Name = "lblDisk";
this.lblDisk.Size = new System.Drawing.Size(142, 19);
this.lblDisk.TabIndex = 21;
this.lblDisk.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblMemory
//
this.lblMemory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblMemory.AutoSize = true;
this.lblMemory.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblMemory.Location = new System.Drawing.Point(139, 140);
this.lblMemory.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblMemory.Name = "lblMemory";
this.lblMemory.Size = new System.Drawing.Size(142, 19);
this.lblMemory.TabIndex = 20;
this.lblMemory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblCPU
//
this.lblCPU.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblCPU.AutoSize = true;
this.lblCPU.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblCPU.Location = new System.Drawing.Point(139, 120);
this.lblCPU.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblCPU.Name = "lblCPU";
this.lblCPU.Size = new System.Drawing.Size(142, 19);
this.lblCPU.TabIndex = 19;
this.lblCPU.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblFPS
//
this.lblFPS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblFPS.AutoSize = true;
this.lblFPS.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblFPS.Location = new System.Drawing.Point(139, 100);
this.lblFPS.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblFPS.Name = "lblFPS";
this.lblFPS.Size = new System.Drawing.Size(142, 19);
this.lblFPS.TabIndex = 18;
this.lblFPS.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblAvgRender
//
this.lblAvgRender.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblAvgRender.AutoSize = true;
this.lblAvgRender.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblAvgRender.Location = new System.Drawing.Point(139, 80);
this.lblAvgRender.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblAvgRender.Name = "lblAvgRender";
this.lblAvgRender.Size = new System.Drawing.Size(142, 19);
this.lblAvgRender.TabIndex = 17;
this.lblAvgRender.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblSkipped
//
this.lblSkipped.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblSkipped.AutoSize = true;
this.lblSkipped.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblSkipped.Location = new System.Drawing.Point(139, 60);
this.lblSkipped.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblSkipped.Name = "lblSkipped";
this.lblSkipped.Size = new System.Drawing.Size(142, 19);
this.lblSkipped.TabIndex = 16;
this.lblSkipped.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label26
//
this.label26.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label26.Location = new System.Drawing.Point(5, 20);
this.label26.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(124, 19);
this.label26.TabIndex = 15;
this.label26.Text = "Missed:";
this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label25
//
this.label25.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label25.AutoSize = true;
this.label25.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label25.Location = new System.Drawing.Point(5, 199);
this.label25.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(124, 19);
this.label25.TabIndex = 14;
this.label25.Text = "OUT Messages:";
this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label24
//
this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label24.AutoSize = true;
this.label24.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label24.Location = new System.Drawing.Point(5, 0);
this.label24.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(124, 19);
this.label24.TabIndex = 13;
this.label24.Text = "Frames Rendered:";
this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label23
//
this.label23.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label23.AutoSize = true;
this.label23.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label23.Location = new System.Drawing.Point(5, 160);
this.label23.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(124, 19);
this.label23.TabIndex = 12;
this.label23.Text = "Free Disk:";
this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label22
//
this.label22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label22.AutoSize = true;
this.label22.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label22.Location = new System.Drawing.Point(5, 180);
this.label22.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(124, 19);
this.label22.TabIndex = 11;
this.label22.Text = "IN Messages:";
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblOutputTotal
//
this.lblOutputTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblOutputTotal.AutoSize = true;
this.lblOutputTotal.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblOutputTotal.Location = new System.Drawing.Point(139, 40);
this.lblOutputTotal.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblOutputTotal.Name = "lblOutputTotal";
this.lblOutputTotal.Size = new System.Drawing.Size(142, 19);
this.lblOutputTotal.TabIndex = 10;
this.lblOutputTotal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label20
//
this.label20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label20.AutoSize = true;
this.label20.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label20.Location = new System.Drawing.Point(5, 140);
this.label20.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(124, 19);
this.label20.TabIndex = 9;
this.label20.Text = "Memory:";
this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label19
//
this.label19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label19.AutoSize = true;
this.label19.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label19.Location = new System.Drawing.Point(5, 100);
this.label19.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(124, 19);
this.label19.TabIndex = 8;
this.label19.Text = "FPS:";
this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label18
//
this.label18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label18.AutoSize = true;
this.label18.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label18.Location = new System.Drawing.Point(5, 120);
this.label18.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(124, 19);
this.label18.TabIndex = 7;
this.label18.Text = "CPU:";
this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label17
//
this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label17.AutoSize = true;
this.label17.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label17.Location = new System.Drawing.Point(5, 80);
this.label17.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(124, 19);
this.label17.TabIndex = 6;
this.label17.Text = "Avg Render Time:";
this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.label17.Click += new System.EventHandler(this.label17_Click);
//
// label16
//
this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label16.Location = new System.Drawing.Point(5, 40);
this.label16.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(124, 19);
this.label16.TabIndex = 5;
this.label16.Text = "Output Total:";
this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label15
//
this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label15.Location = new System.Drawing.Point(5, 60);
this.label15.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(124, 19);
this.label15.TabIndex = 4;
this.label15.Text = "Skipped:";
this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblMissed
//
this.lblMissed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblMissed.AutoSize = true;
this.lblMissed.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblMissed.Location = new System.Drawing.Point(139, 20);
this.lblMissed.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblMissed.Name = "lblMissed";
this.lblMissed.Size = new System.Drawing.Size(142, 19);
this.lblMissed.TabIndex = 3;
this.lblMissed.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblRendered
//
this.lblRendered.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRendered.AutoSize = true;
this.lblRendered.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRendered.Location = new System.Drawing.Point(139, 0);
this.lblRendered.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRendered.Name = "lblRendered";
this.lblRendered.Size = new System.Drawing.Size(142, 19);
this.lblRendered.TabIndex = 2;
this.lblRendered.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// streamPage
//
this.streamPage.Controls.Add(this.tableLayoutPanel2);
this.streamPage.Location = new System.Drawing.Point(4, 29);
this.streamPage.Name = "streamPage";
this.streamPage.Padding = new System.Windows.Forms.Padding(3);
this.streamPage.Size = new System.Drawing.Size(286, 229);
this.streamPage.TabIndex = 1;
this.streamPage.Text = "Stream";
this.streamPage.UseVisualStyleBackColor = true;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 134F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Controls.Add(this.lblStreamSkippedFrames, 1, 6);
this.tableLayoutPanel2.Controls.Add(this.label32, 0, 1);
this.tableLayoutPanel2.Controls.Add(this.label31, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.lblStreamOutputBytes, 1, 7);
this.tableLayoutPanel2.Controls.Add(this.lblStreamTotalFrames, 1, 5);
this.tableLayoutPanel2.Controls.Add(this.lblStreamCongestion, 1, 4);
this.tableLayoutPanel2.Controls.Add(this.lblStreamDuration, 1, 3);
this.tableLayoutPanel2.Controls.Add(this.lblStreamTimeCode, 1, 2);
this.tableLayoutPanel2.Controls.Add(this.lblStreamReconnect, 1, 1);
this.tableLayoutPanel2.Controls.Add(this.lblStreamActive, 1, 0);
this.tableLayoutPanel2.Controls.Add(this.label6, 0, 2);
this.tableLayoutPanel2.Controls.Add(this.label7, 0, 3);
this.tableLayoutPanel2.Controls.Add(this.label8, 0, 4);
this.tableLayoutPanel2.Controls.Add(this.label9, 0, 5);
this.tableLayoutPanel2.Controls.Add(this.label10, 0, 6);
this.tableLayoutPanel2.Controls.Add(this.label11, 0, 7);
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 9;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel2.Size = new System.Drawing.Size(278, 208);
this.tableLayoutPanel2.TabIndex = 1;
//
// lblStreamSkippedFrames
//
this.lblStreamSkippedFrames.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamSkippedFrames.AutoSize = true;
this.lblStreamSkippedFrames.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamSkippedFrames.Location = new System.Drawing.Point(139, 120);
this.lblStreamSkippedFrames.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamSkippedFrames.Name = "lblStreamSkippedFrames";
this.lblStreamSkippedFrames.Size = new System.Drawing.Size(134, 19);
this.lblStreamSkippedFrames.TabIndex = 17;
this.lblStreamSkippedFrames.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label32
//
this.label32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label32.AutoSize = true;
this.label32.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label32.Location = new System.Drawing.Point(5, 20);
this.label32.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label32.Name = "label32";
this.label32.Size = new System.Drawing.Size(124, 19);
this.label32.TabIndex = 16;
this.label32.Text = "Reconnecting:";
this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label31
//
this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label31.AutoSize = true;
this.label31.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label31.Location = new System.Drawing.Point(5, 0);
this.label31.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(124, 19);
this.label31.TabIndex = 15;
this.label31.Text = "Streaming:";
this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamOutputBytes
//
this.lblStreamOutputBytes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamOutputBytes.AutoSize = true;
this.lblStreamOutputBytes.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamOutputBytes.Location = new System.Drawing.Point(139, 140);
this.lblStreamOutputBytes.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamOutputBytes.Name = "lblStreamOutputBytes";
this.lblStreamOutputBytes.Size = new System.Drawing.Size(134, 19);
this.lblStreamOutputBytes.TabIndex = 14;
this.lblStreamOutputBytes.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamTotalFrames
//
this.lblStreamTotalFrames.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamTotalFrames.AutoSize = true;
this.lblStreamTotalFrames.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamTotalFrames.Location = new System.Drawing.Point(139, 100);
this.lblStreamTotalFrames.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamTotalFrames.Name = "lblStreamTotalFrames";
this.lblStreamTotalFrames.Size = new System.Drawing.Size(134, 19);
this.lblStreamTotalFrames.TabIndex = 13;
this.lblStreamTotalFrames.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamCongestion
//
this.lblStreamCongestion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamCongestion.AutoSize = true;
this.lblStreamCongestion.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamCongestion.Location = new System.Drawing.Point(139, 80);
this.lblStreamCongestion.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamCongestion.Name = "lblStreamCongestion";
this.lblStreamCongestion.Size = new System.Drawing.Size(134, 19);
this.lblStreamCongestion.TabIndex = 12;
this.lblStreamCongestion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamDuration
//
this.lblStreamDuration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamDuration.AutoSize = true;
this.lblStreamDuration.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamDuration.Location = new System.Drawing.Point(139, 60);
this.lblStreamDuration.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamDuration.Name = "lblStreamDuration";
this.lblStreamDuration.Size = new System.Drawing.Size(134, 19);
this.lblStreamDuration.TabIndex = 11;
this.lblStreamDuration.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamTimeCode
//
this.lblStreamTimeCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamTimeCode.AutoSize = true;
this.lblStreamTimeCode.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamTimeCode.Location = new System.Drawing.Point(139, 40);
this.lblStreamTimeCode.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamTimeCode.Name = "lblStreamTimeCode";
this.lblStreamTimeCode.Size = new System.Drawing.Size(134, 19);
this.lblStreamTimeCode.TabIndex = 10;
this.lblStreamTimeCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamReconnect
//
this.lblStreamReconnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamReconnect.AutoSize = true;
this.lblStreamReconnect.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamReconnect.Location = new System.Drawing.Point(139, 20);
this.lblStreamReconnect.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamReconnect.Name = "lblStreamReconnect";
this.lblStreamReconnect.Size = new System.Drawing.Size(134, 19);
this.lblStreamReconnect.TabIndex = 9;
this.lblStreamReconnect.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblStreamActive
//
this.lblStreamActive.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblStreamActive.AutoSize = true;
this.lblStreamActive.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblStreamActive.Location = new System.Drawing.Point(139, 0);
this.lblStreamActive.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblStreamActive.Name = "lblStreamActive";
this.lblStreamActive.Size = new System.Drawing.Size(134, 19);
this.lblStreamActive.TabIndex = 8;
this.lblStreamActive.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label6
//
this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label6.Location = new System.Drawing.Point(5, 40);
this.label6.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(124, 19);
this.label6.TabIndex = 1;
this.label6.Text = "Time Code:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label7.Location = new System.Drawing.Point(5, 60);
this.label7.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(124, 19);
this.label7.TabIndex = 2;
this.label7.Text = "Duration:";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label8
//
this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label8.Location = new System.Drawing.Point(5, 80);
this.label8.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(124, 19);
this.label8.TabIndex = 3;
this.label8.Text = "Congestion:";
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label9.Location = new System.Drawing.Point(5, 100);
this.label9.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(124, 19);
this.label9.TabIndex = 4;
this.label9.Text = "Total Frames:";
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label10
//
this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label10.Location = new System.Drawing.Point(5, 120);
this.label10.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(124, 19);
this.label10.TabIndex = 5;
this.label10.Text = "Skipped:";
this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label11.Location = new System.Drawing.Point(5, 140);
this.label11.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(124, 19);
this.label11.TabIndex = 6;
this.label11.Text = "OUT Bytes:";
this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// recPage
//
this.recPage.Controls.Add(this.tableLayoutPanel5);
this.recPage.Location = new System.Drawing.Point(4, 29);
this.recPage.Name = "recPage";
this.recPage.Size = new System.Drawing.Size(286, 229);
this.recPage.TabIndex = 2;
this.recPage.Text = "Recording";
this.recPage.UseVisualStyleBackColor = true;
//
// tableLayoutPanel5
//
this.tableLayoutPanel5.ColumnCount = 2;
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 134F));
this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel5.Controls.Add(this.lblRecordingBytes, 1, 4);
this.tableLayoutPanel5.Controls.Add(this.lblRecordingDuration, 1, 3);
this.tableLayoutPanel5.Controls.Add(this.lblRecordingTimeCode, 1, 2);
this.tableLayoutPanel5.Controls.Add(this.lblRecordingPaused, 1, 1);
this.tableLayoutPanel5.Controls.Add(this.lblRecording, 1, 0);
this.tableLayoutPanel5.Controls.Add(this.label30, 0, 4);
this.tableLayoutPanel5.Controls.Add(this.label29, 0, 3);
this.tableLayoutPanel5.Controls.Add(this.label28, 0, 2);
this.tableLayoutPanel5.Controls.Add(this.label27, 0, 1);
this.tableLayoutPanel5.Controls.Add(this.label21, 0, 0);
this.tableLayoutPanel5.Location = new System.Drawing.Point(4, 0);
this.tableLayoutPanel5.Name = "tableLayoutPanel5";
this.tableLayoutPanel5.RowCount = 6;
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel5.Size = new System.Drawing.Size(278, 227);
this.tableLayoutPanel5.TabIndex = 0;
//
// lblRecordingBytes
//
this.lblRecordingBytes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRecordingBytes.AutoSize = true;
this.lblRecordingBytes.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRecordingBytes.Location = new System.Drawing.Point(139, 80);
this.lblRecordingBytes.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRecordingBytes.Name = "lblRecordingBytes";
this.lblRecordingBytes.Size = new System.Drawing.Size(134, 19);
this.lblRecordingBytes.TabIndex = 23;
this.lblRecordingBytes.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblRecordingDuration
//
this.lblRecordingDuration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRecordingDuration.AutoSize = true;
this.lblRecordingDuration.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRecordingDuration.Location = new System.Drawing.Point(139, 60);
this.lblRecordingDuration.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRecordingDuration.Name = "lblRecordingDuration";
this.lblRecordingDuration.Size = new System.Drawing.Size(134, 19);
this.lblRecordingDuration.TabIndex = 22;
this.lblRecordingDuration.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblRecordingTimeCode
//
this.lblRecordingTimeCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRecordingTimeCode.AutoSize = true;
this.lblRecordingTimeCode.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRecordingTimeCode.Location = new System.Drawing.Point(139, 40);
this.lblRecordingTimeCode.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRecordingTimeCode.Name = "lblRecordingTimeCode";
this.lblRecordingTimeCode.Size = new System.Drawing.Size(134, 19);
this.lblRecordingTimeCode.TabIndex = 21;
this.lblRecordingTimeCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblRecordingPaused
//
this.lblRecordingPaused.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRecordingPaused.AutoSize = true;
this.lblRecordingPaused.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRecordingPaused.Location = new System.Drawing.Point(139, 20);
this.lblRecordingPaused.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRecordingPaused.Name = "lblRecordingPaused";
this.lblRecordingPaused.Size = new System.Drawing.Size(134, 19);
this.lblRecordingPaused.TabIndex = 20;
this.lblRecordingPaused.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// lblRecording
//
this.lblRecording.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.lblRecording.AutoSize = true;
this.lblRecording.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lblRecording.Location = new System.Drawing.Point(139, 0);
this.lblRecording.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblRecording.Name = "lblRecording";
this.lblRecording.Size = new System.Drawing.Size(134, 19);
this.lblRecording.TabIndex = 19;
this.lblRecording.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label30
//
this.label30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label30.AutoSize = true;
this.label30.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label30.Location = new System.Drawing.Point(5, 80);
this.label30.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(124, 19);
this.label30.TabIndex = 18;
this.label30.Text = "Bytes:";
this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label29
//
this.label29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label29.AutoSize = true;
this.label29.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label29.Location = new System.Drawing.Point(5, 60);
this.label29.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(124, 19);
this.label29.TabIndex = 17;
this.label29.Text = "Duration:";
this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label28
//
this.label28.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label28.AutoSize = true;
this.label28.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label28.Location = new System.Drawing.Point(5, 40);
this.label28.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(124, 19);
this.label28.TabIndex = 16;
this.label28.Text = "Time Code:";
this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label27
//
this.label27.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label27.AutoSize = true;
this.label27.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label27.Location = new System.Drawing.Point(5, 20);
this.label27.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(124, 19);
this.label27.TabIndex = 15;
this.label27.Text = "Paused:";
this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label21
//
this.label21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.label21.AutoSize = true;
this.label21.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.label21.Location = new System.Drawing.Point(5, 0);
this.label21.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(124, 19);
this.label21.TabIndex = 14;
this.label21.Text = "Recording:";
this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// groupBox5
//
this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.groupBox5.Controls.Add(this.btnPauseRecording);
this.groupBox5.Controls.Add(this.btnToggleRecording);
this.groupBox5.Controls.Add(this.btnToggleStreaming);
this.groupBox5.Location = new System.Drawing.Point(563, 441);
this.groupBox5.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox5.Size = new System.Drawing.Size(193, 121);
this.groupBox5.TabIndex = 10;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Streaming / Recording";
//
// btnPauseRecording
//
this.btnPauseRecording.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnPauseRecording.Location = new System.Drawing.Point(157, 75);
this.btnPauseRecording.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnPauseRecording.Name = "btnPauseRecording";
this.btnPauseRecording.Size = new System.Drawing.Size(27, 36);
this.btnPauseRecording.TabIndex = 2;
this.btnPauseRecording.Text = "||";
this.btnPauseRecording.UseVisualStyleBackColor = true;
this.btnPauseRecording.Click += new System.EventHandler(this.btnPauseRecording_Click);
//
// btnToggleRecording
//
this.btnToggleRecording.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnToggleRecording.Location = new System.Drawing.Point(6, 75);
this.btnToggleRecording.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnToggleRecording.Name = "btnToggleRecording";
this.btnToggleRecording.Size = new System.Drawing.Size(151, 36);
this.btnToggleRecording.TabIndex = 1;
this.btnToggleRecording.Text = "State unknown";
this.btnToggleRecording.UseVisualStyleBackColor = true;
this.btnToggleRecording.Click += new System.EventHandler(this.btnToggleRecording_Click);
//
// btnToggleStreaming
//
this.btnToggleStreaming.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnToggleStreaming.Location = new System.Drawing.Point(6, 31);
this.btnToggleStreaming.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnToggleStreaming.Name = "btnToggleStreaming";
this.btnToggleStreaming.Size = new System.Drawing.Size(178, 36);
this.btnToggleStreaming.TabIndex = 0;
this.btnToggleStreaming.Text = "State unknown";
this.btnToggleStreaming.UseVisualStyleBackColor = true;
this.btnToggleStreaming.Click += new System.EventHandler(this.btnToggleStreaming_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.btnSetCurrentProfile);
this.groupBox4.Controls.Add(this.btnGetCurrentProfile);
this.groupBox4.Controls.Add(this.tbProfile);
this.groupBox4.Controls.Add(this.btnListProfiles);
this.groupBox4.Controls.Add(this.tvProfiles);
this.groupBox4.Location = new System.Drawing.Point(8, 401);
this.groupBox4.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox4.Size = new System.Drawing.Size(218, 373);
this.groupBox4.TabIndex = 9;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Profiles";
//
// btnSetCurrentProfile
//
this.btnSetCurrentProfile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetCurrentProfile.Location = new System.Drawing.Point(118, 307);
this.btnSetCurrentProfile.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetCurrentProfile.Name = "btnSetCurrentProfile";
this.btnSetCurrentProfile.Size = new System.Drawing.Size(91, 59);
this.btnSetCurrentProfile.TabIndex = 5;
this.btnSetCurrentProfile.Text = "Set\r\nCurProfile";
this.btnSetCurrentProfile.UseVisualStyleBackColor = true;
this.btnSetCurrentProfile.Click += new System.EventHandler(this.btnSetCurrentProfile_Click);
//
// btnGetCurrentProfile
//
this.btnGetCurrentProfile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnGetCurrentProfile.Location = new System.Drawing.Point(8, 307);
this.btnGetCurrentProfile.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetCurrentProfile.Name = "btnGetCurrentProfile";
this.btnGetCurrentProfile.Size = new System.Drawing.Size(91, 59);
this.btnGetCurrentProfile.TabIndex = 4;
this.btnGetCurrentProfile.Text = "Get\r\nCurProfile";
this.btnGetCurrentProfile.UseVisualStyleBackColor = true;
this.btnGetCurrentProfile.Click += new System.EventHandler(this.btnGetCurrentProfile_Click);
//
// tbProfile
//
this.tbProfile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbProfile.Location = new System.Drawing.Point(8, 267);
this.tbProfile.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tbProfile.Name = "tbProfile";
this.tbProfile.Size = new System.Drawing.Size(201, 27);
this.tbProfile.TabIndex = 3;
//
// btnListProfiles
//
this.btnListProfiles.Location = new System.Drawing.Point(8, 29);
this.btnListProfiles.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnListProfiles.Name = "btnListProfiles";
this.btnListProfiles.Size = new System.Drawing.Size(106, 36);
this.btnListProfiles.TabIndex = 2;
this.btnListProfiles.Text = "ListProfiles";
this.btnListProfiles.UseVisualStyleBackColor = true;
this.btnListProfiles.Click += new System.EventHandler(this.btnListProfiles_Click);
//
// tvProfiles
//
this.tvProfiles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tvProfiles.Location = new System.Drawing.Point(8, 76);
this.tvProfiles.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.tvProfiles.Name = "tvProfiles";
this.tvProfiles.Size = new System.Drawing.Size(202, 180);
this.tvProfiles.TabIndex = 1;
this.tvProfiles.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvProfiles_NodeMouseClick);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btnSetCurrentSceneCol);
this.groupBox2.Controls.Add(this.btnGetCurrentSceneCol);
this.groupBox2.Controls.Add(this.tbSceneCol);
this.groupBox2.Controls.Add(this.btnListSceneCol);
this.groupBox2.Controls.Add(this.tvSceneCols);
this.groupBox2.Location = new System.Drawing.Point(216, 19);
this.groupBox2.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.groupBox2.Size = new System.Drawing.Size(213, 373);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Scene Collections";
//
// btnSetCurrentSceneCol
//
this.btnSetCurrentSceneCol.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSetCurrentSceneCol.Location = new System.Drawing.Point(111, 307);
this.btnSetCurrentSceneCol.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnSetCurrentSceneCol.Name = "btnSetCurrentSceneCol";
this.btnSetCurrentSceneCol.Size = new System.Drawing.Size(91, 59);
this.btnSetCurrentSceneCol.TabIndex = 5;
this.btnSetCurrentSceneCol.Text = "Set\r\nCurSC";
this.btnSetCurrentSceneCol.UseVisualStyleBackColor = true;
this.btnSetCurrentSceneCol.Click += new System.EventHandler(this.btnSetCurrentSceneCol_Click);
//
// btnGetCurrentSceneCol
//
this.btnGetCurrentSceneCol.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnGetCurrentSceneCol.Location = new System.Drawing.Point(8, 307);
this.btnGetCurrentSceneCol.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.btnGetCurrentSceneCol.Name = "btnGetCurrentSceneCol";
this.btnGetCurrentSceneCol.Size = new System.Drawing.Size(91, 59);
this.btnGetCurrentSceneCol.TabIndex = 4;
this.btnGetCurrentSceneCol.Text = "Get\r\nCurSC";
this.btnGetCurrentSceneCol.UseVisualStyleBackColor = true;
this.btnGetCurrentSceneCol.Click += new System.EventHandler(this.btnGetCurrentSceneCol_Click);
//
// tbSceneCol
//
this.tbSceneCol.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbSceneCol.Location = new System.Drawing.Point(8, 267);
this.tbSceneCol.Margin = new System.Windows.Forms.Padding(5, 4,
gitextract_ua3ds4ck/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feedback-or-support-request.md │ └── workflows/ │ └── dotnet-core-desktop.yml ├── .gitignore ├── LICENSE ├── README.md ├── TestClient/ │ ├── AdvancedWindow.Designer.cs │ ├── AdvancedWindow.cs │ ├── AdvancedWindow.resx │ ├── App.config │ ├── LICENSE.md │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ ├── MainWindow.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TestClient.csproj │ └── packages.config ├── obs-websocket-dotnet/ │ ├── Communication/ │ │ ├── MessageFactory.cs │ │ ├── MessageTypes.cs │ │ ├── OBSAuthInfo.cs │ │ ├── ObsCloseCodes.cs │ │ ├── ObsDisconnectionInfo.cs │ │ └── ServerMessage.cs │ ├── Events.cs │ ├── Exceptions.cs │ ├── IOBSWebsocket.cs │ ├── LICENSE.md │ ├── OBSWebsocket.cs │ ├── OBSWebsocket_Requests.cs │ ├── Types/ │ │ ├── Events/ │ │ │ ├── CurrentPreviewSceneChangedEventArgs.cs │ │ │ ├── CurrentProfileChangedEventArgs.cs │ │ │ ├── CurrentProfileChangingEventArgs.cs │ │ │ ├── CurrentSceneCollectionChangedEventArgs.cs │ │ │ ├── CurrentSceneCollectionChangingEventArgs.cs │ │ │ ├── CurrentSceneTransitionChangedEventArgs.cs │ │ │ ├── CurrentSceneTransitionDurationChangedEventArgs.cs │ │ │ ├── InputActiveStateChangedEventArgs.cs │ │ │ ├── InputAudioBalanceChangedEventArgs.cs │ │ │ ├── InputAudioMonitorTypeChangedEventArgs.cs │ │ │ ├── InputAudioSyncOffsetChangedEventArgs.cs │ │ │ ├── InputAudioTracksChangedEventArgs.cs │ │ │ ├── InputCreatedEventArgs.cs │ │ │ ├── InputMuteStateChangedEventArgs.cs │ │ │ ├── InputNameChangedEventArgs.cs │ │ │ ├── InputRemovedEventArgs.cs │ │ │ ├── InputShowStateChangedEventArgs.cs │ │ │ ├── InputVolumeChangedEventArgs.cs │ │ │ ├── InputVolumeMetersEventArgs.cs │ │ │ ├── MediaInputActionTriggeredEventArgs.cs │ │ │ ├── MediaInputPlaybackEndedEventArgs.cs │ │ │ ├── MediaInputPlaybackStartedEventArgs.cs │ │ │ ├── ProfileListChangedEventArgs.cs │ │ │ ├── ProgramSceneChangedEventArgs.cs │ │ │ ├── RecordStateChangedEventArgs.cs │ │ │ ├── ReplayBufferSavedEventArgs.cs │ │ │ ├── ReplayBufferStateChangedEventArgs.cs │ │ │ ├── SceneCollectionListChangedEventArgs.cs │ │ │ ├── SceneCreatedEventArgs.cs │ │ │ ├── SceneItemCreatedEventArgs.cs │ │ │ ├── SceneItemEnableStateChangedEventArgs.cs │ │ │ ├── SceneItemListReindexedEventArgs.cs │ │ │ ├── SceneItemLockStateChangedEventArgs.cs │ │ │ ├── SceneItemRemovedEventArgs.cs │ │ │ ├── SceneItemSelectedEventArgs.cs │ │ │ ├── SceneItemTransformEventArgs.cs │ │ │ ├── SceneListChangedEventArgs.cs │ │ │ ├── SceneNameChangedEventArgs.cs │ │ │ ├── SceneRemovedEventArgs.cs │ │ │ ├── SceneTransitionEndedEventArgs.cs │ │ │ ├── SceneTransitionStartedEventArgs.cs │ │ │ ├── SceneTransitionVideoEndedEventArgs.cs │ │ │ ├── SourceFilterCreatedEventArgs.cs │ │ │ ├── SourceFilterEnableStateChangedEventArgs.cs │ │ │ ├── SourceFilterListReindexedEventArgs.cs │ │ │ ├── SourceFilterNameChangedEventArgs.cs │ │ │ ├── SourceFilterRemovedEventArgs.cs │ │ │ ├── StreamStateChangedEventArgs.cs │ │ │ ├── StudioModeStateChangedEventArgs.cs │ │ │ ├── UnsupportedEventArgs.cs │ │ │ ├── VendorEventArgs.cs │ │ │ └── VirtualcamStateChangedEventArgs.cs │ │ ├── FilterReorderItem.cs │ │ ├── FilterSettings.cs │ │ ├── GetProfileListInfo.cs │ │ ├── GetSceneListInfo.cs │ │ ├── GetTransitionListInfo.cs │ │ ├── Input.cs │ │ ├── InputBasicInfo.cs │ │ ├── InputBrowserSourceSettings.cs │ │ ├── InputFFMpegSettings.cs │ │ ├── InputSettings.cs │ │ ├── InputVolume.cs │ │ ├── KeyModifier.cs │ │ ├── MediaInputStatus.cs │ │ ├── Monitor.cs │ │ ├── OBSHotkey.cs │ │ ├── OBSScene.cs │ │ ├── OBSStats.cs │ │ ├── OBSVersion.cs │ │ ├── OBSVideoSettings.cs │ │ ├── OutputState.cs │ │ ├── OutputStateChanged.cs │ │ ├── OutputStatus.cs │ │ ├── RecordStateChanged.cs │ │ ├── RecordingStatus.cs │ │ ├── SceneBasicInfo.cs │ │ ├── SceneItemBoundsType.cs │ │ ├── SceneItemDetails.cs │ │ ├── SceneItemSourceType.cs │ │ ├── SceneItemTransformInfo.cs │ │ ├── SourceActiveInfo.cs │ │ ├── SourceTracks.cs │ │ ├── StreamingService.cs │ │ ├── StreamingServiceSettings.cs │ │ ├── TransitionOverrideInfo.cs │ │ ├── TransitionSettings.cs │ │ ├── VirtualCamStatus.cs │ │ └── VolumeInfo.cs │ ├── obs-websocket-dotnet.csproj │ └── obs-websocket-dotnet.xml ├── obs-websocket-dotnet-tests/ │ ├── UnitTest_OBSWebsocket.cs │ ├── UnitTest_Types.cs │ ├── obs-websocket-dotnet-tests.csproj │ └── packages.config └── obs-websocket-dotnet.sln
SYMBOL INDEX (623 symbols across 109 files)
FILE: TestClient/AdvancedWindow.Designer.cs
class AdvancedWindow (line 3) | partial class AdvancedWindow
method Dispose (line 14) | protected override void Dispose(bool disposing)
method InitializeComponent (line 29) | private void InitializeComponent()
FILE: TestClient/AdvancedWindow.cs
class AdvancedWindow (line 12) | public partial class AdvancedWindow : Form
method SetOBS (line 20) | public void SetOBS(OBSWebsocket obs)
method AdvancedWindow (line 25) | public AdvancedWindow()
method AdvancedWindow_Load (line 30) | private void AdvancedWindow_Load(object sender, EventArgs e)
method btnEvents_Click (line 35) | private void btnEvents_Click(object sender, EventArgs e)
method Obs_InputActiveStateChanged (line 89) | private void Obs_InputActiveStateChanged(object sender, InputActiveSta...
method Obs_InputMuteStateChanged (line 94) | private void Obs_InputMuteStateChanged(object sender, InputMuteStateCh...
method Obs_SceneItemTransformChanged (line 99) | private void Obs_SceneItemTransformChanged(object sender, SceneItemTra...
method Obs_SceneItemSelected (line 104) | private void Obs_SceneItemSelected(object sender, SceneItemSelectedEve...
method Obs_Disconnected (line 109) | private void Obs_Disconnected(object sender, OBSWebsocketDotNet.Commun...
method Obs_StudioModeStateChanged (line 114) | private void Obs_StudioModeStateChanged(object sender, StudioModeState...
method Obs_ReplayBufferSaved (line 119) | private void Obs_ReplayBufferSaved(object sender, ReplayBufferSavedEve...
method Obs_ReplayBufferStateChanged (line 124) | private void Obs_ReplayBufferStateChanged(object sender, ReplayBufferS...
method Obs_RecordStateChanged (line 129) | private void Obs_RecordStateChanged(object sender, RecordStateChangedE...
method Obs_StreamStateChanged (line 134) | private void Obs_StreamStateChanged(object sender, StreamStateChangedE...
method Obs_VirtualcamStateChanged (line 139) | private void Obs_VirtualcamStateChanged(object sender, VirtualcamState...
method Obs_ProfileListChanged (line 144) | private void Obs_ProfileListChanged(object sender, ProfileListChangedE...
method Obs_CurrentProfileChanged (line 153) | private void Obs_CurrentProfileChanged(object sender, CurrentProfileCh...
method Obs_CurrentSceneTransitionDurationChanged (line 158) | private void Obs_CurrentSceneTransitionDurationChanged(object sender, ...
method Obs_CurrentSceneTransitionChanged (line 163) | private void Obs_CurrentSceneTransitionChanged(object sender, CurrentS...
method Obs_SceneCollectionListChanged (line 168) | private void Obs_SceneCollectionListChanged(object sender, SceneCollec...
method Obs_CurrentSceneCollectionChanged (line 177) | private void Obs_CurrentSceneCollectionChanged(object sender, CurrentS...
method Obs_SceneItemRemoved (line 182) | private void Obs_SceneItemRemoved(object sender, SceneItemRemovedEvent...
method Obs_SceneItemCreated (line 187) | private void Obs_SceneItemCreated(object sender, SceneItemCreatedEvent...
method Obs_SceneListChanged (line 192) | private void Obs_SceneListChanged(object sender, SceneListChangedEvent...
method Obs_CurrentProgramSceneChanged (line 201) | private void Obs_CurrentProgramSceneChanged(object sender, ProgramScen...
method Obs_CurrentPreviewSceneChanged (line 206) | private void Obs_CurrentPreviewSceneChanged(object sender, CurrentPrev...
method OBS_onInputVolumeChanged (line 211) | private void OBS_onInputVolumeChanged(object sender, InputVolumeChange...
method OBS_onSceneItemEnableStateChanged (line 216) | private void OBS_onSceneItemEnableStateChanged(object sender, SceneIte...
method OBS_onSceneItemLockStateChanged (line 221) | private void OBS_onSceneItemLockStateChanged(object sender, SceneItemL...
method OBS_onSourceFilterListReindexed (line 226) | private void OBS_onSourceFilterListReindexed(object sender, SourceFilt...
method OBS_onSceneItemListIndexingChanged (line 235) | private void OBS_onSceneItemListIndexingChanged(object sender, SceneIt...
method OBS_onSourceFilterEnableStateChanged (line 240) | private void OBS_onSourceFilterEnableStateChanged(object sender, Sourc...
method OBS_onSourceFilterRemoved (line 245) | private void OBS_onSourceFilterRemoved(object sender, SourceFilterRemo...
method OBS_onSourceFilterCreated (line 250) | private void OBS_onSourceFilterCreated(object sender, SourceFilterCrea...
method OBS_onSceneTransitionVideoEnded (line 255) | private void OBS_onSceneTransitionVideoEnded(object sender, SceneTrans...
method OBS_onSceneTransitionEnded (line 260) | private void OBS_onSceneTransitionEnded(object sender, SceneTransition...
method OBS_onSceneTransitionStarted (line 265) | private void OBS_onSceneTransitionStarted(object sender, SceneTransiti...
method LogMessage (line 270) | private void LogMessage(string message)
method btnRename_Click (line 285) | private void btnRename_Click(object sender, EventArgs e)
method btnSourceInfo_Click (line 300) | private void btnSourceInfo_Click(object sender, EventArgs e)
method btnSourceFilters_Click (line 334) | private void btnSourceFilters_Click(object sender, EventArgs e)
method LogFilter (line 369) | private void LogFilter(FilterSettings filter)
method btnCreateScene_Click (line 374) | private void btnCreateScene_Click(object sender, EventArgs e)
method btnOutputs_Click (line 393) | private void btnOutputs_Click(object sender, EventArgs e)
method btnTransition_Click (line 430) | private void btnTransition_Click(object sender, EventArgs e)
method btnTracks_Click (line 448) | private void btnTracks_Click(object sender, EventArgs e)
method btnToggleVidCapDvc_Click (line 505) | private void btnToggleVidCapDvc_Click(object sender, EventArgs e)
method btnGetInputList_Click (line 519) | private void btnGetInputList_Click(object sender, EventArgs e)
method btnGetGroupList_Click (line 535) | private void btnGetGroupList_Click(object sender, EventArgs e)
method btnGetMonitorList_Click (line 545) | private void btnGetMonitorList_Click(object sender, EventArgs e)
method btnInputInfo_Click (line 556) | private void btnInputInfo_Click(object sender, EventArgs e)
method btnSourcesList_Click (line 573) | private void btnSourcesList_Click(object sender, EventArgs e)
method btnStopRecord_Click (line 584) | private void btnStopRecord_Click(object sender, EventArgs e)
method btnDoNothing_Click (line 590) | private void btnDoNothing_Click(object sender, EventArgs e)
FILE: TestClient/MainWindow.Designer.cs
class MainWindow (line 21) | partial class MainWindow
method Dispose (line 32) | protected override void Dispose(bool disposing)
method InitializeComponent (line 47) | private void InitializeComponent()
FILE: TestClient/MainWindow.cs
class MainWindow (line 31) | public partial class MainWindow : Form
method MainWindow (line 39) | public MainWindow()
method onConnect (line 59) | private void onConnect(object sender, EventArgs e)
method onDisconnect (line 157) | private void onDisconnect(object sender, OBSWebsocketDotNet.Communicat...
method onCurrentProgramSceneChanged (line 196) | private void onCurrentProgramSceneChanged(object sender, ProgramSceneC...
method onSceneCollectionChanged (line 204) | private void onSceneCollectionChanged(object sender, CurrentSceneColle...
method onCurrentProfileChanged (line 212) | private void onCurrentProfileChanged(object sender, CurrentProfileChan...
method onCurrentSceneTransitionChanged (line 220) | private void onCurrentSceneTransitionChanged(object sender, CurrentSce...
method onCurrentSceneTransitionDurationChanged (line 228) | private void onCurrentSceneTransitionDurationChanged(object sender, Cu...
method onStreamStateChanged (line 236) | private void onStreamStateChanged(object sender, StreamStateChangedEve...
method onRecordStateChanged (line 268) | private void onRecordStateChanged(object sender, RecordStateChangedEve...
method btnConnect_Click (line 304) | private void btnConnect_Click(object sender, EventArgs e)
method btnListScenes_Click (line 330) | private void btnListScenes_Click(object sender, EventArgs e)
method btnGetCurrentScene_Click (line 349) | private void btnGetCurrentScene_Click(object sender, EventArgs e)
method btnSetCurrentScene_Click (line 354) | private void btnSetCurrentScene_Click(object sender, EventArgs e)
method tvScenes_NodeMouseClick (line 359) | private void tvScenes_NodeMouseClick(object sender, TreeNodeMouseClick...
method btnListSceneCol_Click (line 367) | private void btnListSceneCol_Click(object sender, EventArgs e)
method btnGetCurrentSceneCol_Click (line 378) | private void btnGetCurrentSceneCol_Click(object sender, EventArgs e)
method btnSetCurrentSceneCol_Click (line 383) | private void btnSetCurrentSceneCol_Click(object sender, EventArgs e)
method tvSceneCols_NodeMouseClick (line 388) | private void tvSceneCols_NodeMouseClick(object sender, TreeNodeMouseCl...
method btnListProfiles_Click (line 396) | private void btnListProfiles_Click(object sender, EventArgs e)
method btnGetCurrentProfile_Click (line 407) | private void btnGetCurrentProfile_Click(object sender, EventArgs e)
method btnSetCurrentProfile_Click (line 412) | private void btnSetCurrentProfile_Click(object sender, EventArgs e)
method tvProfiles_NodeMouseClick (line 417) | private void tvProfiles_NodeMouseClick(object sender, TreeNodeMouseCli...
method btnToggleStreaming_Click (line 425) | private void btnToggleStreaming_Click(object sender, EventArgs e)
method btnToggleRecording_Click (line 430) | private void btnToggleRecording_Click(object sender, EventArgs e)
method btnListTransitions_Click (line 435) | private void btnListTransitions_Click(object sender, EventArgs e)
method btnGetCurrentTransition_Click (line 446) | private void btnGetCurrentTransition_Click(object sender, EventArgs e)
method btnSetCurrentTransition_Click (line 451) | private void btnSetCurrentTransition_Click(object sender, EventArgs e)
method tvTransitions_NodeMouseClick (line 456) | private void tvTransitions_NodeMouseClick(object sender, TreeNodeMouse...
method btnGetTransitionDuration_Click (line 464) | private void btnGetTransitionDuration_Click(object sender, EventArgs e)
method btnSetTransitionDuration_Click (line 469) | private void btnSetTransitionDuration_Click(object sender, EventArgs e)
method btnAdvanced_Click (line 474) | private void btnAdvanced_Click(object sender, EventArgs e)
method btnBrowse_Click (line 481) | private void btnBrowse_Click(object sender, EventArgs e)
method btnSetPath_Click (line 490) | private void btnSetPath_Click(object sender, EventArgs e)
method onVirtualCamStateChanged (line 496) | private void onVirtualCamStateChanged(object sender, VirtualcamStateCh...
method btnVirtualCamStart_Click (line 528) | private void btnVirtualCamStart_Click(object sender, EventArgs e)
method btnVirtualCamStop_Click (line 533) | private void btnVirtualCamStop_Click(object sender, EventArgs e)
method btnVirtualCamToggle_Click (line 538) | private void btnVirtualCamToggle_Click(object sender, EventArgs e)
method UpdateOBSStats (line 543) | private void UpdateOBSStats(ObsStats data)
method UpdateStreamStats (line 561) | private void UpdateStreamStats(OutputStatus data)
method UpdateRecordingStats (line 576) | private void UpdateRecordingStats(RecordingStatus data)
method tableLayoutPanel3_Paint (line 588) | private void tableLayoutPanel3_Paint(object sender, PaintEventArgs e)
method label17_Click (line 593) | private void label17_Click(object sender, EventArgs e)
method MainWindow_Load (line 598) | private void MainWindow_Load(object sender, EventArgs e)
method CurrentDomain_UnhandledException (line 607) | private void CurrentDomain_UnhandledException(object sender, Unhandled...
method Application_ThreadException (line 612) | private void Application_ThreadException(object sender, ThreadExceptio...
method btnPauseRecording_Click (line 617) | private void btnPauseRecording_Click(object sender, EventArgs e)
FILE: TestClient/Program.cs
class Program (line 24) | static class Program
method Main (line 29) | [STAThread]
FILE: TestClient/Properties/Resources.Designer.cs
class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...
FILE: TestClient/Properties/Settings.Designer.cs
class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
FILE: obs-websocket-dotnet-tests/UnitTest_OBSWebsocket.cs
class UnitTest_OBSWebsocket (line 6) | [TestClass]
method NewMessageID_Test (line 9) | [TestMethod]
method HashEncode_Test (line 19) | [TestMethod]
FILE: obs-websocket-dotnet-tests/UnitTest_Types.cs
class UnitTest_Types (line 8) | [TestClass]
method OBSScene_BuildFromJSON (line 11) | [TestMethod]
method OBSAuthInfo_BuildFromJSON (line 61) | [TestMethod]
method OBSVersion_BuildFromJSON (line 80) | [TestMethod]
method OBSStreamStatus_BuildFromJSON (line 113) | [TestMethod]
method OBSOutputStatus_BuildFromJSON (line 147) | [TestMethod]
method OBSCurrentTransitionInfo_BuildFromJSON (line 162) | [TestMethod]
method OBSVolumeInfo_BuildFromJSON (line 189) | [TestMethod]
FILE: obs-websocket-dotnet/Communication/MessageFactory.cs
class MessageFactory (line 8) | internal static class MessageFactory
method BuildMessage (line 10) | internal static JObject BuildMessage(MessageTypes opCode, string messa...
FILE: obs-websocket-dotnet/Communication/MessageTypes.cs
type MessageTypes (line 7) | internal enum MessageTypes
FILE: obs-websocket-dotnet/Communication/OBSAuthInfo.cs
class OBSAuthInfo (line 9) | public class OBSAuthInfo
method OBSAuthInfo (line 27) | public OBSAuthInfo(JObject data)
method OBSAuthInfo (line 35) | public OBSAuthInfo() { }
FILE: obs-websocket-dotnet/Communication/ObsCloseCodes.cs
type ObsCloseCodes (line 10) | public enum ObsCloseCodes
FILE: obs-websocket-dotnet/Communication/ObsDisconnectionInfo.cs
class ObsDisconnectionInfo (line 10) | public class ObsDisconnectionInfo
method ObsDisconnectionInfo (line 33) | public ObsDisconnectionInfo(ObsCloseCodes obsCloseCode, string disconn...
FILE: obs-websocket-dotnet/Communication/ServerMessage.cs
class ServerMessage (line 9) | internal class ServerMessage
FILE: obs-websocket-dotnet/Events.cs
class OBSWebsocket (line 13) | public partial class OBSWebsocket
method ProcessEventType (line 308) | protected void ProcessEventType(string eventType, JObject body)
FILE: obs-websocket-dotnet/Exceptions.cs
class AuthFailureException (line 8) | public class AuthFailureException : Exception
class ErrorResponseException (line 15) | public class ErrorResponseException : Exception
method ErrorResponseException (line 27) | public ErrorResponseException(string message, int errorCode) : base(me...
FILE: obs-websocket-dotnet/IOBSWebsocket.cs
type IOBSWebsocket (line 14) | public interface IOBSWebsocket
method GetVideoSettings (line 34) | ObsVideoSettings GetVideoSettings();
method SaveSourceScreenshot (line 49) | string SaveSourceScreenshot(string sourceName, string imageFormat, str...
method SaveSourceScreenshot (line 61) | string SaveSourceScreenshot(string sourceName, string imageFormat, str...
method TriggerHotkeyByName (line 67) | void TriggerHotkeyByName(string hotkeyName);
method TriggerHotkeyByKeySequence (line 74) | void TriggerHotkeyByKeySequence(OBSHotkey keyId, KeyModifier keyModifi...
method GetCurrentProgramScene (line 80) | string GetCurrentProgramScene();
method SetCurrentProgramScene (line 86) | void SetCurrentProgramScene(string sceneName);
method GetStats (line 91) | ObsStats GetStats();
method ListScenes (line 97) | List<SceneBasicInfo> ListScenes();
method GetSceneList (line 102) | GetSceneListInfo GetSceneList();
method GetSceneSceneTransitionOverride (line 109) | TransitionOverrideInfo GetSceneSceneTransitionOverride(string sceneName);
method SetSceneSceneTransitionOverride (line 117) | void SetSceneSceneTransitionOverride(string sceneName, string transiti...
method SetTBarPosition (line 124) | void SetTBarPosition(double position, bool release = true);
method SetSourceFilterSettings (line 133) | void SetSourceFilterSettings(string sourceName, string filterName, JOb...
method SetSourceFilterSettings (line 142) | void SetSourceFilterSettings(string sourceName, string filterName, Fil...
method SetSourceFilterEnabled (line 150) | void SetSourceFilterEnabled(string sourceName, string filterName, bool...
method GetSourceFilterList (line 156) | List<FilterSettings> GetSourceFilterList(string sourceName);
method GetSourceFilter (line 163) | FilterSettings GetSourceFilter(string sourceName, string filterName);
method RemoveSourceFilter (line 170) | bool RemoveSourceFilter(string sourceName, string filterName);
method CreateSourceFilter (line 179) | void CreateSourceFilter(string sourceName, string filterName, string f...
method CreateSourceFilter (line 188) | void CreateSourceFilter(string sourceName, string filterName, string f...
method ToggleStream (line 194) | bool ToggleStream();
method ToggleRecord (line 199) | void ToggleRecord();
method GetStreamStatus (line 205) | OutputStatus GetStreamStatus();
method GetCurrentSceneTransition (line 211) | TransitionSettings GetCurrentSceneTransition();
method SetCurrentSceneTransition (line 217) | void SetCurrentSceneTransition(string transitionName);
method SetCurrentSceneTransitionDuration (line 223) | void SetCurrentSceneTransitionDuration(int transitionDuration);
method SetCurrentSceneTransitionSettings (line 231) | void SetCurrentSceneTransitionSettings(JObject transitionSettings, boo...
method SetInputVolume (line 239) | void SetInputVolume(string inputName, float inputVolume, bool inputVol...
method GetInputVolume (line 247) | VolumeInfo GetInputVolume(string inputName);
method GetInputMute (line 254) | bool GetInputMute(string inputName);
method SetInputMute (line 261) | void SetInputMute(string inputName, bool inputMuted);
method ToggleInputMute (line 267) | void ToggleInputMute(string inputName);
method SetSceneItemTransform (line 275) | void SetSceneItemTransform(string sceneName, int sceneItemId, JObject ...
method SetSceneItemTransform (line 283) | void SetSceneItemTransform(string sceneName, int sceneItemId, SceneIte...
method SetCurrentSceneCollection (line 289) | void SetCurrentSceneCollection(string sceneCollectionName);
method GetCurrentSceneCollection (line 295) | string GetCurrentSceneCollection();
method GetSceneCollectionList (line 301) | List<string> GetSceneCollectionList();
method SetCurrentProfile (line 307) | void SetCurrentProfile(string profileName);
method GetProfileList (line 313) | GetProfileListInfo GetProfileList();
method StartStream (line 318) | void StartStream();
method StopStream (line 323) | void StopStream();
method StartRecord (line 328) | void StartRecord();
method StopRecord (line 334) | string StopRecord();
method PauseRecord (line 339) | void PauseRecord();
method ResumeRecord (line 344) | void ResumeRecord();
method GetRecordDirectory (line 350) | string GetRecordDirectory();
method GetRecordStatus (line 356) | RecordingStatus GetRecordStatus();
method GetReplayBufferStatus (line 362) | bool GetReplayBufferStatus();
method GetSceneTransitionList (line 368) | GetTransitionListInfo GetSceneTransitionList();
method GetStudioModeEnabled (line 374) | bool GetStudioModeEnabled();
method SetStudioModeEnabled (line 380) | void SetStudioModeEnabled(bool studioModeEnabled);
method GetCurrentPreviewScene (line 387) | string GetCurrentPreviewScene();
method SetCurrentPreviewScene (line 394) | void SetCurrentPreviewScene(string sceneName);
method SetCurrentPreviewScene (line 401) | void SetCurrentPreviewScene(ObsScene previewScene);
method TriggerStudioModeTransition (line 406) | void TriggerStudioModeTransition();
method ToggleReplayBuffer (line 411) | void ToggleReplayBuffer();
method StartReplayBuffer (line 418) | void StartReplayBuffer();
method StopReplayBuffer (line 424) | void StopReplayBuffer();
method SaveReplayBuffer (line 431) | void SaveReplayBuffer();
method SetInputAudioSyncOffset (line 438) | void SetInputAudioSyncOffset(string inputName, int inputAudioSyncOffset);
method GetInputAudioSyncOffset (line 445) | int GetInputAudioSyncOffset(string inputName);
method RemoveSceneItem (line 453) | void RemoveSceneItem(string sceneName, int sceneItemId);
method SendStreamCaption (line 459) | void SendStreamCaption(string captionText);
method DuplicateSceneItem (line 467) | void DuplicateSceneItem(string sceneName, int sceneItemId, string dest...
method GetSpecialInputs (line 473) | Dictionary<string, string> GetSpecialInputs();
method SetStreamServiceSettings (line 480) | void SetStreamServiceSettings(StreamingService service);
method GetStreamServiceSettings (line 486) | StreamingService GetStreamServiceSettings();
method GetInputAudioMonitorType (line 497) | string GetInputAudioMonitorType(string inputName);
method SetInputAudioMonitorType (line 504) | void SetInputAudioMonitorType(string inputName, string monitorType);
method BroadcastCustomEvent (line 510) | void BroadcastCustomEvent(JObject eventData);
method SetMediaInputCursor (line 518) | void SetMediaInputCursor(string inputName, int mediaCursor);
method OffsetMediaInputCursor (line 526) | void OffsetMediaInputCursor(string inputName, int mediaCursorOffset);
method CreateInput (line 537) | int CreateInput(string sceneName, string inputName, string inputKind, ...
method GetInputDefaultSettings (line 544) | JObject GetInputDefaultSettings(string inputKind);
method GetSceneItemList (line 552) | List<SceneItemDetails> GetSceneItemList(string sceneName);
method CreateSceneItem (line 562) | int CreateSceneItem(string sceneName, string sourceName, bool sceneIte...
method CreateScene (line 568) | void CreateScene(string sceneName);
method GetInputAudioTracks (line 575) | SourceTracks GetInputAudioTracks(string inputName);
method SetInputAudioTracks (line 582) | void SetInputAudioTracks(string inputName, JObject inputAudioTracks);
method SetInputAudioTracks (line 589) | void SetInputAudioTracks(string inputName, SourceTracks inputAudioTrac...
method GetSourceActive (line 597) | SourceActiveInfo GetSourceActive(string sourceName);
method GetVirtualCamStatus (line 603) | VirtualCamStatus GetVirtualCamStatus();
method StartVirtualCam (line 608) | void StartVirtualCam();
method StopVirtualCam (line 613) | void StopVirtualCam();
method ToggleVirtualCam (line 619) | VirtualCamStatus ToggleVirtualCam();
method GetPersistentData (line 627) | JObject GetPersistentData(string realm, string slotName);
method SetPersistentData (line 635) | void SetPersistentData(string realm, string slotName, JObject slotValue);
method CreateSceneCollection (line 641) | void CreateSceneCollection(string sceneCollectionName);
method CreateProfile (line 647) | void CreateProfile(string profileName);
method RemoveProfile (line 653) | void RemoveProfile(string profileName);
method GetProfileParameter (line 661) | JObject GetProfileParameter(string parameterCategory, string parameter...
method SetProfileParameter (line 669) | void SetProfileParameter(string parameterCategory, string parameterNam...
method SetVideoSettings (line 676) | void SetVideoSettings(ObsVideoSettings obsVideoSettings);
method GetSourceFilterDefaultSettings (line 683) | JObject GetSourceFilterDefaultSettings(string filterKind);
method SetSourceFilterName (line 691) | void SetSourceFilterName(string sourceName, string filterName, string ...
method SetSourceFilterIndex (line 699) | void SetSourceFilterIndex(string sourceName, string filterName, int fi...
method GetVersion (line 705) | ObsVersion GetVersion();
method CallVendorRequest (line 716) | JObject CallVendorRequest(string vendorName, string requestType, JObje...
method GetHotkeyList (line 722) | List<string> GetHotkeyList();
method Sleep (line 729) | void Sleep(int sleepMillis, int sleepFrames);
method GetInputList (line 736) | List<InputBasicInfo> GetInputList(string inputKind = null);
method GetInputKindList (line 743) | List<string> GetInputKindList(bool unversioned = false);
method RemoveInput (line 750) | void RemoveInput(string inputName);
method SetInputName (line 757) | void SetInputName(string inputName, string newInputName);
method GetInputSettings (line 765) | InputSettings GetInputSettings(string inputName);
method SetInputSettings (line 772) | void SetInputSettings(InputSettings inputSettings, bool overlay = true);
method SetInputSettings (line 780) | void SetInputSettings(string inputName, JObject inputSettings, bool ov...
method GetInputAudioBalance (line 787) | double GetInputAudioBalance(string inputName);
method SetInputAudioBalance (line 794) | void SetInputAudioBalance(string inputName, double inputAudioBalance);
method GetInputPropertiesListPropertyItems (line 804) | List<JObject> GetInputPropertiesListPropertyItems(string inputName, st...
method PressInputPropertiesButton (line 813) | void PressInputPropertiesButton(string inputName, string propertyName);
method GetMediaInputStatus (line 828) | MediaInputStatus GetMediaInputStatus(string inputName);
method TriggerMediaInputAction (line 835) | void TriggerMediaInputAction(string inputName, string mediaAction);
method GetLastReplayBufferReplay (line 841) | string GetLastReplayBufferReplay();
method ToggleRecordPause (line 846) | void ToggleRecordPause();
method GetGroupSceneItemList (line 856) | List<JObject> GetGroupSceneItemList(string sceneName);
method GetSceneItemId (line 865) | int GetSceneItemId(string sceneName, string sourceName, int searchOffs...
method GetSceneItemTransform (line 874) | SceneItemTransformInfo GetSceneItemTransform(string sceneName, int sce...
method GetSceneItemTransformRaw (line 883) | JObject GetSceneItemTransformRaw(string sceneName, int sceneItemId);
method GetSceneItemEnabled (line 892) | bool GetSceneItemEnabled(string sceneName, int sceneItemId);
method SetSceneItemEnabled (line 901) | void SetSceneItemEnabled(string sceneName, int sceneItemId, bool scene...
method GetSceneItemLocked (line 910) | bool GetSceneItemLocked(string sceneName, int sceneItemId);
method SetSceneItemLocked (line 919) | void SetSceneItemLocked(string sceneName, int sceneItemId, bool sceneI...
method GetSceneItemIndex (line 929) | int GetSceneItemIndex(string sceneName, int sceneItemId);
method SetSceneItemIndex (line 938) | void SetSceneItemIndex(string sceneName, int sceneItemId, int sceneIte...
method GetSceneItemBlendMode (line 955) | string GetSceneItemBlendMode(string sceneName, int sceneItemId);
method SetSceneItemBlendMode (line 964) | void SetSceneItemBlendMode(string sceneName, int sceneItemId, string s...
method GetGroupList (line 971) | List<string> GetGroupList();
method RemoveScene (line 977) | void RemoveScene(string sceneName);
method SetSceneName (line 984) | void SetSceneName(string sceneName, string newSceneName);
method GetSourceScreenshot (line 998) | string GetSourceScreenshot(string sourceName, string imageFormat, int ...
method GetTransitionKindList (line 1005) | List<string> GetTransitionKindList();
method GetCurrentSceneTransitionCursor (line 1012) | double GetCurrentSceneTransitionCursor();
method OpenInputPropertiesDialog (line 1018) | void OpenInputPropertiesDialog(string inputName);
method OpenInputFiltersDialog (line 1024) | void OpenInputFiltersDialog(string inputName);
method OpenInputInteractDialog (line 1030) | void OpenInputInteractDialog(string inputName);
method GetMonitorList (line 1036) | List<Monitor> GetMonitorList();
method Connect (line 1044) | [Obsolete("Please use ConnectAsync, this function will be removed in t...
method ConnectAsync (line 1053) | void ConnectAsync(string url, string password);
method Disconnect (line 1058) | void Disconnect();
method SendRequest (line 1066) | JObject SendRequest(string requestType, JObject additionalFields = null);
method GetAuthInfo (line 1072) | OBSAuthInfo GetAuthInfo();
FILE: obs-websocket-dotnet/OBSWebsocket.cs
class OBSWebsocket (line 16) | public partial class OBSWebsocket : IOBSWebsocket
method OBSWebsocket (line 72) | public OBSWebsocket()
method Connect (line 83) | [Obsolete("Please use ConnectAsync, this function will be removed in t...
method ConnectAsync (line 95) | public void ConnectAsync(string url, string password)
method Disconnect (line 121) | public void Disconnect()
method OnWebsocketDisconnect (line 146) | private void OnWebsocketDisconnect(object sender, DisconnectionInfo d)
method WebsocketMessageHandler (line 160) | private void WebsocketMessageHandler(object sender, ResponseMessage e)
method SendRequest (line 216) | public JObject SendRequest(string requestType, JObject additionalField...
method SendRequest (line 230) | internal JObject SendRequest(MessageTypes operationCode, string reques...
method GetAuthInfo (line 283) | public OBSAuthInfo GetAuthInfo()
method SendIdentify (line 295) | protected void SendIdentify(string password, OBSAuthInfo authInfo = null)
method HashEncode (line 319) | protected string HashEncode(string input)
method NewMessageID (line 334) | protected string NewMessageID(int length = 16)
method HandleHello (line 348) | private void HandleHello(JObject payload)
FILE: obs-websocket-dotnet/OBSWebsocket_Requests.cs
class OBSWebsocket (line 15) | public partial class OBSWebsocket
method GetVideoSettings (line 28) | public ObsVideoSettings GetVideoSettings()
method SaveSourceScreenshot (line 47) | public string SaveSourceScreenshot(string sourceName, string imageForm...
method SaveSourceScreenshot (line 83) | public string SaveSourceScreenshot(string sourceName, string imageForm...
method TriggerHotkeyByName (line 92) | public void TriggerHotkeyByName(string hotkeyName)
method TriggerHotkeyByKeySequence (line 107) | public void TriggerHotkeyByKeySequence(OBSHotkey keyId, KeyModifier ke...
method GetCurrentProgramScene (line 127) | public string GetCurrentProgramScene()
method SetCurrentProgramScene (line 137) | public void SetCurrentProgramScene(string sceneName)
method GetStats (line 150) | public ObsStats GetStats()
method ListScenes (line 160) | public List<SceneBasicInfo> ListScenes()
method GetSceneList (line 169) | public GetSceneListInfo GetSceneList()
method GetSceneSceneTransitionOverride (line 180) | public TransitionOverrideInfo GetSceneSceneTransitionOverride(string s...
method SetSceneSceneTransitionOverride (line 197) | public void SetSceneSceneTransitionOverride(string sceneName, string t...
method SetTBarPosition (line 218) | public void SetTBarPosition(double position, bool release = true)
method SetSourceFilterSettings (line 241) | public void SetSourceFilterSettings(string sourceName, string filterNa...
method SetSourceFilterSettings (line 261) | public void SetSourceFilterSettings(string sourceName, string filterNa...
method SetSourceFilterEnabled (line 274) | public void SetSourceFilterEnabled(string sourceName, string filterNam...
method GetSourceFilterList (line 290) | public List<FilterSettings> GetSourceFilterList(string sourceName)
method GetSourceFilter (line 311) | public FilterSettings GetSourceFilter(string sourceName, string filter...
method RemoveSourceFilter (line 328) | public bool RemoveSourceFilter(string sourceName, string filterName)
method CreateSourceFilter (line 355) | public void CreateSourceFilter(string sourceName, string filterName, s...
method CreateSourceFilter (line 375) | public void CreateSourceFilter(string sourceName, string filterName, s...
method ToggleStream (line 384) | public bool ToggleStream()
method ToggleRecord (line 393) | public void ToggleRecord()
method GetStreamStatus (line 402) | public OutputStatus GetStreamStatus()
method GetCurrentSceneTransition (line 413) | public TransitionSettings GetCurrentSceneTransition()
method SetCurrentSceneTransition (line 423) | public void SetCurrentSceneTransition(string transitionName)
method SetCurrentSceneTransitionDuration (line 437) | public void SetCurrentSceneTransitionDuration(int transitionDuration)
method SetCurrentSceneTransitionSettings (line 453) | public void SetCurrentSceneTransitionSettings(JObject transitionSettin...
method SetInputVolume (line 470) | public void SetInputVolume(string inputName, float inputVolume, bool i...
method GetInputVolume (line 495) | public VolumeInfo GetInputVolume(string inputName)
method GetInputMute (line 511) | public bool GetInputMute(string inputName)
method SetInputMute (line 527) | public void SetInputMute(string inputName, bool inputMuted)
method ToggleInputMute (line 542) | public void ToggleInputMute(string inputName)
method SetSceneItemTransform (line 558) | public void SetSceneItemTransform(string sceneName, int sceneItemId, J...
method SetSceneItemTransform (line 576) | public void SetSceneItemTransform(string sceneName, int sceneItemId, S...
method SetCurrentSceneCollection (line 585) | public void SetCurrentSceneCollection(string sceneCollectionName)
method GetCurrentSceneCollection (line 599) | public string GetCurrentSceneCollection()
method GetSceneCollectionList (line 610) | public List<string> GetSceneCollectionList()
method SetCurrentProfile (line 620) | public void SetCurrentProfile(string profileName)
method GetProfileList (line 634) | public GetProfileListInfo GetProfileList()
method StartStream (line 643) | public void StartStream()
method StopStream (line 651) | public void StopStream()
method StartRecord (line 659) | public void StartRecord()
method StopRecord (line 668) | public string StopRecord()
method PauseRecord (line 677) | public void PauseRecord()
method ResumeRecord (line 685) | public void ResumeRecord()
method GetRecordDirectory (line 694) | public string GetRecordDirectory()
method GetRecordStatus (line 704) | public RecordingStatus GetRecordStatus()
method GetReplayBufferStatus (line 714) | public bool GetReplayBufferStatus()
method GetSceneTransitionList (line 724) | public GetTransitionListInfo GetSceneTransitionList()
method GetStudioModeEnabled (line 735) | public bool GetStudioModeEnabled()
method SetStudioModeEnabled (line 745) | public void SetStudioModeEnabled(bool studioModeEnabled)
method GetCurrentPreviewScene (line 760) | public string GetCurrentPreviewScene()
method SetCurrentPreviewScene (line 771) | public void SetCurrentPreviewScene(string sceneName)
method SetCurrentPreviewScene (line 786) | public void SetCurrentPreviewScene(ObsScene previewScene)
method TriggerStudioModeTransition (line 794) | public void TriggerStudioModeTransition()
method ToggleReplayBuffer (line 802) | public void ToggleReplayBuffer()
method StartReplayBuffer (line 812) | public void StartReplayBuffer()
method StopReplayBuffer (line 821) | public void StopReplayBuffer()
method SaveReplayBuffer (line 831) | public void SaveReplayBuffer()
method SetInputAudioSyncOffset (line 841) | public void SetInputAudioSyncOffset(string inputName, int inputAudioSy...
method GetInputAudioSyncOffset (line 857) | public int GetInputAudioSyncOffset(string inputName)
method RemoveSceneItem (line 873) | public void RemoveSceneItem(string sceneName, int sceneItemId)
method SendStreamCaption (line 888) | public void SendStreamCaption(string captionText)
method DuplicateSceneItem (line 904) | public void DuplicateSceneItem(string sceneName, int sceneItemId, stri...
method GetSpecialInputs (line 924) | public Dictionary<string, string> GetSpecialInputs()
method SetStreamServiceSettings (line 945) | public void SetStreamServiceSettings(StreamingService service)
method GetStreamServiceSettings (line 960) | public StreamingService GetStreamServiceSettings()
method GetInputAudioMonitorType (line 976) | public string GetInputAudioMonitorType(string inputName)
method SetInputAudioMonitorType (line 992) | public void SetInputAudioMonitorType(string inputName, string monitorT...
method BroadcastCustomEvent (line 1007) | public void BroadcastCustomEvent(JObject eventData)
method SetMediaInputCursor (line 1023) | public void SetMediaInputCursor(string inputName, int mediaCursor)
method OffsetMediaInputCursor (line 1040) | public void OffsetMediaInputCursor(string inputName, int mediaCursorOf...
method CreateInput (line 1060) | public int CreateInput(string sceneName, string inputName, string inpu...
method GetInputDefaultSettings (line 1088) | public JObject GetInputDefaultSettings(string inputKind)
method GetSceneItemList (line 1105) | public List<SceneItemDetails> GetSceneItemList(string sceneName)
method CreateSceneItem (line 1128) | public int CreateSceneItem(string sceneName, string sourceName, bool s...
method CreateScene (line 1145) | public void CreateScene(string sceneName)
method GetInputAudioTracks (line 1160) | public SourceTracks GetInputAudioTracks(string inputName)
method SetInputAudioTracks (line 1176) | public void SetInputAudioTracks(string inputName, JObject inputAudioTr...
method SetInputAudioTracks (line 1192) | public void SetInputAudioTracks(string inputName, SourceTracks inputAu...
method GetSourceActive (line 1203) | public SourceActiveInfo GetSourceActive(string sourceName)
method GetVirtualCamStatus (line 1218) | public VirtualCamStatus GetVirtualCamStatus()
method StartVirtualCam (line 1228) | public void StartVirtualCam()
method StopVirtualCam (line 1236) | public void StopVirtualCam()
method ToggleVirtualCam (line 1245) | public VirtualCamStatus ToggleVirtualCam()
method GetPersistentData (line 1258) | public JObject GetPersistentData(string realm, string slotName)
method SetPersistentData (line 1275) | public void SetPersistentData(string realm, string slotName, JObject s...
method CreateSceneCollection (line 1291) | public void CreateSceneCollection(string sceneCollectionName)
method CreateProfile (line 1305) | public void CreateProfile(string profileName)
method RemoveProfile (line 1319) | public void RemoveProfile(string profileName)
method GetProfileParameter (line 1335) | public JObject GetProfileParameter(string parameterCategory, string pa...
method SetProfileParameter (line 1352) | public void SetProfileParameter(string parameterCategory, string param...
method SetVideoSettings (line 1369) | public void SetVideoSettings(ObsVideoSettings obsVideoSettings)
method GetSourceFilterDefaultSettings (line 1379) | public JObject GetSourceFilterDefaultSettings(string filterKind)
method SetSourceFilterName (line 1395) | public void SetSourceFilterName(string sourceName, string filterName, ...
method SetSourceFilterIndex (line 1413) | public void SetSourceFilterIndex(string sourceName, string filterName,...
method GetVersion (line 1429) | public ObsVersion GetVersion()
method CallVendorRequest (line 1444) | public JObject CallVendorRequest(string vendorName, string requestType...
method GetHotkeyList (line 1460) | public List<string> GetHotkeyList()
method Sleep (line 1471) | public void Sleep(int sleepMillis, int sleepFrames)
method GetInputList (line 1487) | public List<InputBasicInfo> GetInputList(string inputKind = null)
method GetInputKindList (line 1512) | public List<string> GetInputKindList(bool unversioned = false)
method RemoveInput (line 1531) | public void RemoveInput(string inputName)
method SetInputName (line 1546) | public void SetInputName(string inputName, string newInputName)
method GetInputSettings (line 1563) | public InputSettings GetInputSettings(string inputName)
method SetInputSettings (line 1580) | public void SetInputSettings(InputSettings inputSettings, bool overlay...
method SetInputSettings (line 1591) | public void SetInputSettings(string inputName, JObject inputSettings, ...
method GetInputAudioBalance (line 1608) | public double GetInputAudioBalance(string inputName)
method SetInputAudioBalance (line 1624) | public void SetInputAudioBalance(string inputName, double inputAudioBa...
method GetInputPropertiesListPropertyItems (line 1643) | public List<JObject> GetInputPropertiesListPropertyItems(string inputN...
method PressInputPropertiesButton (line 1662) | public void PressInputPropertiesButton(string inputName, string proper...
method GetMediaInputStatus (line 1686) | public MediaInputStatus GetMediaInputStatus(string inputName)
method TriggerMediaInputAction (line 1701) | public void TriggerMediaInputAction(string inputName, string mediaAction)
method GetLastReplayBufferReplay (line 1716) | public string GetLastReplayBufferReplay()
method ToggleRecordPause (line 1725) | public void ToggleRecordPause()
method GetGroupSceneItemList (line 1738) | public List<JObject> GetGroupSceneItemList(string sceneName)
method GetSceneItemId (line 1756) | public int GetSceneItemId(string sceneName, string sourceName, int sea...
method GetSceneItemTransform (line 1776) | public SceneItemTransformInfo GetSceneItemTransform(string sceneName, ...
method GetSceneItemTransformRaw (line 1789) | public JObject GetSceneItemTransformRaw(string sceneName, int sceneIte...
method GetSceneItemEnabled (line 1807) | public bool GetSceneItemEnabled(string sceneName, int sceneItemId)
method SetSceneItemEnabled (line 1826) | public void SetSceneItemEnabled(string sceneName, int sceneItemId, boo...
method GetSceneItemLocked (line 1845) | public bool GetSceneItemLocked(string sceneName, int sceneItemId)
method SetSceneItemLocked (line 1864) | public void SetSceneItemLocked(string sceneName, int sceneItemId, bool...
method GetSceneItemIndex (line 1884) | public int GetSceneItemIndex(string sceneName, int sceneItemId)
method SetSceneItemIndex (line 1903) | public void SetSceneItemIndex(string sceneName, int sceneItemId, int s...
method GetSceneItemBlendMode (line 1930) | public string GetSceneItemBlendMode(string sceneName, int sceneItemId)
method SetSceneItemBlendMode (line 1949) | public void SetSceneItemBlendMode(string sceneName, int sceneItemId, s...
method GetGroupList (line 1966) | public List<string> GetGroupList()
method RemoveScene (line 1976) | public void RemoveScene(string sceneName)
method SetSceneName (line 1991) | public void SetSceneName(string sceneName, string newSceneName)
method GetSourceScreenshot (line 2014) | public string GetSourceScreenshot(string sourceName, string imageForma...
method GetTransitionKindList (line 2044) | public List<string> GetTransitionKindList()
method GetCurrentSceneTransitionCursor (line 2055) | public double GetCurrentSceneTransitionCursor()
method OpenInputPropertiesDialog (line 2065) | public void OpenInputPropertiesDialog(string inputName)
method OpenInputFiltersDialog (line 2079) | public void OpenInputFiltersDialog(string inputName)
method OpenInputInteractDialog (line 2093) | public void OpenInputInteractDialog(string inputName)
method GetMonitorList (line 2107) | public List<Monitor> GetMonitorList()
method OpenSourceProjector (line 2126) | public void OpenSourceProjector(string sourceName, string projectorGeo...
method OpenVideoMixProjector (line 2145) | public void OpenVideoMixProjector(string videoMixType, string projecto...
FILE: obs-websocket-dotnet/Types/Events/CurrentPreviewSceneChangedEventArgs.cs
class CurrentPreviewSceneChangedEventArgs (line 8) | public class CurrentPreviewSceneChangedEventArgs : EventArgs
method CurrentPreviewSceneChangedEventArgs (line 19) | public CurrentPreviewSceneChangedEventArgs(string sceneName)
FILE: obs-websocket-dotnet/Types/Events/CurrentProfileChangedEventArgs.cs
class CurrentProfileChangedEventArgs (line 8) | public class CurrentProfileChangedEventArgs : EventArgs
method CurrentProfileChangedEventArgs (line 19) | public CurrentProfileChangedEventArgs(string profileName)
FILE: obs-websocket-dotnet/Types/Events/CurrentProfileChangingEventArgs.cs
class CurrentProfileChangingEventArgs (line 8) | public class CurrentProfileChangingEventArgs : EventArgs
method CurrentProfileChangingEventArgs (line 19) | public CurrentProfileChangingEventArgs(string profileName)
FILE: obs-websocket-dotnet/Types/Events/CurrentSceneCollectionChangedEventArgs.cs
class CurrentSceneCollectionChangedEventArgs (line 8) | public class CurrentSceneCollectionChangedEventArgs : EventArgs
method CurrentSceneCollectionChangedEventArgs (line 19) | public CurrentSceneCollectionChangedEventArgs(string sceneCollectionName)
FILE: obs-websocket-dotnet/Types/Events/CurrentSceneCollectionChangingEventArgs.cs
class CurrentSceneCollectionChangingEventArgs (line 8) | public class CurrentSceneCollectionChangingEventArgs : EventArgs
method CurrentSceneCollectionChangingEventArgs (line 19) | public CurrentSceneCollectionChangingEventArgs(string sceneCollectionN...
FILE: obs-websocket-dotnet/Types/Events/CurrentSceneTransitionChangedEventArgs.cs
class CurrentSceneTransitionChangedEventArgs (line 8) | public class CurrentSceneTransitionChangedEventArgs : EventArgs
method CurrentSceneTransitionChangedEventArgs (line 19) | public CurrentSceneTransitionChangedEventArgs(string transitionName)
FILE: obs-websocket-dotnet/Types/Events/CurrentSceneTransitionDurationChangedEventArgs.cs
class CurrentSceneTransitionDurationChangedEventArgs (line 8) | public class CurrentSceneTransitionDurationChangedEventArgs : EventArgs
method CurrentSceneTransitionDurationChangedEventArgs (line 19) | public CurrentSceneTransitionDurationChangedEventArgs(int transitionDu...
FILE: obs-websocket-dotnet/Types/Events/InputActiveStateChangedEventArgs.cs
class InputActiveStateChangedEventArgs (line 8) | public class InputActiveStateChangedEventArgs : EventArgs
method InputActiveStateChangedEventArgs (line 25) | public InputActiveStateChangedEventArgs(string inputName, bool videoAc...
FILE: obs-websocket-dotnet/Types/Events/InputAudioBalanceChangedEventArgs.cs
class InputAudioBalanceChangedEventArgs (line 8) | public class InputAudioBalanceChangedEventArgs : EventArgs
method InputAudioBalanceChangedEventArgs (line 25) | public InputAudioBalanceChangedEventArgs(string inputName, double inpu...
FILE: obs-websocket-dotnet/Types/Events/InputAudioMonitorTypeChangedEventArgs.cs
class InputAudioMonitorTypeChangedEventArgs (line 12) | public class InputAudioMonitorTypeChangedEventArgs : EventArgs
method InputAudioMonitorTypeChangedEventArgs (line 29) | public InputAudioMonitorTypeChangedEventArgs(string inputName, string ...
FILE: obs-websocket-dotnet/Types/Events/InputAudioSyncOffsetChangedEventArgs.cs
class InputAudioSyncOffsetChangedEventArgs (line 8) | public class InputAudioSyncOffsetChangedEventArgs : EventArgs
method InputAudioSyncOffsetChangedEventArgs (line 25) | public InputAudioSyncOffsetChangedEventArgs(string inputName, int inpu...
FILE: obs-websocket-dotnet/Types/Events/InputAudioTracksChangedEventArgs.cs
class InputAudioTracksChangedEventArgs (line 9) | public class InputAudioTracksChangedEventArgs : EventArgs
method InputAudioTracksChangedEventArgs (line 26) | public InputAudioTracksChangedEventArgs(string inputName, JObject inpu...
FILE: obs-websocket-dotnet/Types/Events/InputCreatedEventArgs.cs
class InputCreatedEventArgs (line 10) | public class InputCreatedEventArgs : EventArgs
method InputCreatedEventArgs (line 45) | public InputCreatedEventArgs(string inputName, string inputKind, strin...
FILE: obs-websocket-dotnet/Types/Events/InputMuteStateChangedEventArgs.cs
class InputMuteStateChangedEventArgs (line 8) | public class InputMuteStateChangedEventArgs : EventArgs
method InputMuteStateChangedEventArgs (line 25) | public InputMuteStateChangedEventArgs(string inputName, bool inputMuted)
FILE: obs-websocket-dotnet/Types/Events/InputNameChangedEventArgs.cs
class InputNameChangedEventArgs (line 8) | public class InputNameChangedEventArgs : EventArgs
method InputNameChangedEventArgs (line 25) | public InputNameChangedEventArgs(string oldInputName, string inputName)
FILE: obs-websocket-dotnet/Types/Events/InputRemovedEventArgs.cs
class InputRemovedEventArgs (line 8) | public class InputRemovedEventArgs : EventArgs
method InputRemovedEventArgs (line 19) | public InputRemovedEventArgs(string inputName)
FILE: obs-websocket-dotnet/Types/Events/InputShowStateChangedEventArgs.cs
class InputShowStateChangedEventArgs (line 8) | public class InputShowStateChangedEventArgs : EventArgs
method InputShowStateChangedEventArgs (line 25) | public InputShowStateChangedEventArgs(string inputName, bool videoShow...
FILE: obs-websocket-dotnet/Types/Events/InputVolumeChangedEventArgs.cs
class InputVolumeChangedEventArgs (line 8) | public class InputVolumeChangedEventArgs : EventArgs
method InputVolumeChangedEventArgs (line 19) | public InputVolumeChangedEventArgs(InputVolume volume)
FILE: obs-websocket-dotnet/Types/Events/InputVolumeMetersEventArgs.cs
class InputVolumeMetersEventArgs (line 10) | public class InputVolumeMetersEventArgs : EventArgs
method InputVolumeMetersEventArgs (line 21) | public InputVolumeMetersEventArgs(List<JObject> inputs)
FILE: obs-websocket-dotnet/Types/Events/MediaInputActionTriggeredEventArgs.cs
class MediaInputActionTriggeredEventArgs (line 8) | public class MediaInputActionTriggeredEventArgs : EventArgs
method MediaInputActionTriggeredEventArgs (line 25) | public MediaInputActionTriggeredEventArgs(string inputName, string med...
FILE: obs-websocket-dotnet/Types/Events/MediaInputPlaybackEndedEventArgs.cs
class MediaInputPlaybackEndedEventArgs (line 8) | public class MediaInputPlaybackEndedEventArgs : EventArgs
method MediaInputPlaybackEndedEventArgs (line 19) | public MediaInputPlaybackEndedEventArgs(string inputName)
FILE: obs-websocket-dotnet/Types/Events/MediaInputPlaybackStartedEventArgs.cs
class MediaInputPlaybackStartedEventArgs (line 8) | public class MediaInputPlaybackStartedEventArgs : EventArgs
method MediaInputPlaybackStartedEventArgs (line 19) | public MediaInputPlaybackStartedEventArgs(string inputName)
FILE: obs-websocket-dotnet/Types/Events/ProfileListChangedEventArgs.cs
class ProfileListChangedEventArgs (line 9) | public class ProfileListChangedEventArgs : EventArgs
method ProfileListChangedEventArgs (line 20) | public ProfileListChangedEventArgs(List<string> profiles)
FILE: obs-websocket-dotnet/Types/Events/ProgramSceneChangedEventArgs.cs
class ProgramSceneChangedEventArgs (line 8) | public class ProgramSceneChangedEventArgs : EventArgs
method ProgramSceneChangedEventArgs (line 19) | public ProgramSceneChangedEventArgs(string sceneName)
FILE: obs-websocket-dotnet/Types/Events/RecordStateChangedEventArgs.cs
class RecordStateChangedEventArgs (line 8) | public class RecordStateChangedEventArgs : EventArgs
method RecordStateChangedEventArgs (line 19) | public RecordStateChangedEventArgs(RecordStateChanged outputState)
FILE: obs-websocket-dotnet/Types/Events/ReplayBufferSavedEventArgs.cs
class ReplayBufferSavedEventArgs (line 8) | public class ReplayBufferSavedEventArgs : EventArgs
method ReplayBufferSavedEventArgs (line 19) | public ReplayBufferSavedEventArgs(string savedReplayPath)
FILE: obs-websocket-dotnet/Types/Events/ReplayBufferStateChangedEventArgs.cs
class ReplayBufferStateChangedEventArgs (line 8) | public class ReplayBufferStateChangedEventArgs : EventArgs
method ReplayBufferStateChangedEventArgs (line 19) | public ReplayBufferStateChangedEventArgs(OutputStateChanged outputState)
FILE: obs-websocket-dotnet/Types/Events/SceneCollectionListChangedEventArgs.cs
class SceneCollectionListChangedEventArgs (line 9) | public class SceneCollectionListChangedEventArgs : EventArgs
method SceneCollectionListChangedEventArgs (line 20) | public SceneCollectionListChangedEventArgs(List<string> sceneCollections)
FILE: obs-websocket-dotnet/Types/Events/SceneCreatedEventArgs.cs
class SceneCreatedEventArgs (line 8) | public class SceneCreatedEventArgs : EventArgs
method SceneCreatedEventArgs (line 25) | public SceneCreatedEventArgs(string sceneName, bool isGroup)
FILE: obs-websocket-dotnet/Types/Events/SceneItemCreatedEventArgs.cs
class SceneItemCreatedEventArgs (line 8) | public class SceneItemCreatedEventArgs : EventArgs
method SceneItemCreatedEventArgs (line 37) | public SceneItemCreatedEventArgs(string sceneName, string sourceName, ...
FILE: obs-websocket-dotnet/Types/Events/SceneItemEnableStateChangedEventArgs.cs
class SceneItemEnableStateChangedEventArgs (line 8) | public class SceneItemEnableStateChangedEventArgs : EventArgs
method SceneItemEnableStateChangedEventArgs (line 31) | public SceneItemEnableStateChangedEventArgs(string sceneName, int scen...
FILE: obs-websocket-dotnet/Types/Events/SceneItemListReindexedEventArgs.cs
class SceneItemListReindexedEventArgs (line 10) | public class SceneItemListReindexedEventArgs : EventArgs
method SceneItemListReindexedEventArgs (line 27) | public SceneItemListReindexedEventArgs(string sceneName, List<JObject>...
FILE: obs-websocket-dotnet/Types/Events/SceneItemLockStateChangedEventArgs.cs
class SceneItemLockStateChangedEventArgs (line 8) | public class SceneItemLockStateChangedEventArgs : EventArgs
method SceneItemLockStateChangedEventArgs (line 31) | public SceneItemLockStateChangedEventArgs(string sceneName, int sceneI...
FILE: obs-websocket-dotnet/Types/Events/SceneItemRemovedEventArgs.cs
class SceneItemRemovedEventArgs (line 8) | public class SceneItemRemovedEventArgs : EventArgs
method SceneItemRemovedEventArgs (line 31) | public SceneItemRemovedEventArgs(string sceneName, string sourceName, ...
FILE: obs-websocket-dotnet/Types/Events/SceneItemSelectedEventArgs.cs
class SceneItemSelectedEventArgs (line 8) | public class SceneItemSelectedEventArgs : EventArgs
method SceneItemSelectedEventArgs (line 25) | public SceneItemSelectedEventArgs(string sceneName, string sceneItemId)
FILE: obs-websocket-dotnet/Types/Events/SceneItemTransformEventArgs.cs
class SceneItemTransformEventArgs (line 8) | public class SceneItemTransformEventArgs : EventArgs
method SceneItemTransformEventArgs (line 31) | public SceneItemTransformEventArgs(string sceneName, string sceneItemI...
FILE: obs-websocket-dotnet/Types/Events/SceneListChangedEventArgs.cs
class SceneListChangedEventArgs (line 10) | public class SceneListChangedEventArgs : EventArgs
method SceneListChangedEventArgs (line 21) | public SceneListChangedEventArgs(List<JObject> scenes)
FILE: obs-websocket-dotnet/Types/Events/SceneNameChangedEventArgs.cs
class SceneNameChangedEventArgs (line 8) | public class SceneNameChangedEventArgs : EventArgs
method SceneNameChangedEventArgs (line 25) | public SceneNameChangedEventArgs(string oldSceneName, string sceneName)
FILE: obs-websocket-dotnet/Types/Events/SceneRemovedEventArgs.cs
class SceneRemovedEventArgs (line 8) | public class SceneRemovedEventArgs : EventArgs
method SceneRemovedEventArgs (line 25) | public SceneRemovedEventArgs(string sceneName, bool isGroup)
FILE: obs-websocket-dotnet/Types/Events/SceneTransitionEndedEventArgs.cs
class SceneTransitionEndedEventArgs (line 8) | public class SceneTransitionEndedEventArgs : EventArgs
method SceneTransitionEndedEventArgs (line 19) | public SceneTransitionEndedEventArgs(string transitionName)
FILE: obs-websocket-dotnet/Types/Events/SceneTransitionStartedEventArgs.cs
class SceneTransitionStartedEventArgs (line 8) | public class SceneTransitionStartedEventArgs : EventArgs
method SceneTransitionStartedEventArgs (line 19) | public SceneTransitionStartedEventArgs(string transitionName)
FILE: obs-websocket-dotnet/Types/Events/SceneTransitionVideoEndedEventArgs.cs
class SceneTransitionVideoEndedEventArgs (line 8) | public class SceneTransitionVideoEndedEventArgs : EventArgs
method SceneTransitionVideoEndedEventArgs (line 19) | public SceneTransitionVideoEndedEventArgs(string transitionName)
FILE: obs-websocket-dotnet/Types/Events/SourceFilterCreatedEventArgs.cs
class SourceFilterCreatedEventArgs (line 10) | public class SourceFilterCreatedEventArgs : EventArgs
method SourceFilterCreatedEventArgs (line 51) | public SourceFilterCreatedEventArgs(string sourceName, string filterNa...
FILE: obs-websocket-dotnet/Types/Events/SourceFilterEnableStateChangedEventArgs.cs
class SourceFilterEnableStateChangedEventArgs (line 8) | public class SourceFilterEnableStateChangedEventArgs : EventArgs
method SourceFilterEnableStateChangedEventArgs (line 31) | public SourceFilterEnableStateChangedEventArgs(string sourceName, stri...
FILE: obs-websocket-dotnet/Types/Events/SourceFilterListReindexedEventArgs.cs
class SourceFilterListReindexedEventArgs (line 9) | public class SourceFilterListReindexedEventArgs : EventArgs
method SourceFilterListReindexedEventArgs (line 26) | public SourceFilterListReindexedEventArgs(string sourceName, List<Filt...
FILE: obs-websocket-dotnet/Types/Events/SourceFilterNameChangedEventArgs.cs
class SourceFilterNameChangedEventArgs (line 8) | public class SourceFilterNameChangedEventArgs : EventArgs
method SourceFilterNameChangedEventArgs (line 31) | public SourceFilterNameChangedEventArgs(string sourceName, string oldF...
FILE: obs-websocket-dotnet/Types/Events/SourceFilterRemovedEventArgs.cs
class SourceFilterRemovedEventArgs (line 8) | public class SourceFilterRemovedEventArgs : EventArgs
method SourceFilterRemovedEventArgs (line 25) | public SourceFilterRemovedEventArgs(string sourceName, string filterName)
FILE: obs-websocket-dotnet/Types/Events/StreamStateChangedEventArgs.cs
class StreamStateChangedEventArgs (line 8) | public class StreamStateChangedEventArgs : EventArgs
method StreamStateChangedEventArgs (line 19) | public StreamStateChangedEventArgs(OutputStateChanged outputState)
FILE: obs-websocket-dotnet/Types/Events/StudioModeStateChangedEventArgs.cs
class StudioModeStateChangedEventArgs (line 8) | public class StudioModeStateChangedEventArgs : EventArgs
method StudioModeStateChangedEventArgs (line 19) | public StudioModeStateChangedEventArgs(bool studioModeEnabled)
FILE: obs-websocket-dotnet/Types/Events/UnsupportedEventArgs.cs
class UnsupportedEventArgs (line 9) | public class UnsupportedEventArgs : EventArgs
method UnsupportedEventArgs (line 23) | public UnsupportedEventArgs(string eventType, JObject body)
FILE: obs-websocket-dotnet/Types/Events/VendorEventArgs.cs
class VendorEventArgs (line 9) | public class VendorEventArgs : EventArgs
method VendorEventArgs (line 32) | public VendorEventArgs(string vendorName, string eventType, JObject ev...
FILE: obs-websocket-dotnet/Types/Events/VirtualcamStateChangedEventArgs.cs
class VirtualcamStateChangedEventArgs (line 8) | public class VirtualcamStateChangedEventArgs : EventArgs
method VirtualcamStateChangedEventArgs (line 19) | public VirtualcamStateChangedEventArgs(OutputStateChanged outputState)
FILE: obs-websocket-dotnet/Types/FilterReorderItem.cs
class FilterReorderItem (line 8) | public class FilterReorderItem
FILE: obs-websocket-dotnet/Types/FilterSettings.cs
class FilterSettings (line 9) | public class FilterSettings
FILE: obs-websocket-dotnet/Types/GetProfileListInfo.cs
class GetProfileListInfo (line 9) | public class GetProfileListInfo
FILE: obs-websocket-dotnet/Types/GetSceneListInfo.cs
class GetSceneListInfo (line 9) | public class GetSceneListInfo
FILE: obs-websocket-dotnet/Types/GetTransitionListInfo.cs
class GetTransitionListInfo (line 9) | public class GetTransitionListInfo
FILE: obs-websocket-dotnet/Types/Input.cs
class Input (line 9) | public abstract class Input
method Input (line 27) | public Input(JObject body)
method Input (line 35) | public Input() { }
FILE: obs-websocket-dotnet/Types/InputBasicInfo.cs
class InputBasicInfo (line 12) | public class InputBasicInfo : Input
method InputBasicInfo (line 24) | public InputBasicInfo(JObject body) : base(body)
method InputBasicInfo (line 32) | public InputBasicInfo() { }
FILE: obs-websocket-dotnet/Types/InputBrowserSourceSettings.cs
class InputBrowserSourceSettings (line 13) | public class InputBrowserSourceSettings : Input
method FromInputSettings (line 96) | public static InputBrowserSourceSettings FromInputSettings(InputSettin...
method InputBrowserSourceSettings (line 101) | private InputBrowserSourceSettings(InputSettings settings) : base(JObj...
FILE: obs-websocket-dotnet/Types/InputFFMpegSettings.cs
class InputFFMpegSettings (line 13) | public class InputFFMpegSettings : Input
method FromInputSettings (line 95) | public static InputFFMpegSettings FromInputSettings(InputSettings sett...
method InputFFMpegSettings (line 100) | private InputFFMpegSettings(InputSettings settings) : base(JObject.Fro...
FILE: obs-websocket-dotnet/Types/InputSettings.cs
class InputSettings (line 9) | public class InputSettings : Input
method InputSettings (line 21) | public InputSettings(JObject data) : base(data)
method InputSettings (line 29) | public InputSettings() { }
FILE: obs-websocket-dotnet/Types/InputVolume.cs
class InputVolume (line 9) | public class InputVolume
method InputVolume (line 31) | public InputVolume(JObject data)
method InputVolume (line 39) | public InputVolume() { }
FILE: obs-websocket-dotnet/Types/KeyModifier.cs
type KeyModifier (line 8) | [Flags]
FILE: obs-websocket-dotnet/Types/MediaInputStatus.cs
class MediaInputStatus (line 10) | public class MediaInputStatus
method MediaInputStatus (line 50) | public MediaInputStatus(JObject body)
method MediaInputStatus (line 58) | public MediaInputStatus() { }
type MediaState (line 64) | public enum MediaState
FILE: obs-websocket-dotnet/Types/Monitor.cs
class Monitor (line 9) | public class Monitor
method Monitor (line 51) | public Monitor (JObject data)
method Monitor (line 59) | public Monitor() { }
FILE: obs-websocket-dotnet/Types/OBSHotkey.cs
type OBSHotkey (line 6) | public enum OBSHotkey
FILE: obs-websocket-dotnet/Types/OBSScene.cs
class ObsScene (line 10) | public class ObsScene
method ObsScene (line 34) | public ObsScene(JObject data)
method ObsScene (line 52) | public ObsScene() { }
FILE: obs-websocket-dotnet/Types/OBSStats.cs
class ObsStats (line 8) | public class ObsStats
FILE: obs-websocket-dotnet/Types/OBSVersion.cs
class ObsVersion (line 10) | public class ObsVersion
method ObsVersion (line 58) | public ObsVersion(JObject data)
method ObsVersion (line 66) | public ObsVersion() { }
FILE: obs-websocket-dotnet/Types/OBSVideoSettings.cs
class ObsVideoSettings (line 8) | public class ObsVideoSettings
FILE: obs-websocket-dotnet/Types/OutputState.cs
type OutputState (line 6) | public enum OutputState
FILE: obs-websocket-dotnet/Types/OutputStateChanged.cs
class OutputStateChanged (line 10) | public class OutputStateChanged
method OutputStateChanged (line 50) | public OutputStateChanged(JObject body)
method OutputStateChanged (line 58) | public OutputStateChanged() { }
FILE: obs-websocket-dotnet/Types/OutputStatus.cs
class OutputStatus (line 9) | public class OutputStatus
method OutputStatus (line 63) | public OutputStatus(JObject data)
method OutputStatus (line 71) | public OutputStatus() { }
FILE: obs-websocket-dotnet/Types/RecordStateChanged.cs
class RecordStateChanged (line 12) | public class RecordStateChanged : OutputStateChanged
method RecordStateChanged (line 24) | public RecordStateChanged(JObject body) :base(body)
method RecordStateChanged (line 32) | public RecordStateChanged() { }
FILE: obs-websocket-dotnet/Types/RecordingStatus.cs
class RecordingStatus (line 9) | public class RecordingStatus
method RecordingStatus (line 45) | public RecordingStatus(JObject data)
method RecordingStatus (line 53) | public RecordingStatus() { }
FILE: obs-websocket-dotnet/Types/SceneBasicInfo.cs
class SceneBasicInfo (line 11) | public class SceneBasicInfo
FILE: obs-websocket-dotnet/Types/SceneItemBoundsType.cs
type SceneItemBoundsType (line 6) | public enum SceneItemBoundsType
FILE: obs-websocket-dotnet/Types/SceneItemDetails.cs
class SceneItemDetails (line 12) | public class SceneItemDetails
method SceneItemDetails (line 43) | public SceneItemDetails(JObject data)
method SceneItemDetails (line 54) | public SceneItemDetails() { }
FILE: obs-websocket-dotnet/Types/SceneItemSourceType.cs
type SceneItemSourceType (line 6) | public enum SceneItemSourceType
FILE: obs-websocket-dotnet/Types/SceneItemTransformInfo.cs
class SceneItemTransformInfo (line 10) | public class SceneItemTransformInfo
method SceneItemTransformInfo (line 125) | public SceneItemTransformInfo(JObject body)
method SceneItemTransformInfo (line 133) | public SceneItemTransformInfo() { }
FILE: obs-websocket-dotnet/Types/SourceActiveInfo.cs
class SourceActiveInfo (line 9) | public class SourceActiveInfo
method SourceActiveInfo (line 27) | public SourceActiveInfo(JObject data)
method SourceActiveInfo (line 35) | public SourceActiveInfo() { }
FILE: obs-websocket-dotnet/Types/SourceTracks.cs
class SourceTracks (line 9) | public class SourceTracks
method SourceTracks (line 51) | public SourceTracks(JObject data)
method SourceTracks (line 59) | public SourceTracks() { }
FILE: obs-websocket-dotnet/Types/StreamingService.cs
class StreamingService (line 8) | public class StreamingService
FILE: obs-websocket-dotnet/Types/StreamingServiceSettings.cs
class StreamingServiceSettings (line 10) | public class StreamingServiceSettings
FILE: obs-websocket-dotnet/Types/TransitionOverrideInfo.cs
class TransitionOverrideInfo (line 8) | public class TransitionOverrideInfo
FILE: obs-websocket-dotnet/Types/TransitionSettings.cs
class TransitionSettings (line 9) | public class TransitionSettings
method TransitionSettings (line 51) | public TransitionSettings(JObject data)
method TransitionSettings (line 59) | public TransitionSettings() { }
FILE: obs-websocket-dotnet/Types/VirtualCamStatus.cs
class VirtualCamStatus (line 9) | public class VirtualCamStatus
method VirtualCamStatus (line 21) | public VirtualCamStatus(JObject data)
method VirtualCamStatus (line 29) | public VirtualCamStatus()
FILE: obs-websocket-dotnet/Types/VolumeInfo.cs
class VolumeInfo (line 9) | public class VolumeInfo
method VolumeInfo (line 27) | public VolumeInfo(JObject data)
method VolumeInfo (line 35) | public VolumeInfo() { }
Condensed preview — 131 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (876K chars).
[
{
"path": ".gitattributes",
"chars": 2518,
"preview": "###############################################################################\n# Set default behavior to automatically "
},
{
"path": ".github/FUNDING.yml",
"chars": 112,
"preview": "# These are supported funding model platforms\n\ngithub: BarRaider\npatreon: BarRaider\ncustom: paypal.me/BarRaider\n"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 737,
"preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: \"[BUG]\"\nlabels: ''\nassignees: ''\n\n---\n\n**Issue Typ"
},
{
"path": ".github/ISSUE_TEMPLATE/feedback-or-support-request.md",
"chars": 765,
"preview": "---\nname: Feedback or Support request\nabout: Anything that ISN'T a bug\ntitle: \"[ISSUE]\"\nlabels: ''\nassignees: ''\n\n---\n\n*"
},
{
"path": ".github/workflows/dotnet-core-desktop.yml",
"chars": 3751,
"preview": "# This workflow uses actions that are not certified by GitHub.\n# They are provided by a third-party and are governed by\n"
},
{
"path": ".gitignore",
"chars": 6056,
"preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## G"
},
{
"path": "LICENSE",
"chars": 1066,
"preview": "MIT License\n\nCopyright (c) 2021 BarRaider\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\n"
},
{
"path": "README.md",
"chars": 1174,
"preview": "# obs-websocket-dotnet\n 2007 Free "
},
{
"path": "TestClient/MainWindow.Designer.cs",
"chars": 119889,
"preview": "/*\n TestClient for obs-websocket-dotnet\n Copyright (C) 2021\tStéphane Lepin, BarRaider\n\n This program is free s"
},
{
"path": "TestClient/MainWindow.cs",
"chars": 22655,
"preview": "/*\n TestClient for obs-websocket-dotnet\n Copyright (C) 2021\tStéphane Lepin, BarRaider\n\n This program is free s"
},
{
"path": "TestClient/MainWindow.resx",
"chars": 3534,
"preview": "<root>\n <xsd:schema id=\"root\" xmlns=\"\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:msdata=\"urn:schemas-microsof"
},
{
"path": "TestClient/Program.cs",
"chars": 1376,
"preview": "/*\n TestClient for obs-websocket-dotnet\n Copyright (C) 2021\tStéphane Lepin, BarRaider\n\n This program is free s"
},
{
"path": "TestClient/Properties/Resources.Designer.cs",
"chars": 2784,
"preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n// This code w"
},
{
"path": "TestClient/Properties/Resources.resx",
"chars": 5494,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n <!-- \n Microsoft ResX Schema \n \n Version 2.0\n \n The prim"
},
{
"path": "TestClient/Properties/Settings.Designer.cs",
"chars": 1065,
"preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n// This code w"
},
{
"path": "TestClient/Properties/Settings.settings",
"chars": 240,
"preview": "<?xml version='1.0' encoding='utf-8'?>\n<SettingsFile xmlns=\"http://schemas.microsoft.com/VisualStudio/2004/01/settings\""
},
{
"path": "TestClient/TestClient.csproj",
"chars": 459,
"preview": "<Project Sdk=\"Microsoft.NET.Sdk.WindowsDesktop\">\n\n\t<PropertyGroup>\n\t\t<OutputType>WinExe</OutputType>\n\t\t<TargetFramework"
},
{
"path": "TestClient/packages.config",
"chars": 138,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n <package id=\"Newtonsoft.Json\" version=\"12.0.3\" targetFramework=\"net"
},
{
"path": "obs-websocket-dotnet/Communication/MessageFactory.cs",
"chars": 1238,
"preview": "using Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\nnamespace OBSWebsocketD"
},
{
"path": "obs-websocket-dotnet/Communication/MessageTypes.cs",
"chars": 376,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Text;\n\nnamespace OBSWebsocketDotNet.Communication\n{\n in"
},
{
"path": "obs-websocket-dotnet/Communication/OBSAuthInfo.cs",
"chars": 995,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Communication\n{\n /// <summary>\n "
},
{
"path": "obs-websocket-dotnet/Communication/ObsCloseCodes.cs",
"chars": 2228,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Text;\n\nnamespace OBSWebsocketDotNet.Communication\n{\n //"
},
{
"path": "obs-websocket-dotnet/Communication/ObsDisconnectionInfo.cs",
"chars": 1499,
"preview": "using System;\nusing System.Collections.Generic;\nusing System.Text;\nusing Websocket.Client;\nnamespace OBSWebsocketDotNet"
},
{
"path": "obs-websocket-dotnet/Communication/ServerMessage.cs",
"chars": 567,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Communication\n{\n /// <summary>\n "
},
{
"path": "obs-websocket-dotnet/Events.cs",
"chars": 24817,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet.Communication;\nusing OBSWebsocketDotNet.Typ"
},
{
"path": "obs-websocket-dotnet/Exceptions.cs",
"chars": 795,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet\n{\n /// <summary>\n /// Thrown if authentication fails\n /// </summar"
},
{
"path": "obs-websocket-dotnet/IOBSWebsocket.cs",
"chars": 63173,
"preview": "using System;\nusing System.Collections.Generic;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet.Communication;\nusi"
},
{
"path": "obs-websocket-dotnet/LICENSE.md",
"chars": 1077,
"preview": "\nThe MIT License (MIT)\n\nCopyright (c) 2021 BarRaider\n\nPermission is hereby granted, free of charge, to any person obtain"
},
{
"path": "obs-websocket-dotnet/OBSWebsocket.cs",
"chars": 14466,
"preview": "using System;\nusing System.Collections.Concurrent;\nusing System.Net.WebSockets;\nusing System.Security.Cryptography;\nusin"
},
{
"path": "obs-websocket-dotnet/OBSWebsocket_Requests.cs",
"chars": 87050,
"preview": "using Microsoft.Extensions.Logging;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet.Types;\n"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentPreviewSceneChangedEventArgs.cs",
"chars": 650,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentProfileChangedEventArgs.cs",
"chars": 632,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentProfileChangingEventArgs.cs",
"chars": 639,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentSceneCollectionChangedEventArgs.cs",
"chars": 715,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentSceneCollectionChangingEventArgs.cs",
"chars": 721,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentSceneTransitionChangedEventArgs.cs",
"chars": 677,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/CurrentSceneTransitionDurationChangedEventArgs.cs",
"chars": 728,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputActiveStateChangedEventArgs.cs",
"chars": 878,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputAudioBalanceChangedEventArgs.cs",
"chars": 941,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputAudioMonitorTypeChangedEventArgs.cs",
"chars": 1058,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputAudioSyncOffsetChangedEventArgs.cs",
"chars": 945,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputAudioTracksChangedEventArgs.cs",
"chars": 986,
"preview": "using System;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event "
},
{
"path": "obs-websocket-dotnet/Types/Events/InputCreatedEventArgs.cs",
"chars": 1879,
"preview": "using System;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n //"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputMuteStateChangedEventArgs.cs",
"chars": 865,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputNameChangedEventArgs.cs",
"chars": 867,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputRemovedEventArgs.cs",
"chars": 587,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputShowStateChangedEventArgs.cs",
"chars": 879,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputVolumeChangedEventArgs.cs",
"chars": 620,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/InputVolumeMetersEventArgs.cs",
"chars": 724,
"preview": "using System;\nusing System.Collections.Generic;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n"
},
{
"path": "obs-websocket-dotnet/Types/Events/MediaInputActionTriggeredEventArgs.cs",
"chars": 925,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/MediaInputPlaybackEndedEventArgs.cs",
"chars": 620,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/MediaInputPlaybackStartedEventArgs.cs",
"chars": 626,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/ProfileListChangedEventArgs.cs",
"chars": 683,
"preview": "using System;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// "
},
{
"path": "obs-websocket-dotnet/Types/Events/ProgramSceneChangedEventArgs.cs",
"chars": 616,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/RecordStateChangedEventArgs.cs",
"chars": 668,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/ReplayBufferSavedEventArgs.cs",
"chars": 651,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/ReplayBufferStateChangedEventArgs.cs",
"chars": 686,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneCollectionListChangedEventArgs.cs",
"chars": 758,
"preview": "using System;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// "
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneCreatedEventArgs.cs",
"chars": 840,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemCreatedEventArgs.cs",
"chars": 1397,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemEnableStateChangedEventArgs.cs",
"chars": 1207,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebsoc"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemListReindexedEventArgs.cs",
"chars": 1005,
"preview": "using System;\nusing System.Collections.Generic;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemLockStateChangedEventArgs.cs",
"chars": 1194,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebsoc"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemRemovedEventArgs.cs",
"chars": 1140,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebsoc"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemSelectedEventArgs.cs",
"chars": 874,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneItemTransformEventArgs.cs",
"chars": 1156,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneListChangedEventArgs.cs",
"chars": 687,
"preview": "using System;\nusing System.Collections.Generic;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneNameChangedEventArgs.cs",
"chars": 872,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneRemovedEventArgs.cs",
"chars": 849,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneTransitionEndedEventArgs.cs",
"chars": 645,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneTransitionStartedEventArgs.cs",
"chars": 645,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SceneTransitionVideoEndedEventArgs.cs",
"chars": 649,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Called by <see cref=\"OBSWebsocket."
},
{
"path": "obs-websocket-dotnet/Types/Events/SourceFilterCreatedEventArgs.cs",
"chars": 2112,
"preview": "using System;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n //"
},
{
"path": "obs-websocket-dotnet/Types/Events/SourceFilterEnableStateChangedEventArgs.cs",
"chars": 1192,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SourceFilterListReindexedEventArgs.cs",
"chars": 941,
"preview": "using System;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// "
},
{
"path": "obs-websocket-dotnet/Types/Events/SourceFilterNameChangedEventArgs.cs",
"chars": 1164,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/SourceFilterRemovedEventArgs.cs",
"chars": 897,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/StreamStateChangedEventArgs.cs",
"chars": 661,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/StudioModeStateChangedEventArgs.cs",
"chars": 666,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/Events/UnsupportedEventArgs.cs",
"chars": 707,
"preview": "using System;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event "
},
{
"path": "obs-websocket-dotnet/Types/Events/VendorEventArgs.cs",
"chars": 1187,
"preview": "using System;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event "
},
{
"path": "obs-websocket-dotnet/Types/Events/VirtualcamStateChangedEventArgs.cs",
"chars": 673,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types.Events\n{\n /// <summary>\n /// Event args for <see cref=\"OBSWebso"
},
{
"path": "obs-websocket-dotnet/Types/FilterReorderItem.cs",
"chars": 491,
"preview": "using Newtonsoft.Json;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Filter list item\n /// </summa"
},
{
"path": "obs-websocket-dotnet/Types/FilterSettings.cs",
"chars": 1115,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Filt"
},
{
"path": "obs-websocket-dotnet/Types/GetProfileListInfo.cs",
"chars": 635,
"preview": "using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n //"
},
{
"path": "obs-websocket-dotnet/Types/GetSceneListInfo.cs",
"chars": 965,
"preview": "using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n //"
},
{
"path": "obs-websocket-dotnet/Types/GetTransitionListInfo.cs",
"chars": 899,
"preview": "using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n //"
},
{
"path": "obs-websocket-dotnet/Types/Input.cs",
"chars": 937,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Abst"
},
{
"path": "obs-websocket-dotnet/Types/InputBasicInfo.cs",
"chars": 903,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\n"
},
{
"path": "obs-websocket-dotnet/Types/InputBrowserSourceSettings.cs",
"chars": 3687,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\n"
},
{
"path": "obs-websocket-dotnet/Types/InputFFMpegSettings.cs",
"chars": 3465,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\n"
},
{
"path": "obs-websocket-dotnet/Types/InputSettings.cs",
"chars": 851,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Sett"
},
{
"path": "obs-websocket-dotnet/Types/InputVolume.cs",
"chars": 1192,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Sour"
},
{
"path": "obs-websocket-dotnet/Types/KeyModifier.cs",
"chars": 748,
"preview": "using System;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Key Modifiers\n /// </summary>\n [Fla"
},
{
"path": "obs-websocket-dotnet/Types/MediaInputStatus.cs",
"chars": 2593,
"preview": "using System;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary"
},
{
"path": "obs-websocket-dotnet/Types/Monitor.cs",
"chars": 1592,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Info"
},
{
"path": "obs-websocket-dotnet/Types/OBSHotkey.cs",
"chars": 15602,
"preview": "namespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// OBS Hotkeys as defined here: https://github.com/obsproje"
},
{
"path": "obs-websocket-dotnet/Types/OBSScene.cs",
"chars": 1625,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Type"
},
{
"path": "obs-websocket-dotnet/Types/OBSStats.cs",
"chars": 2461,
"preview": "using Newtonsoft.Json;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// OBS Stats\n /// </summary>\n "
},
{
"path": "obs-websocket-dotnet/Types/OBSVersion.cs",
"chars": 2418,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System.Collections.Generic;\n\nnamespace OBSWebsocketDotNet.Type"
},
{
"path": "obs-websocket-dotnet/Types/OBSVideoSettings.cs",
"chars": 1329,
"preview": "using Newtonsoft.Json;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Basic OBS video information\n "
},
{
"path": "obs-websocket-dotnet/Types/OutputState.cs",
"chars": 1084,
"preview": "namespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Describes the state of an output (streaming or recording"
},
{
"path": "obs-websocket-dotnet/Types/OutputStateChanged.cs",
"chars": 1659,
"preview": "using System;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary"
},
{
"path": "obs-websocket-dotnet/Types/OutputStatus.cs",
"chars": 2299,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Stat"
},
{
"path": "obs-websocket-dotnet/Types/RecordStateChanged.cs",
"chars": 923,
"preview": "using Newtonsoft.Json.Linq;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\n"
},
{
"path": "obs-websocket-dotnet/Types/RecordingStatus.cs",
"chars": 1669,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// GetRe"
},
{
"path": "obs-websocket-dotnet/Types/SceneBasicInfo.cs",
"chars": 604,
"preview": "using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\nnamespace OBSWebsocketDotNet"
},
{
"path": "obs-websocket-dotnet/Types/SceneItemBoundsType.cs",
"chars": 869,
"preview": "namespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Types of bounding boxes for scene items\n /// </summar"
},
{
"path": "obs-websocket-dotnet/Types/SceneItemDetails.cs",
"chars": 1579,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Text;\n\n"
},
{
"path": "obs-websocket-dotnet/Types/SceneItemSourceType.cs",
"chars": 551,
"preview": "namespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Type of scene item's source\n /// </summary>\n publi"
},
{
"path": "obs-websocket-dotnet/Types/SceneItemTransformInfo.cs",
"chars": 4185,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Converters;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Type"
},
{
"path": "obs-websocket-dotnet/Types/SourceActiveInfo.cs",
"chars": 1033,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Gets"
},
{
"path": "obs-websocket-dotnet/Types/SourceTracks.cs",
"chars": 1670,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Trac"
},
{
"path": "obs-websocket-dotnet/Types/StreamingService.cs",
"chars": 579,
"preview": "using Newtonsoft.Json;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Streaming settings\n /// </sum"
},
{
"path": "obs-websocket-dotnet/Types/StreamingServiceSettings.cs",
"chars": 1875,
"preview": "using System.Collections.Generic;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Type"
},
{
"path": "obs-websocket-dotnet/Types/TransitionOverrideInfo.cs",
"chars": 670,
"preview": "using Newtonsoft.Json;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Scene transition override settin"
},
{
"path": "obs-websocket-dotnet/Types/TransitionSettings.cs",
"chars": 1944,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Curr"
},
{
"path": "obs-websocket-dotnet/Types/VirtualCamStatus.cs",
"chars": 844,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Virt"
},
{
"path": "obs-websocket-dotnet/Types/VolumeInfo.cs",
"chars": 1048,
"preview": "using Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\n\nnamespace OBSWebsocketDotNet.Types\n{\n /// <summary>\n /// Volu"
},
{
"path": "obs-websocket-dotnet/obs-websocket-dotnet.csproj",
"chars": 1685,
"preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n\t<PropertyGroup>\n\t\t<TargetFramework>netstandard2.1</TargetFramework>\n\t\t<AssemblyName>"
},
{
"path": "obs-websocket-dotnet/obs-websocket-dotnet.xml",
"chars": 257235,
"preview": "<?xml version=\"1.0\"?>\n<doc>\n <assembly>\n <name>obs-websocket-dotnet</name>\n </assembly>\n <members>\n "
},
{
"path": "obs-websocket-dotnet-tests/UnitTest_OBSWebsocket.cs",
"chars": 1340,
"preview": "using Microsoft.VisualStudio.TestTools.UnitTesting;\nusing WebSocketSharp;\n\nnamespace OBSWebsocketDotNet.Tests\n{\n [Te"
},
{
"path": "obs-websocket-dotnet-tests/UnitTest_Types.cs",
"chars": 7142,
"preview": "using Microsoft.VisualStudio.TestTools.UnitTesting;\nusing Newtonsoft.Json.Linq;\nusing OBSWebsocketDotNet.Communication;"
},
{
"path": "obs-websocket-dotnet-tests/obs-websocket-dotnet-tests.csproj",
"chars": 837,
"preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n\t<PropertyGroup>\n\t\t<TargetFramework>net9.0</TargetFramework>\n\t\t<AssemblyName>obs-web"
},
{
"path": "obs-websocket-dotnet-tests/packages.config",
"chars": 141,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n <package id=\"WebSocketSharp\" version=\"1.0.3-rc11\" targetFramework=\""
},
{
"path": "obs-websocket-dotnet.sln",
"chars": 2143,
"preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 16\nVisualStudioVersion = 16.0.3050"
}
]
About this extraction
This page contains the full source code of the BarRaider/obs-websocket-dotnet GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 131 files (819.2 KB), approximately 182.8k tokens, and a symbol index with 623 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.