Skip to content

Commit

Permalink
Update xbmc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
romanvm committed Mar 10, 2024
1 parent a63b102 commit 2f3fbd9
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions xbmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ def setMediaType(self, mediaType: str) -> None:
Set the media type of the music item.
:param mediaType: string - Media type.
@python_v20 New function added.
"""
pass
Expand Down Expand Up @@ -1189,9 +1188,9 @@ def __init__(self, width: int = 0,
aspect: float = 0.0,
duration: int = 0,
codec: str = "",
stereoMode: str = "",
stereomode: str = "",
language: str = "",
hdrType: str = "") -> None:
hdrtype: str = "") -> None:
pass

def getWidth(self) -> int:
Expand Down Expand Up @@ -1324,11 +1323,11 @@ def setCodec(self, codec: str) -> None:
"""
pass

def setStereoMode(self, stereoMode: str) -> None:
def setStereoMode(self, stereomode: str) -> None:
"""
Set the stereo mode of the video stream.
:param stereoMode: string - Stereo mode of the video stream.
:param stereomode: string - Stereo mode of the video stream.
@python_v20 New function added.
"""
Expand All @@ -1344,11 +1343,11 @@ def setLanguage(self, language: str) -> None:
"""
pass

def setHDRType(self, hdrType: str) -> None:
def setHDRType(self, hdrtype: str) -> None:
"""
Set the HDR type of the stream.
:param hdrType: string - HDR type of the stream. The following types are supported:
:param hdrtype: string - HDR type of the stream. The following types are supported:
dolbyvision, hdr10, hlg
@python_v20 New function added.
Expand Down Expand Up @@ -2046,7 +2045,6 @@ def setSortSeason(self, sortseason: int) -> None:
Set the season sort number of the season.
:param sortseason: integer - Season sort number.
@python_v20 New function added.
"""
pass
Expand Down Expand Up @@ -2274,7 +2272,6 @@ def setWriters(self, writers: List[str]) -> None:
Set the writers of the video item.
:param writers: list - Writers.
@python_v20 New function added.
"""
pass
Expand Down Expand Up @@ -3476,7 +3473,6 @@ def capture(self, width: int, height: int) -> None:
:param width: Width capture image should be rendered to
:param height: Height capture image should should be rendered to
@python_v17 Removed the option to pass **flags**
"""
pass
Expand Down

0 comments on commit 2f3fbd9

Please sign in to comment.