3 # Player - a very simple GStreamer player
5 # Copyright (C) 2016 Antonio Ospite <ao2@ao2.it>
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 gi.require_version('Gst', '1.0')
23 from gi.repository import Gst
26 from gi.repository import GObject
27 GObject.threads_init()
31 def __init__(self, pipeline):
32 self.pipeline = pipeline
33 bus = self.pipeline.get_bus()
34 bus.add_signal_watch()
35 bus.connect("message", self.bus_message_cb)
37 self.mainloop = GObject.MainLoop()
40 def from_pipeline_string(pipeline_string):
41 pipeline = Gst.parse_launch(pipeline_string)
42 return Player(pipeline)
46 self.pipeline.set_state(Gst.State.NULL)
48 def bus_message_cb(self, unused_bus, message):
49 if message.type == Gst.MessageType.EOS:
53 self.pipeline.set_state(Gst.State.PLAYING)
57 except KeyboardInterrupt: