forked from home-assistant-libs/pychromecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.py
71 lines (58 loc) · 1.55 KB
/
example.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
"""
Example that shows how the new Python 2 socket client can be used.
"""
from __future__ import print_function
import time
import sys
import logging
import pychromecast
import pychromecast.controllers.youtube as youtube
if '--show-debug' in sys.argv:
logging.basicConfig(level=logging.DEBUG)
cast = pychromecast.get_chromecast()
yt = youtube.YouTubeController()
cast.register_handler(yt)
print()
print(cast.device)
time.sleep(1)
print()
print(cast.status)
print()
print(cast.media_controller.status)
print()
if '--show-status-only' in sys.argv:
sys.exit()
if not cast.is_idle:
print("Killing current running app")
cast.quit_app()
time.sleep(5)
print("Playing media")
cast.play_media(
("http://commondatastorage.googleapis.com/gtv-videos-bucket/"
"sample/BigBuckBunny.mp4"), "video/mp4")
t = 0
while True:
try:
t += 1
if t > 10 and t % 3 == 0:
print("Media status", cast.media_controller.status)
if t == 15:
print("Sending pause command")
cast.media_controller.pause()
elif t == 20:
print("Sending play command")
cast.media_controller.play()
elif t == 25:
print("Sending stop command")
cast.media_controller.stop()
elif t == 27:
print("Switching to YouTube")
yt.play_video("L0MK7qz13bU")
elif t == 38:
cast.media_controller.pause()
elif t == 45:
cast.quit_app()
break
time.sleep(1)
except KeyboardInterrupt:
break