Skip to content

Commit

Permalink
fix playing bug
Browse files Browse the repository at this point in the history
while playing on RPi, sometimes will show this error :
main tls client error: connection error: Interrupted system call
found the solution on stackOverFlow
  • Loading branch information
UncleHanWei committed Jan 11, 2022
1 parent ef5d85c commit 7d46fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PABot.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def play(msg) :
video = pafy.new(url)
best = video.getbestaudio()
playurl = best.url
Instance = vlc.Instance()
Instance = vlc.Instance("prefer-insecure")
player = Instance.media_player_new()
Media = Instance.media_new(playurl)
Media.get_mrl()
Expand Down

0 comments on commit 7d46fdb

Please sign in to comment.