We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0aafe commit fd4d65aCopy full SHA for fd4d65a
mkchromecast.py
@@ -8,11 +8,18 @@
8
from mkchromecast.terminate import *
9
import atexit
10
11
+
12
+cc = casting()
13
14
+if cc.ip == '127.0.0.1' or None: # We verify the local IP.
15
+ print ('Your computer is not connected to any network')
16
+ terminate()
17
18
print('Switching to soundflower')
19
20
inputdev()
21
outputdev()
22
stream()
-cc = casting()
23
cc.initialize_cast()
24
cc.get_cc()
25
cc.play_cast()
requirements.txt
@@ -1,3 +1,4 @@
1
+mutagen == 1.31
2
psutil == 4.1.0
3
PyChromecast == 0.7.2
-mutagen == 1.31
4
+setuptools == 19.4
0 commit comments