Commands/Requests/Set-OBSVideoSettings.ps1
function Set-OBSVideoSettings { <# .Synopsis Set-OBSVideoSettings : SetVideoSettings .Description Sets the current video settings. Note: Fields must be specified in pairs. For example, you cannot set only `baseWidth` without needing to specify `baseHeight`. Set-OBSVideoSettings calls the OBS WebSocket with a request of type SetVideoSettings. .Link https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setvideosettings #> [Reflection.AssemblyMetadata('OBS.WebSocket.RequestType', 'SetVideoSettings')] param( <# Numerator of the fractional FPS value #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('fpsNumerator')] [ValidateRange(1,[int]::MaxValue)] [double] $fpsNumerator, <# Denominator of the fractional FPS value #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('fpsDenominator')] [ValidateRange(1,[int]::MaxValue)] [double] $fpsDenominator, <# Width of the base (canvas) resolution in pixels #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('baseWidth')] [ValidateRange(1,4096)] [double] $baseWidth, <# Height of the base (canvas) resolution in pixels #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('baseHeight')] [ValidateRange(1,4096)] [double] $baseHeight, <# Width of the output resolution in pixels #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('outputWidth')] [ValidateRange(1,4096)] [double] $outputWidth, <# Height of the output resolution in pixels #> [Parameter(ValueFromPipelineByPropertyName)] [ComponentModel.DefaultBindingProperty('outputHeight')] [ValidateRange(1,4096)] [double] $outputHeight, # If set, will return the information that would otherwise be sent to OBS. [Parameter(ValueFromPipelineByPropertyName)] [Alias('OutputRequest','OutputInput')] [switch] $PassThru ) process { # Create a copy of the parameters (that are part of the payload) $paramCopy = [Ordered]@{} # get a reference to this command $myCmd = $MyInvocation.MyCommand # Keep track of how many requests we have done of a given type # (this makes creating RequestIDs easy) if (-not $script:ObsRequestsCounts) { $script:ObsRequestsCounts = @{} } # Set my requestType to blank $myRequestType = '' # and indicate we are not expecting a response $responseExpected = $false # Then walk over this commands' attributes, foreach ($attr in $myCmd.ScriptBlock.Attributes) { if ($attr -is [Reflection.AssemblyMetadataAttribute]) { if ($attr.Key -eq 'OBS.WebSocket.RequestType') { $myRequestType = $attr.Value # set the requestType, } elseif ($attr.Key -eq 'OBS.WebSocket.ExpectingResponse') { # and determine if we are expecting a response. $responseExpected = if ($attr.Value -eq 'false') { $false } else { $true } } } } # Walk over each parameter :nextParam foreach ($keyValue in $PSBoundParameters.GetEnumerator()) { # and walk over each of it's attributes to see if it part of the payload foreach ($attr in $myCmd.Parameters[$keyValue.Key].Attributes) { # If the parameter is bound to part of the payload if ($attr -is [ComponentModel.DefaultBindingPropertyAttribute]) { # copy it into our payload dicitionary. $paramCopy[$attr.Name] = $keyValue.Value # (don't forget to turn switches into booleans) if ($paramCopy[$attr.Name] -is [switch]) { $paramCopy[$attr.Name] = [bool]$paramCopy[$attr.Name] } continue nextParam } } } # If we don't have a request counter for this request type if (-not $script:ObsRequestsCounts[$myRequestType]) { # initialize it to zero. $script:ObsRequestsCounts[$myRequestType] = 0 } # Increment the counter for requests of this type $script:ObsRequestsCounts[$myRequestType]++ # and make a request ID from that. $myRequestId = "$myRequestType.$($script:ObsRequestsCounts[$myRequestType])" # Construct the payload object $requestPayload = [Ordered]@{ # It must include a request ID requestId = "$myRequestType.$($script:ObsRequestsCounts[$myRequestType])" # request type requestType = $myRequestType # and optional data requestData = $paramCopy } if ($PassThru) { [PSCustomObject]$requestPayload } else { [PSCustomObject]$requestPayload | Send-OBS } } } |