SpotiFlyer/ffmpeg/copy-ffmpeg-executables.sh

10 lines
311 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# CD to script location
cd "$(dirname "$0")" || echo "cd to $(dirname "$0") Failed"
# Copy ffmpeg executables for all targets
for target in arm64-v8a armeabi-v7a x86 x86_64
do
cp ./ffmpeg-android-maker/build/ffmpeg/$target/bin/ffmpeg ./android-ffmpeg/src/main/resources/lib/$target/
done