To record video and audio streams while mirroring:
scrcpy --record=file.mp4
scrcpy -r file.mkvTo record only the video:
scrcpy --no-audio --record=file.mp4To record only the audio:
scrcpy --no-video --record=file.opus
scrcpy --no-video --audio-codec=aac --record=file.aac
# .m4a/.mp4 and .mka/.mkv are also supported for both opus and aacTimestamps are captured on the device, so packet delay variation does not
impact the recorded file, which is always clean (only if you use --record of
course, not if you capture your scrcpy window and audio output on the computer).
The video and audio streams are encoded on the device, but are muxed on the client side. Two formats (containers) are supported:
- Matroska (
.mkv) - MP4 (
.mp4)
The container is automatically selected based on the filename.
It is also possible to explicitly select a container (in that case the filename
needs not end with .mkv or .mp4):
scrcpy --record=file --record-format=mkv
To disable playback while recording:
scrcpy --no-playback --record=file.mp4
scrcpy -Nr file.mkv
# interrupt recording with Ctrl+CIt is also possible to disable video and audio playback separately:
# Record both video and audio, but only play video
scrcpy --record=file.mkv --no-audio-playbackTo limit the recording time:
scrcpy --record=file.mkv --time-limit=20 # in secondsThe --time-limit option is not limited to recording, it also impacts simple
mirroring:
scrcpy --time-limit=20