Skip to content

Commit 13f7062

Browse files
committed
- remove 'no-audio' param
1 parent c5096f9 commit 13f7062

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/jpage4500/devicemanager/manager/DeviceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ public void mirrorDevice(Device device, TaskListener listener) {
584584
appResult = runApp(app, true, "-s", device.serial,
585585
"-p", String.valueOf(port),
586586
"--window-title", device.getDisplayName(),
587-
"--show-touches", "--stay-awake", "--no-audio");
587+
"--show-touches", "--stay-awake");
588588
}
589589

590590
// TODO: figure out how to determine if scrcpy was run successfully..

src/main/resources/scripts/mirror.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ fi
3535
echo "running scrcpy with DEVICE:${ADB_DEVICE}, PORT:${PORT}, NAME:${DEVICE_NAME}"
3636

3737
# shellcheck disable=SC2086
38-
${SCRCPY} -s "${ADB_DEVICE}" ${PORT} --window-title "${DEVICE_NAME}" --show-touches --stay-awake --no-audio
38+
${SCRCPY} -s "${ADB_DEVICE}" ${PORT} --window-title "${DEVICE_NAME}" --show-touches --stay-awake

0 commit comments

Comments
 (0)