-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyomxplayer.py
101 lines (82 loc) · 3.46 KB
/
pyomxplayer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import pexpect
import re
from threading import Thread
from time import sleep
class OMXPlayer(object):
_FILEPROP_REXP = re.compile(r".*audio streams (\d+) video streams (\d+) chapters (\d+) subtitles (\d+).*")
_VIDEOPROP_REXP = re.compile(r".*Video codec ([\w-]+) width (\d+) height (\d+) profile (\d+) fps ([\d.]+).*")
_AUDIOPROP_REXP = re.compile(r"Audio codec (\w+) channels (\d+) samplerate (\d+) bitspersample (\d+).*")
_STATUS_REXP = re.compile(r"V :\s*([\d.]+).*")
_DONE_REXP = re.compile(r"have a nice day.*")
_LAUNCH_CMD = '/usr/bin/omxplayer -s %s %s'
_PAUSE_CMD = 'p'
_TOGGLE_SUB_CMD = 's'
_QUIT_CMD = 'q'
paused = False
subtitles_visible = True
def __init__(self, mediafile, args=None, start_playback=False):
if not args:
args = ""
cmd = self._LAUNCH_CMD % (mediafile, args)
print "cmd=%s." % cmd
self._process = pexpect.spawn(cmd)
print self._process
dir (self._process)
print self._process.readline()
self.video = dict()
self.audio = dict()
# Get file properties
file_props = self._FILEPROP_REXP.match(self._process.readline()).groups()
(self.audio['streams'], self.video['streams'],
self.chapters, self.subtitles) = [int(x) for x in file_props]
# Get video properties
video_props = self._VIDEOPROP_REXP.match(self._process.readline()).groups()
self.video['decoder'] = video_props[0]
self.video['dimensions'] = tuple(int(x) for x in video_props[1:3])
self.video['profile'] = int(video_props[3])
self.video['fps'] = float(video_props[4])
# Get audio properties
audio_props = self._AUDIOPROP_REXP.match(self._process.readline()).groups()
self.audio['decoder'] = audio_props[0]
(self.audio['channels'], self.audio['rate'],
self.audio['bps']) = [int(x) for x in audio_props[1:]]
if self.audio['streams'] > 0:
self.current_audio_stream = 1
self.current_volume = 0.0
self._position_thread = Thread(target=self._get_position)
self._position_thread.start()
if not start_playback:
self.toggle_pause()
self.toggle_subtitles()
def _get_position(self):
while True:
index = self._process.expect([self._STATUS_REXP,
pexpect.TIMEOUT,
pexpect.EOF,
self._DONE_REXP])
if index == 1: continue
elif index in (2, 3): break
else:
self.position = float(self._process.match.group(1))
sleep(0.05)
def toggle_pause(self):
if self._process.send(self._PAUSE_CMD):
self.paused = not self.paused
def toggle_subtitles(self):
if self._process.send(self._TOGGLE_SUB_CMD):
self.subtitles_visible = not self.subtitles_visible
def stop(self):
self._process.send(self._QUIT_CMD)
self._process.terminate(force=True)
def set_speed(self):
raise NotImplementedError
def set_audiochannel(self, channel_idx):
raise NotImplementedError
def set_subtitles(self, sub_idx):
raise NotImplementedError
def set_chapter(self, chapter_idx):
raise NotImplementedError
def set_volume(self, volume):
raise NotImplementedError
def seek(self, minutes):
raise NotImplementedError