-
-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
server/src/main/java/com/genymobile/scrcpy/AudioRawRecorder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package com.genymobile.scrcpy; | ||
|
||
import android.media.MediaCodec; | ||
|
||
import java.io.IOException; | ||
import java.nio.ByteBuffer; | ||
|
||
public final class AudioRawRecorder implements AudioRecorder { | ||
|
||
private final Streamer streamer; | ||
|
||
private Thread thread; | ||
|
||
private static final int BUFFER_MS = 5; // milliseconds | ||
private static final int BUFFER_SIZE = AudioCapture.millisToBytes(BUFFER_MS); | ||
|
||
public AudioRawRecorder(Streamer streamer) { | ||
this.streamer = streamer; | ||
} | ||
|
||
private void record() throws IOException, AudioCaptureForegroundException { | ||
final ByteBuffer buffer = ByteBuffer.allocateDirect(BUFFER_SIZE); | ||
final MediaCodec.BufferInfo bufferInfo = new MediaCodec.BufferInfo(); | ||
|
||
AudioCapture capture = new AudioCapture(); | ||
try { | ||
capture.start(); | ||
|
||
streamer.writeHeader(); | ||
while (!Thread.currentThread().isInterrupted()) { | ||
buffer.position(0); | ||
int r = capture.read(buffer, BUFFER_SIZE, bufferInfo); | ||
if (r < 0) { | ||
throw new IOException("Could not read audio: " + r); | ||
} | ||
buffer.limit(r); | ||
|
||
streamer.writePacket(buffer, bufferInfo); | ||
} | ||
} catch (Throwable e) { | ||
// Notify the client that the audio could not be captured | ||
streamer.writeDisableStream(false); | ||
throw e; | ||
} finally { | ||
capture.stop(); | ||
} | ||
} | ||
|
||
public void start() { | ||
thread = new Thread(() -> { | ||
try { | ||
record(); | ||
} catch (AudioCaptureForegroundException e) { | ||
// Do not print stack trace, a user-friendly error-message has already been logged | ||
} catch (IOException e) { | ||
Ln.e("Audio recording error", e); | ||
} finally { | ||
Ln.d("Audio recorder stopped"); | ||
} | ||
}); | ||
thread.start(); | ||
} | ||
|
||
public void stop() { | ||
if (thread != null) { | ||
thread.interrupt(); | ||
} | ||
} | ||
|
||
public void join() throws InterruptedException { | ||
if (thread != null) { | ||
thread.join(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters