You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In issue #126 you describe how to run several players, basically so
import mpv
import time
p1=mpv.MPV()
p1.play("http:/.....")
time.sleep(10)
p2=mpv.MPV()
p2.play("file-beep.wav")
On my Raspberry Pi, I only get this working after jackd -R -dalsa having running, but using this approach I have to add
p1.ao="jack"
p2.ao="jack"
to the code above and (at the moment) I could not use the alsa equalizer plugin.
Question: Is there a programmatic way to run the two players to mix their signals?
The text was updated successfully, but these errors were encountered:
Wikinaut
changed the title
How to play a stream and - on a button click - a short sound file simultaneously - withouc jackd?
[Question/Clarification request] How to play a stream and - on a button click - a short sound file simultaneously - withouc jackd?
Mar 20, 2023
In issue #126 you describe how to run several players, basically so
On my Raspberry Pi, I only get this working after
jackd -R -dalsa
having running, but using this approach I have to addto the code above and (at the moment) I could not use the alsa equalizer plugin.
Question: Is there a programmatic way to run the two players to mix their signals?
The text was updated successfully, but these errors were encountered: