DirectPlayProfile

Defines the MediaBrowser.Model.Dlna.DirectPlayProfile.

Properties

Name Type Description Notes
container str Gets or sets the container. [optional]
audio_codec str Gets or sets the audio codec. [optional]
video_codec str Gets or sets the video codec. [optional]
type DlnaProfileType Gets or sets the Dlna profile type. [optional]

Example

from jellyfin.generated.api_10_11.models.direct_play_profile import DirectPlayProfile

# TODO update the JSON string below
json = "{}"
# create an instance of DirectPlayProfile from a JSON string
direct_play_profile_instance = DirectPlayProfile.from_json(json)
# print the JSON string representation of the object
print(DirectPlayProfile.to_json())

# convert the object into a dict
direct_play_profile_dict = direct_play_profile_instance.to_dict()
# create an instance of DirectPlayProfile from a dict
direct_play_profile_from_dict = DirectPlayProfile.from_dict(direct_play_profile_dict)

[Back to Model list] [Back to API list] [Back to README]