| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| audio_bitrate |
int |
|
[optional] |
| audio_channels |
float |
|
[optional] |
| audio_codec |
str |
|
[optional] |
| audio_languages |
str |
|
[optional] |
| audio_stream_count |
int |
|
[optional] |
| video_bit_depth |
int |
|
[optional] |
| video_bitrate |
int |
|
[optional] |
| video_codec |
str |
|
[optional] |
| video_fps |
float |
|
[optional] |
| video_dynamic_range |
str |
|
[optional] |
| video_dynamic_range_type |
str |
|
[optional] |
| resolution |
str |
|
[optional] |
| run_time |
str |
|
[optional] |
| scan_type |
str |
|
[optional] |
| subtitles |
str |
|
[optional] |
from sonarr.models.media_info_resource import MediaInfoResource
# TODO update the JSON string below
json = "{}"
# create an instance of MediaInfoResource from a JSON string
media_info_resource_instance = MediaInfoResource.from_json(json)
# print the JSON string representation of the object
print(MediaInfoResource.to_json())
# convert the object into a dict
media_info_resource_dict = media_info_resource_instance.to_dict()
# create an instance of MediaInfoResource from a dict
media_info_resource_from_dict = MediaInfoResource.from_dict(media_info_resource_dict)
[Back to Model list] [Back to API list] [Back to README]