SystemMediaGroupCodecGetListRequest
Bases: OCIRequest
Request to get the list of media under a media group. The response is either SystemMediaGroupCodecGetListResponse or ErrorResponse.
Attributes:
name (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemMediaGroupCodecGetListRequest. Contains a table of media assigned to the media group. The column headings are: "Codec Name", "Codec Weight".
Attributes:
codec_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemMediaGroupCodecGetListRequest
client = Client()
command = SystemMediaGroupCodecGetListRequest(
name=...,
)
response = client.command(command)
print(response)