SystemMediaServerParametersGetRequest
Bases: OCIRequest
Request to get the list of Media Server system parameters. The response is either SystemMediaServerParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaServerParametersGetListRequest. Contains a list of system Media Server parameters.
Attributes:
media_server_response_timer_milliseconds (int):
media_server_selection_route_timer_milliseconds (int):
use_static_media_server_device (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import SystemMediaServerParametersGetRequest
client = Client()
command = SystemMediaServerParametersGetRequest()
response = client.command(command)
print(response)