We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Im trying to make a simple spotify player but when ever i use the example ffplay example i get this error
Traceback (most recent call last): File "/home/toby/SpotifyPlayer/main.py", line 61, in <module> ffplay.stdin.write(byte) BrokenPipeError: [Errno 32] Broken pipe
To Reproduce Use while True: byte = stream.input_stream.stream().read(1) if byte == -1: break ffplay.stdin.write(byte)
while True: byte = stream.input_stream.stream().read(1) if byte == -1: break ffplay.stdin.write(byte)
Expected behavior It should play the song via ffplay
Client Information (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
I have found out this is because its using SDL to show and play the music
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Im trying to make a simple spotify player but when ever i use the example ffplay example i get this error
Traceback (most recent call last): File "/home/toby/SpotifyPlayer/main.py", line 61, in <module> ffplay.stdin.write(byte) BrokenPipeError: [Errno 32] Broken pipe
To Reproduce
Use
while True: byte = stream.input_stream.stream().read(1) if byte == -1: break ffplay.stdin.write(byte)
Expected behavior
It should play the song via ffplay
Client Information (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: