Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Kaufmann <humitos@gmail.com>2012-10-02 19:30:10 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-10-10 16:24:37 (GMT)
commite56a24ab0ecd550b5c084655da367f42d8df76c6 (patch)
tree54503a1db25d899a2279ceb76c81fac544d8d3ba
parentb44d38ff96e0b339dc6a2ac56a11bda608dbd122 (diff)
Stop the player when the user is reproducing a video and switch to another activity.
Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
-rw-r--r--jukeboxactivity.py20
1 files changed, 17 insertions, 3 deletions
diff --git a/jukeboxactivity.py b/jukeboxactivity.py
index 45bb333..97c2de4 100644
--- a/jukeboxactivity.py
+++ b/jukeboxactivity.py
@@ -101,6 +101,11 @@ class JukeboxActivity(activity.Activity):
self.connect("key_press_event", self._key_press_event_cb)
+ # We want to be notified when the activity gets the focus or
+ # loses it. When it is not active, we don't need to keep
+ # reproducing the video
+ self.connect("notify::active", self._notify_active_cb)
+
# FIXME: this is related with shared activity and it doesn't work
# if handle.uri:
# pass
@@ -126,7 +131,6 @@ class JukeboxActivity(activity.Activity):
self.playflag = False
self.tags = {}
self.only_audio = False
- self.got_stream_info = False
self.tag_reader = TagReader()
self.tag_reader.connect('get-tags', self.__get_tags_cb)
@@ -165,6 +169,17 @@ class JukeboxActivity(activity.Activity):
self.uri = handle.uri
GObject.idle_add(self._start, self.uri, handle.title)
+ def _notify_active_cb(self, widget, event):
+ """Sugar notify us that the activity is becoming active or inactive.
+ When we are inactive, we stop the player if it is reproducing
+ a video.
+ """
+ if self.player is not None and not self.only_audio:
+ if not self.player.is_playing() and self.props.active:
+ self.player.play()
+ if self.player.is_playing() and not self.props.active:
+ self.player.pause()
+
def _init_view_area(self):
"""
Use a notebook with two pages, one empty an another
@@ -319,7 +334,7 @@ class JukeboxActivity(activity.Activity):
self.tags[gst.TAG_ARTIST], album)
def _player_stream_info_cb(self, widget, stream_info):
- if not len(stream_info) or self.got_stream_info:
+ if not len(stream_info):
return
GST_STREAM_TYPE_UNKNOWN = 0
@@ -332,7 +347,6 @@ class JukeboxActivity(activity.Activity):
if item.props.type == GST_STREAM_TYPE_VIDEO:
only_audio = False
self.only_audio = only_audio
- self.got_stream_info = True
self._update_overlay()
def _joined_cb(self, activity):