This repository was archived by the owner on Jun 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherrors.log
More file actions
375 lines (365 loc) · 20 KB
/
errors.log
File metadata and controls
375 lines (365 loc) · 20 KB
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
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 17, in <module>
from GUI import main
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 5, in <module>
import globals
ModuleNotFoundError: No module named 'globals'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 9, in <module>
import globals
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\globals.py", line 4, in <module>
from GUI import main
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 7, in <module>
class MainGui(wx.Frame):
NameError: name 'wx' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 21, in <module>
main.window.Show()
AttributeError: module 'GUI.main' has no attribute 'window'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 9, in <module>
import globals
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\globals.py", line 4, in <module>
from GUI import main
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 37, in <module>
window=MainGui(application.name+" "+application.version)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 10, in __init__
wx.Frame.__init__(self, None, title=title,size=(800,600))
wx._core.PyNoAppError: The wx.App object must be created first!
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 9, in <module>
import globals
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\globals.py", line 4, in <module>
from GUI import main
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 37, in <module>
window=MainGui(application.name+" "+application.version)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 10, in __init__
wx.Frame.__init__(self, None, title=title,size=(800,600))
wx._core.PyNoAppError: The wx.App object must be created first!
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 28, in <module>
sound.play(urls[0])
AttributeError: module 'sound' has no attribute 'play'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 55, in play_url
player = stream.URLStream(url)
File "C:\python39\lib\site-packages\sound_lib\stream.py", line 128, in __init__
handle = bass_call(
File "C:\python39\lib\site-packages\sound_lib\main.py", line 58, in bass_call
res = function(*args)
ctypes.ArgumentError: argument 1: <class 'TypeError'>: wrong type
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 28, in <module>
sound.play_url(urls[0])
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 60, in play_url
speak.speak("Error while playing "+url)
TypeError: can only concatenate str (not "dict") to str
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 28, in <module>
a=urls[0]['func']['url'](urls['url'])
TypeError: 'function' object is not subscriptable
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 36, in <module>
utils.alert("No URL given.","Error")
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\utils.py", line 2, in alert
dlg = wx.MessageDialog(parent, message, caption, wx.OK)
NameError: name 'wx' is not defined
WARNING: Falling back on generic information extractor.
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 30, in <module>
a=urls[0]['func'](urls[0]['url'])
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 22, in ydl_url
return info['formats'][-1]['url']
KeyError: 'formats'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 33, in <module>
utils.alert("Error while playing "+a['url']+"","Error")
NameError: name 'a' is not defined
WARNING: Falling back on generic information extractor.
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 30, in <module>
a=urls[0]['func'](urls[0]['url'])
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 22, in ydl_url
return info['formats'][-1]['url']
KeyError: 'formats'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 33, in <module>
utils.alert("Error while playing "+a,"Error")
NameError: name 'a' is not defined
ERROR: This live event will begin in 6 hours.
Traceback (most recent call last):
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 815, in wrapper
return func(self, *args, **kwargs)
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 836, in __extract_info
ie_result = ie.extract(url)
File "C:\python39\lib\site-packages\youtube_dl\extractor\common.py", line 534, in extract
ie_result = self._real_extract(url)
File "C:\python39\lib\site-packages\youtube_dl\extractor\youtube.py", line 1713, in _real_extract
raise ExtractorError(reason, expected=True)
youtube_dl.utils.ExtractorError: This live event will begin in 6 hours.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 30, in <module>
a=urls[0]['func'](urls[0]['url'])
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 21, in ydl_url
info = ydl.extract_info(url, download=False, process=False)
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 808, in extract_info
return self.__extract_info(url, ie, download, extra_info, process)
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 824, in wrapper
self.report_error(compat_str(e), e.format_traceback())
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 628, in report_error
self.trouble(error_message, tb)
File "C:\python39\lib\site-packages\youtube_dl\YoutubeDL.py", line 598, in trouble
raise DownloadError(message, exc_info)
youtube_dl.utils.DownloadError: ERROR: This live event will begin in 6 hours.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\QPlay.pyw", line 33, in <module>
utils.alert("Error while playing "+a,"Error")
NameError: name 'a' is not defined
ERROR: This live event will begin in 6 hours.
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 51, in OnVoldown
if sound.player!=None:
NameError: name 'sound' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 51, in OnVoldown
if sound.player!=None:
NameError: name 'sound' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 51, in OnVoldown
if sound.player!=None:
NameError: name 'sound' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 51, in OnVoldown
if sound.player!=None:
NameError: name 'sound' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 51, in OnVoldown
if sound.player!=None:
NameError: name 'sound' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 65, in OnPlaypause
sound.playpause()
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 73, in playpause
if player.is_playing() == True:
TypeError: 'bool' object is not callable
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 65, in OnPlaypause
sound.playpause()
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 73, in playpause
if player.is_playing() == True:
TypeError: 'bool' object is not callable
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 65, in OnPlaypause
sound.playpause()
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 73, in playpause
if player.is_playing() == True:
TypeError: 'bool' object is not callable
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 67, in seek
pos=player.get_time()
AttributeError: 'URLStream' object has no attribute 'get_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=self.player.set_time(player.seconds_to_bytes(pos))
NameError: name 'self' is not defined
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 71, in OnSeekforward
sound.seek(5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'
Traceback (most recent call last):
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\GUI\main.py", line 68, in OnSeekback
sound.seek(-5)
File "C:\Users\Melody\Dropbox\projects\python\py3\QPlay\sound.py", line 69, in seek
pos=player.set_time(player.seconds_to_bytes(pos))
AttributeError: 'URLStream' object has no attribute 'set_time'