mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Use attributes in vlc media player (#82841)
This commit is contained in:
parent
6a17937dc3
commit
a747a8f936
@ -67,69 +67,28 @@ class VlcDevice(MediaPlayerEntity):
|
|||||||
"""Initialize the vlc device."""
|
"""Initialize the vlc device."""
|
||||||
self._instance = vlc.Instance(arguments)
|
self._instance = vlc.Instance(arguments)
|
||||||
self._vlc = self._instance.media_player_new()
|
self._vlc = self._instance.media_player_new()
|
||||||
self._name = name
|
self._attr_name = name
|
||||||
self._volume = None
|
|
||||||
self._muted = None
|
|
||||||
self._state = None
|
|
||||||
self._media_position_updated_at = None
|
|
||||||
self._media_position = None
|
|
||||||
self._media_duration = None
|
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
"""Get the latest details from the device."""
|
"""Get the latest details from the device."""
|
||||||
status = self._vlc.get_state()
|
status = self._vlc.get_state()
|
||||||
if status == vlc.State.Playing:
|
if status == vlc.State.Playing:
|
||||||
self._state = MediaPlayerState.PLAYING
|
self._attr_state = MediaPlayerState.PLAYING
|
||||||
elif status == vlc.State.Paused:
|
elif status == vlc.State.Paused:
|
||||||
self._state = MediaPlayerState.PAUSED
|
self._attr_state = MediaPlayerState.PAUSED
|
||||||
else:
|
else:
|
||||||
self._state = MediaPlayerState.IDLE
|
self._attr_state = MediaPlayerState.IDLE
|
||||||
self._media_duration = self._vlc.get_length() / 1000
|
self._attr_media_duration = self._vlc.get_length() / 1000
|
||||||
position = self._vlc.get_position() * self._media_duration
|
position = self._vlc.get_position() * self._attr_media_duration
|
||||||
if position != self._media_position:
|
if position != self._attr_media_position:
|
||||||
self._media_position_updated_at = dt_util.utcnow()
|
self._attr_media_position_updated_at = dt_util.utcnow()
|
||||||
self._media_position = position
|
self._attr_media_position = position
|
||||||
|
|
||||||
self._volume = self._vlc.audio_get_volume() / 100
|
self._attr_volume_level = self._vlc.audio_get_volume() / 100
|
||||||
self._muted = self._vlc.audio_get_mute() == 1
|
self._attr_is_volume_muted = self._vlc.audio_get_mute() == 1
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@property
|
|
||||||
def name(self):
|
|
||||||
"""Return the name of the device."""
|
|
||||||
return self._name
|
|
||||||
|
|
||||||
@property
|
|
||||||
def state(self):
|
|
||||||
"""Return the state of the device."""
|
|
||||||
return self._state
|
|
||||||
|
|
||||||
@property
|
|
||||||
def volume_level(self):
|
|
||||||
"""Volume level of the media player (0..1)."""
|
|
||||||
return self._volume
|
|
||||||
|
|
||||||
@property
|
|
||||||
def is_volume_muted(self):
|
|
||||||
"""Boolean if volume is currently muted."""
|
|
||||||
return self._muted
|
|
||||||
|
|
||||||
@property
|
|
||||||
def media_duration(self):
|
|
||||||
"""Duration of current playing media in seconds."""
|
|
||||||
return self._media_duration
|
|
||||||
|
|
||||||
@property
|
|
||||||
def media_position(self):
|
|
||||||
"""Position of current playing media in seconds."""
|
|
||||||
return self._media_position
|
|
||||||
|
|
||||||
@property
|
|
||||||
def media_position_updated_at(self):
|
|
||||||
"""When was the position of the current playing media valid."""
|
|
||||||
return self._media_position_updated_at
|
|
||||||
|
|
||||||
def media_seek(self, position: float) -> None:
|
def media_seek(self, position: float) -> None:
|
||||||
"""Seek the media to a specific location."""
|
"""Seek the media to a specific location."""
|
||||||
track_length = self._vlc.get_length() / 1000
|
track_length = self._vlc.get_length() / 1000
|
||||||
@ -138,27 +97,27 @@ class VlcDevice(MediaPlayerEntity):
|
|||||||
def mute_volume(self, mute: bool) -> None:
|
def mute_volume(self, mute: bool) -> None:
|
||||||
"""Mute the volume."""
|
"""Mute the volume."""
|
||||||
self._vlc.audio_set_mute(mute)
|
self._vlc.audio_set_mute(mute)
|
||||||
self._muted = mute
|
self._attr_is_volume_muted = mute
|
||||||
|
|
||||||
def set_volume_level(self, volume: float) -> None:
|
def set_volume_level(self, volume: float) -> None:
|
||||||
"""Set volume level, range 0..1."""
|
"""Set volume level, range 0..1."""
|
||||||
self._vlc.audio_set_volume(int(volume * 100))
|
self._vlc.audio_set_volume(int(volume * 100))
|
||||||
self._volume = volume
|
self._attr_volume_level = volume
|
||||||
|
|
||||||
def media_play(self) -> None:
|
def media_play(self) -> None:
|
||||||
"""Send play command."""
|
"""Send play command."""
|
||||||
self._vlc.play()
|
self._vlc.play()
|
||||||
self._state = MediaPlayerState.PLAYING
|
self._attr_state = MediaPlayerState.PLAYING
|
||||||
|
|
||||||
def media_pause(self) -> None:
|
def media_pause(self) -> None:
|
||||||
"""Send pause command."""
|
"""Send pause command."""
|
||||||
self._vlc.pause()
|
self._vlc.pause()
|
||||||
self._state = MediaPlayerState.PAUSED
|
self._attr_state = MediaPlayerState.PAUSED
|
||||||
|
|
||||||
def media_stop(self) -> None:
|
def media_stop(self) -> None:
|
||||||
"""Send stop command."""
|
"""Send stop command."""
|
||||||
self._vlc.stop()
|
self._vlc.stop()
|
||||||
self._state = MediaPlayerState.IDLE
|
self._attr_state = MediaPlayerState.IDLE
|
||||||
|
|
||||||
async def async_play_media(
|
async def async_play_media(
|
||||||
self, media_type: MediaType | str, media_id: str, **kwargs: Any
|
self, media_type: MediaType | str, media_id: str, **kwargs: Any
|
||||||
@ -186,7 +145,7 @@ class VlcDevice(MediaPlayerEntity):
|
|||||||
self._vlc.play()
|
self._vlc.play()
|
||||||
|
|
||||||
await self.hass.async_add_executor_job(play)
|
await self.hass.async_add_executor_job(play)
|
||||||
self._state = MediaPlayerState.PLAYING
|
self._attr_state = MediaPlayerState.PLAYING
|
||||||
|
|
||||||
async def async_browse_media(
|
async def async_browse_media(
|
||||||
self,
|
self,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user