19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 | 19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 |
-
+
| #
#
#
import re
import os
import http
import ahttp as http
from config import conf, __print__, dbg
import platform
main = None
|
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92 | 77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92 |
-
-
+
+
| pass
# exec wrapper
@staticmethod
def run(cmd):
if conf.windows:
os.system("start \"%s\"")
else:
os.system("start \"%s\"")
else:
os.system(cmd + " &")
# streamripper
@staticmethod
def record(url, audioformat="audio/mp3", listformat="text/x-href", append="", row={}):
__print__( "record", url ) |