tinodo
New Member
I am changing settings on a Media Source through Web Sockets.
Once I change the settings on the Media Source, the Media Source starts playing again.
(Not sure whether this is a Web Sockets issue or an OBS Studio Issue.)
Example (C# with obs-websockets-dotnet):
var sourceSettings = client.GetMediaSourceSettings("MyAudioFile");
sourceSettings.Media.Looping = false;
client.SetMediaSourceSettings(sourceSettings);
This is unexpected. The source should not 'restart' after changing it's settings, should it?
Once I change the settings on the Media Source, the Media Source starts playing again.
(Not sure whether this is a Web Sockets issue or an OBS Studio Issue.)
Example (C# with obs-websockets-dotnet):
var sourceSettings = client.GetMediaSourceSettings("MyAudioFile");
sourceSettings.Media.Looping = false;
client.SetMediaSourceSettings(sourceSettings);
This is unexpected. The source should not 'restart' after changing it's settings, should it?