vidi/Player.py: rename the quit() method to stop()
[vidi-player.git] / vidi / Player.py
1 #!/usr/bin/env python3
2 #
3 # Player - a very simple GStreamer player
4 #
5 # Copyright (C) 2016  Antonio Ospite <ao2@ao2.it>
6 #
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.
11 #
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.
16 #
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/>.
19
20 import gi
21
22 gi.require_version('Gst', '1.0')
23 from gi.repository import Gst
24 Gst.init(None)
25
26 from gi.repository import GObject
27 GObject.threads_init()
28
29
30 class Player(object):
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)
36
37         self.mainloop = GObject.MainLoop()
38
39     @staticmethod
40     def from_pipeline_string(pipeline_string):
41         pipeline = Gst.parse_launch(pipeline_string)
42         return Player(pipeline)
43
44     def stop(self):
45         self.mainloop.quit()
46         self.pipeline.set_state(Gst.State.NULL)
47
48     def bus_message_cb(self, unused_bus, message):
49         if message.type == Gst.MessageType.EOS:
50             self.stop()
51
52     def play(self):
53         self.pipeline.set_state(Gst.State.PLAYING)
54
55         try:
56             self.mainloop.run()
57         except KeyboardInterrupt:
58             self.stop()
59             return 1
60
61         return 0