a166eee909
Use a build which includes the opus muxer, to support recording to .opus files. Refs <https://github.com/rom1v/scrcpy-deps/commits/6.0-scrcpy-3> PR #3978 <https://github.com/Genymobile/scrcpy/pull/3978>
30 lines
578 B
Bash
Executable file
30 lines
578 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
DIR=$(dirname ${BASH_SOURCE[0]})
|
|
cd "$DIR"
|
|
. common
|
|
mkdir -p "$PREBUILT_DATA_DIR"
|
|
cd "$PREBUILT_DATA_DIR"
|
|
|
|
VERSION=6.0-scrcpy-3
|
|
DEP_DIR="ffmpeg-$VERSION"
|
|
|
|
FILENAME="$DEP_DIR".7z
|
|
SHA256SUM=36829d98ac4454d7092c72ddb92faa20b60450bc0fe8873076efb0858cdcbc2c
|
|
|
|
if [[ -d "$DEP_DIR" ]]
|
|
then
|
|
echo "$DEP_DIR" found
|
|
exit 0
|
|
fi
|
|
|
|
get_file "https://github.com/rom1v/scrcpy-deps/releases/download/$VERSION/$FILENAME" \
|
|
"$FILENAME" "$SHA256SUM"
|
|
|
|
mkdir "$DEP_DIR"
|
|
cd "$DEP_DIR"
|
|
|
|
ZIP_PREFIX=ffmpeg
|
|
7z x "../$FILENAME"
|
|
mv "$ZIP_PREFIX"/* .
|
|
rmdir "$ZIP_PREFIX"
|