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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
| #! /usr/bin/python3
import sys
import os
from os.path import expanduser, dirname
import subprocess
import json
import argparse
from pathlib import Path
import sqlite3
import locale
import xml.etree.ElementTree
import logging
import traceback
from urllib.parse import urlparse, parse_qs
from datetime import datetime
import threading
import paho.mqtt.client as mqtt
import yaml
import pafy
import requests
from mpv import MPV, MpvEventID, MpvEventEndFile
version = "3.3.1"
class MpvEventEndFile:
EOF = 0
STOP = 2
QUIT = 3
ERROR = 4
REDIRECT = 5
# https://github.com/jaseg/python-mpv/blob/master/mpv.py#L582
# but with timeout
def mpv_wait_for_property(self, name, cond=lambda val: val, level_sensitive=True, timeout=1):
"""Waits until ``cond`` evaluates to a truthy value on the named property. This can be used to wait for
properties such as ``idle_active`` indicating the player is done with regular playback and just idling around
"""
sema = threading.Semaphore(value=0)
def observer(name, val):
if cond(val):
sema.release()
self.observe_property(name, observer)
ret = True
if not level_sensitive or not cond(getattr(self, name.replace('-', '_'))):
ret = sema.acquire(timeout=timeout)
try:
self.unobserve_property(name, observer)
except ValueError:
pass
return ret
def xdg_config_dir():
config_home = os.getenv("XDG_CONFIG_HOME",
os.path.expanduser("~/.config/"))
return os.path.join(config_home, "zeromedia")
def xdg_data_dir():
config_home = os.getenv("XDG_DATA_HOME",
os.path.expanduser("~/.data/"))
return os.path.join(config_home, "zeromedia")
class Player:
def __init__(self, options, volume_cb, pause_cb, seek_cb, stop_cb, error_cb):
default_options = {
"ytdl": True,
"input_default_bindings": True,
"input_vo_keyboard": True,
"config": True
}
default_options.update(options)
extra_mpv_flags = [ k for k,v in default_options.items() if v is None]
extra_mpv_opts = { k:v for k,v in default_options.items() if v is not None}
self._mpv = MPV(*extra_mpv_flags, **extra_mpv_opts)
# self._mpv.unregister_key_binding('q')
# self._mpv.unregister_key_binding('Q')
self.time_pos = None
self._volume_cb = volume_cb
self._pause_cb = pause_cb
self._stop_cb = stop_cb
self._seek_cb = seek_cb
self._error_cb = error_cb
@self._mpv.property_observer('time-pos')
def time_pos(name, pos):
if pos is not None:
self.time_pos = pos
@self._mpv.property_observer('pause')
def pause(name, pause):
self._pause_cb(self.time_pos)
@self._mpv.property_observer('volume')
def volume(name, vol):
self._volume_cb(vol)
def event(ev):
if ev["event_id"] == MpvEventID.END_FILE:
if ev["event"]["reason"] in (MpvEventEndFile.STOP,
MpvEventEndFile.QUIT,
):
self._stop_cb(self.time_pos)
logging.debug("Player: stopped at %s", str(self.time_pos))
elif ev["event"]["reason"] in (MpvEventEndFile.EOF, ):
self._stop_cb(None)
logging.debug("Player: end of file")
elif ev["event"]["reason"] in (MpvEventEndFile.ERROR, ):
self._error_cb("file error")
self._file_error = True
logging.critical("Player: file error")
elif ev["event_id"] in (MpvEventID.PLAYBACK_RESTART, ):
self._seek_cb(self.time_pos)
self._mpv.register_event_callback(event)
def play(self, file, title=None):
self.stop()
self._file_error = False
self._mpv.loadfile(file)
self._mpv.pause = False
# wait for effective playback
while True:
if mpv_wait_for_property(self._mpv, "path") and mpv_wait_for_property(self._mpv, "time-pos"):
break
if self._file_error:
break
if not self._file_error:
if title is None:
self._mpv.command("show-text", self._mpv.media_title)
else:
self._mpv.command("show-text", title)
logging.debug("Player: playing %s", self._mpv.path)
def pause(self):
if self._mpv.pause:
self._mpv.pause = False
else:
self._mpv.pause = True
def stop(self):
self._mpv.command("stop")
def position(self, pos=None):
if pos is not None:
self._mpv.time_pos = pos
self._mpv.command("osd-msg-bar", "show-progress")
def seek(self, offset):
self._mpv.command("osd-msg-bar", "seek", offset)
def set_volume(self, val=None, add=None):
try:
if add is not None:
add = int(add)
self._mpv.command("osd-msg-bar", "add", "volume", add)
elif val is not None:
val = int(val)
self._mpv.command("osd-msg-bar", "set", "volume", val)
except TypeError:
pass
logging.debug("Player: volume %s", str(self._mpv.volume))
def mute(self):
if self._mpv.mute:
self._mpv.mute = False
else:
self._mpv.mute = True
def get_status(self):
status = {}
status["current"] = self._mpv.path
status["time_pos"] = self._mpv.time_pos
status["percent_pos"] = self._mpv.percent_pos
status["pause"] = self._mpv.pause
status["volume"] = self._mpv.volume
status["duration"] = self._mpv.duration
return status
class History:
_create_table = """CREATE TABLE IF NOT EXISTS history (
path TEXT,
timestamp TEXT,
position REAL,
deleted INTEGER,
PRIMARY KEY (path)
);
"""
_update = "UPDATE history SET timestamp = datetime('now'), position = ? WHERE path = ?;"
_insert = "INSERT OR IGNORE INTO history VALUES (?, datetime('now'), ? , 0);"
_last = """SELECT path, position FROM history
WHERE path GLOB ?
ORDER BY datetime(timestamp) DESC LIMIT 1;
"""
def __init__(self, path):
os.makedirs(os.path.dirname(path), exist_ok=True)
self._conn = sqlite3.connect(path, check_same_thread=False)
self._conn.row_factory = sqlite3.Row
c = self._conn
c.execute(self._create_table)
c.commit()
def record(self, path, position):
logging.info("History: position recorded")
c = self._conn
c.execute(self._update, (position, path))
c.execute(self._insert, (path, position))
c.commit()
def last(self, pattern):
if "*" not in pattern:
pattern = "*" + pattern + "*"
c = self._conn
cur = c.execute(self._last, (pattern,))
path, position = cur.fetchone()
return (path, position)
class Filesystem:
def _relative(self, name, base, fullpath):
path = Path(fullpath)
return name + ":" + str(path.relative_to(base))
def list(self, name, base, suffix=None):
base = base[len("file://"):]
path = Path(base)
if suffix is not None:
path = path / suffix
files = []
dirs = []
for f in path.iterdir():
if f.is_dir():
dirs.append(self._relative(name, base, f) + "/")
else:
files.append(self._relative(name, base, f))
files.sort(key=locale.strxfrm)
files = [ {"path": f} for f in files ]
dirs.sort(key=locale.strxfrm)
return {"files": files, "directories": dirs}
def _iter_files(self, path):
for root, dirs, files in os.walk(path):
files.sort(key=locale.strxfrm)
dirs.sort(key=locale.strxfrm)
for f in files:
yield os.path.join(root, f)
def prevnext(self, name, backend, suffix):
base = backend[len("file://"):]
target = os.path.join(base, suffix)
prev_file = None
iter = self._iter_files(base)
for f in iter:
if f == target:
break
prev_file = f
try:
next_file = next(iter)
except StopIteration:
next_file = None
next_file = self._relative(name, base, next_file) if next_file is not None else None
prev_file = self._relative(name, base, prev_file) if prev_file is not None else None
return prev_file, next_file
class Youtube:
def _url(self, playlist_id, video_id):
return "https://www.youtube.com/watch?v={video_id}&list={playlist_id}".format(playlist_id=playlist_id, video_id=video_id)
def match(self, path):
print("Youtube spotted")
for start in ["https://www.youtube.com/watch", "https://www.youtube.com/playlist", "https://www.youtube.com/channel", "https://www.youtube.com/user"]:
if path.startswith(start):
return True
def _need_feed(self, path):
for start in ["https://www.youtube.com/channel", "https://www.youtube.com/user"]:
if path.startswith(start):
return True
def get_feed(self, url):
if url.startswith("https://www.youtube.com/channel"):
channel_id = url.split("/")[4]
feed_url = "https://www.youtube.com/feeds/videos.xml?channel_id=" + channel_id
if url.startswith("https://www.youtube.com/user"):
username = url.split("/")[4]
feed_url = "https://www.youtube.com/feeds/videos.xml?user=" + username
feed = requests.get(feed_url)
xmltree = xml.etree.ElementTree.fromstring(feed.content)
videos = [{"path": x.find('{http://www.w3.org/2005/Atom}link').attrib["href"], "title": x.find('{http://www.w3.org/2005/Atom}title').text}
for x in reversed(xmltree.findall('{http://www.w3.org/2005/Atom}entry'))]
return videos
def get_playlist(self, url):
pl = pafy.get_playlist(url)
for item in pl["items"]:
item["added"] = datetime.strptime(item["playlist_meta"]["added"], "%d/%m/%Y")
pl["items"].sort(key=lambda x: x["added"])
return [x["pafy"] for x in pl["items"]], pl["playlist_id"]
def list(self, url, name=None):
if self._need_feed(url):
return {"files": self.get_feed(url), "directories": []}
pl, playlist_id = self.get_playlist(url)
files = []
for idx, vid in enumerate(pl):
data = {}
if name is None:
data["path"] = self._url(playlist_id, vid.videoid)
else:
data["path"] = name + ":" + str(idx)
data["title"] = vid.title
data["duration"] = vid.duration
files.append(data)
return {"files": files, "directories": []}
def playlist(self, url, index):
index = int(index)
pl, playlist_id = self.get_playlist(url)
if index < len(pl):
vid = pl[index]
return self._url(playlist_id, vid.videoid)
else:
raise ValueError("index too large")
def play(self, url):
if url.startswith("https://www.youtube.com/watch"):
vid = pafy.new(url)
elif self._need_feed(url):
pl = self.get_feed(url)
vid = pafy.new(pl[-1]["path"])
else:
pl, _ = self.get_playlist(url)
vid = pl[-1]
stream = vid.getbest()
path = stream.url
return path, vid.title
def prevnext(self, name, backend, suffix):
if backend is None:
path = name + ":" + suffix
if "list=" not in path:
return
videoid = pafy.new(path).videoid
playlist, playlist_id = self.get_playlist(path)
prev_id = None
iterator = iter(playlist)
for v in iterator:
vid = v.videoid
if videoid == vid:
break
prev_id = vid
try:
next_id = next(iterator).videoid
except StopIteration:
next_id = None
prev_url = self._url(playlist_id, prev_id)
next_url = self._url(playlist_id, next_id)
return prev_url, next_url
else:
playlist, _ = self.get_playlist(backend)
max_idx = len(playlist)
index = int(suffix)
prev_idx = index - 1
next_idx = index + 1
if prev_idx < 0:
prev_path = None
else:
prev_path = name+":"+str(prev_idx)
if next_idx > max_idx:
next_path = None
else:
next_path = name+":"+str(next_idx)
return prev_path, next_path
class DVD:
def __init__(self, dvd_device=None):
self._dvd_device = dvd_device
def _lsdvd(self):
if self._dvd_device is None:
command = ["lsdvd", "-Ox"]
else:
command = ["lsdvd", "-Ox", self._dvd_device]
try:
output = subprocess.check_output(command, stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError as e:
return None
return xml.etree.ElementTree.fromstring(output)
def list(self, name):
xml = self._lsdvd()
if xml is None:
return {"files": [], "directories": []}
tracks = [ { "path": name+":"+str(int(x.find('ix').text) - 1), "duration": float(x.find('length').text) }
for x in xml.findall('track') ]
return {"directories": [], "files": tracks}
def prevnext(self, name, backend, suffix):
max_track = len(self.list(name)["files"])
suffix = int(suffix)
prev_track = suffix - 1
next_track = suffix + 1
if prev_track < 0:
prev_track = None
if next_track > max_track:
next_track = None
return name+":"+str(prev_track), name+":"+str(next_track)
def eject(self):
if self._dvd_device is None:
command = ["eject"]
else:
command = ["eject", self._dvd_device]
subprocess.call(command)
class Dispatcher:
def __init__(self, mpv_options, channels, status_cb):
self._channels = channels
self._status_cb = status_cb
self._asked_file = None
self._error = None
self._player = Player(mpv_options,
volume_cb=lambda _: status_cb(self.status()),
stop_cb=self._record_position,
seek_cb=lambda _: status_cb(self.status()),
pause_cb=lambda _: status_cb(self.status()),
error_cb=self._set_error)
self._filesystem = Filesystem()
self._dvd = DVD(mpv_options.get("dvd-device", None))
self._youtube = Youtube()
self._history = History(os.path.join(xdg_data_dir(), "history.db"))
def _record_position(self, pos):
self._history.record(self._asked_file, pos)
self._status_cb(self.status())
def _set_error(self, error):
self._error = error
self._status_cb(self.status())
def _playing(self):
status = self._player.get_status()
return status["current"] is not None
def _paused(self):
status = self._player.get_status()
return status["pause"]
def status(self):
status = self._player.get_status()
status["current"] = None if status["current"] is None else self._asked_file
status["error"] = self._error
return status
def _play(self, zpath):
logging.info("Zeromedia: play %s", zpath)
self._error = None
title = None
path = zpath
parts = path.split(":", 1)
if len(parts) == 2:
name = parts[0]
suffix = parts[1]
if name in self._channels:
backend = self._channels[name]
if type(backend) is str:
if len(suffix) == 0:
path = backend
elif backend.startswith("file://"):
path = os.path.join(backend, suffix)
elif backend.startswith("https://www.youtube.com/playlist"):
path = self._youtube.playlist(backend, suffix)
elif backend.startswith("dvd://") or backend.startswith("dvdread://"):
path = backend + suffix
elif type(backend) is dict:
path = backend[suffix]
if path.startswith("https://www.youtube.com"):
path, title = self._youtube.play(path)
self._asked_file = zpath
self._player.play(path, title=title)
def do(self, cmd, args):
try:
func = getattr(self, "do_" + cmd)
except AttributeError:
logging.warning("Unknown command: %s", cmd)
else:
try:
ret = func(**args)
if ret is None:
return self.status()
else:
return ret
except ValueError as e:
logging.warning("Value error in %s: %s", cmd, " ".join(str(s) for s in e.args))
return {"error": "value error", "details": e.args}
except TypeError as e:
logging.warning("Type error in %s: %s", cmd, " ".join(str(s) for s in e.args))
return {"error": "type error", "details": e.args}
except:
e = sys.exc_info()[1]
logging.error("Unknown exception in %s: %s", cmd, str(e))
traceback.print_exc()
return {"error": "unknown error"}
def do_status(self):
return self.status()
def do_play(self, path):
self._play(path)
def do_pause(self):
logging.info("Zeromedia: pause")
self._player.pause()
def do_stop(self):
self._player.stop()
def do_position(self, pos=None):
self._player.position(pos=pos)
def do_seek(self, offset):
self._player.seek(offset)
def do_volume(self, val=None, add=None):
if val is not None and val >= 130:
val = 130
self._player.set_volume(val=val, add=add)
def do_mute(self):
self._player.mute()
def do_last(self, pattern="*"):
path, position = self._history.last(pattern)
logging.info("Zeromedia: last %s %s", str(position), path)
return {"path": path, "position": position}
def do_continue(self, pattern="*"):
if self._paused():
self._player.pause()
if self._playing():
return
path, position = self._history.last(pattern)
logging.info("Zeromedia: continue %s %s", str(position), path)
if position is None:
self._nextprev(path, +1)
else:
self._play(path)
self._player.position(pos=position)
def _split_path(self, path):
name, suffix = path.split(":", 1)
backend = self._channels.get(name, None)
return name, backend, suffix
def _nextprev(self, path, direction):
name, backend, suffix = self._split_path(path)
if backend is not None and backend.startswith("file://"):
prev, next = self._filesystem.prevnext(name, backend, suffix)
elif backend is not None and backend.startswith("dvd://"):
prev, next = self._dvd.prevnext(name, backend, suffix)
elif path.startswith("https://www.youtube.com") or backend.startswith("https://www.youtube.com"):
prev, next = self._youtube.prevnext(name, backend, suffix)
else:
return
if direction > 0:
if next is None:
raise ValueError("next not found")
else:
self._play(next)
else:
if prev is None:
raise ValueError("previous not found")
else:
self._play(prev)
def do_next(self):
status = self.status()
if status["current"] is None:
self.do_continue()
else:
self._nextprev(status["current"], +1)
def do_previous(self):
status = self.status()
if status["current"] is None:
return None
else:
self._nextprev(status["current"], -1)
def do_screen(self, state):
logging.info("Player: screen %s", str(state))
if state:
subprocess.call(["xset", "dpms", "force", "on"])
else:
subprocess.call(["xset", "dpms", "force", "off"])
def do_eject(self, state=None):
self._dvd.eject()
def do_list(self, path=None):
answer = {}
if not path:
channels = [ ch + ":" for ch in self._channels ]
channels.sort(key=locale.strxfrm)
answer = {"directories": channels, "files": [], "path": ""}
else:
parts = path.split(":", 1)
name = parts[0]
if name in self._channels:
backend = self._channels[name]
if type(backend) is dict:
answer = {"directories": [], "files": [{"path": name + ":" + key} for key in backend]}
elif backend.startswith("file://"):
if len(parts) == 2:
answer = self._filesystem.list(name, backend, suffix=parts[1])
else:
answer = self._filesystem.list(name, backend)
elif backend.startswith("dvd://") or backend.startswith("dvdread://"):
answer = self._dvd.list(name)
elif backend.startswith("https://www.youtube.com"):
answer = self._youtube.list(backend, name)
elif path.startswith("https://www.youtube.com"):
answer = self._youtube.list(path)
else:
answer = {"error": "non-existent channel"}
answer["path"] = path
return answer
if __name__ == "__main__":
locale.resetlocale()
locale.setlocale(locale.LC_NUMERIC, "C")
parser = argparse.ArgumentParser(description='Zeromedia Server')
parser.add_argument('--version', action='version', version='%(prog)s ' + version)
parser.add_argument("-c", "--config",
dest = "config",
default = os.path.join(xdg_config_dir(), "configuration.yml"),
help = "Configuration file")
parser.add_argument('-v', '--verbose',
dest = 'verbose',
choices = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
default = 'WARNING',
metavar = 'VERBOSITY',
help = 'verbosity level')
args = parser.parse_args()
with open(args.config) as f:
config = yaml.safe_load(f)
if "channels" not in config or config["channels"] is None:
config["channels"] = {}
logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=getattr(logging, args.verbose), filename="zeromedia.log")
console = logging.StreamHandler()
logging.getLogger('').addHandler(console)
topic = config["mqtt"]["topic"]
client = mqtt.Client()
client.will_set(topic + "/status", json.dumps({'error': "server disconnected",
'volume':0,
'percent_pos': 0,
'pause': False,
'current': None,
'time_pos': 0}))
def on_status(status):
client.publish(topic + "/status", json.dumps(status))
dispatcher = Dispatcher(config.get("mpv", {}), config["channels"], on_status)
def on_connect(client, userdata, flags, rc):
if int(rc) == 0:
logging.info("MQTT: Connection successful")
else:
logging.critical("MQTT: Connection error %s", str(rc))
client.subscribe(topic + "/command/#")
client.on_connect = on_connect
def on_message(client, userdata, msg):
logging.debug("MQTT: %s %s", msg.topic, msg.payload)
command = msg.topic[len(topic + "/command") + 1:]
payload = msg.payload
if len(payload) == 0:
payload = b"{}"
try:
payload = json.loads(payload.decode("UTF-8"))
except:
logging.error("MQTT: Decoding failed for %s", msg.payload)
ans = {"error": "json decoding failed"}
else:
ans = dispatcher.do(command, payload)
if ans is None:
ans = {}
on_status(dispatcher.status())
logging.debug("MQTT: Answer %s", ans)
client.publish(topic + "/data/" + command, json.dumps(ans))
client.on_message = on_message
client.connect(config["mqtt"]["server"], config["mqtt"].get("port", 1883))
client.loop_forever()
|