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
Describe the bug
With sndcpy, we used to get audio from both the smartphone and the PC. However, with scrcpy, audio is only coming from one of them. Is there a way to make scrcpy output audio from both devices at the same time?
The text was updated successfully, but these errors were encountered:
scrcpy uses an AudioRecord with "remote submix" as source (Forward audio #3757)
There are two major drawbacks to the playback capture API used in sndcpy:
it lets Android apps decide if they can be captured or not (in practice, many apps are not captured),
it requires a real app (an APK) to be installed on the device (a real Android Context is necessary), that's the main reason why it's not implemented in scrcpy.
But as you noticed, unfortunately, we cannot keep audio on the device with the mechanism usedby scrcpy: #3875.
I wanted to use this application as a video capture card. Since I output the sound and video to a computer with a large buffer, I need the sound from the phone so that I can play games without sound delay. It's unfortunate that there is no solution yet.
Environment
Describe the bug
With sndcpy, we used to get audio from both the smartphone and the PC. However, with scrcpy, audio is only coming from one of them. Is there a way to make scrcpy output audio from both devices at the same time?
The text was updated successfully, but these errors were encountered: