bugfix
This commit is contained in:
parent
141fe2fd7b
commit
7199fcb0af
@ -20,7 +20,7 @@ class MyAudioStreamTrack(AudioStreamTrack):
|
|||||||
return None
|
return None
|
||||||
f = await self.source.audio.recv()
|
f = await self.source.audio.recv()
|
||||||
while f is None:
|
while f is None:
|
||||||
self.set_source(MediaPlayer(self.source._file_path)
|
self.set_source(MyMediaPlayer(self.source._file_path))
|
||||||
f = await self.source.audio.recv()
|
f = await self.source.audio.recv()
|
||||||
return f
|
return f
|
||||||
|
|
||||||
@ -38,6 +38,6 @@ class MyVideoStreamTrack(VideoStreamTrack):
|
|||||||
return None
|
return None
|
||||||
f = await self.source.video.recv()
|
f = await self.source.video.recv()
|
||||||
while f is None:
|
while f is None:
|
||||||
self.set_source(MediaPlayer(self.source._file_path)
|
self.set_source(MyMediaPlayer(self.source._file_path))
|
||||||
f = await self.source.video.recv()
|
f = await self.source.video.recv()
|
||||||
return f
|
return f
|
||||||
|
Loading…
Reference in New Issue
Block a user