Add methods for calling MPD's albumart command
This commit is contained in:
parent
8ad255856e
commit
9d965567e6
2 changed files with 8 additions and 0 deletions
|
@ -95,6 +95,13 @@ class MpdStateListener(Player):
|
|||
print(song)
|
||||
listener.update(song)
|
||||
|
||||
async def albumart(self, file: str) -> bytes | None:
|
||||
try:
|
||||
albumart = await self.client.albumart(file)
|
||||
return albumart.get("binary")
|
||||
except CommandError:
|
||||
return None
|
||||
|
||||
async def readpicture(self, file: str) -> bytes | None:
|
||||
try:
|
||||
readpic = await self.client.readpicture(file)
|
||||
|
|
|
@ -13,6 +13,7 @@ class MPDClient(MPDClientBase):
|
|||
def idle(self, subsystems: Sequence[str] = ...) -> AsyncIterator[Sequence[str]]: ...
|
||||
async def status(self) -> types.StatusResponse: ...
|
||||
async def currentsong(self) -> types.CurrentSongResponse: ...
|
||||
async def albumart(self, uri: str) -> types.ReadPictureResponse: ...
|
||||
async def readpicture(self, uri: str) -> types.ReadPictureResponse: ...
|
||||
async def play(self) -> None: ...
|
||||
async def pause(self, pause: Literal[1, 0, None] = None) -> None:
|
||||
|
|
Loading…
Reference in a new issue