mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-22 10:22:31 +01:00
ec875b5c65
- Bundle ffmpeg
- Fix menus on windows
- fs-methods seem to hang on windows, so exec instead
Resources:
https://discuss.atom.io/t/information-about-bundled-ffmpeg/28456/6
27730fd269/app/src/scripts/mp4-to-gif.js
https://github.com/orionhealth/electron-packager-plugin-non-proprietary-codecs-ffmpeg
https://github.com/konsumer/easy-ffmpeg
https://github.com/eugeneware/ffmpeg-static
16 lines
892 B
Bash
Executable File
16 lines
892 B
Bash
Executable File
ffmpeg_linux_ia32=https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-32bit-static.tar.xz
|
|
ffmpeg_linux_x64=https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz
|
|
ffmpeg_darwin_x64=http://evermeet.cx/ffmpeg/ffmpeg-3.2.7z
|
|
ffmpeg_win32_ia32=https://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-3.1.5-win32-static.zip
|
|
ffmpeg_win32_x64=https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-3.1.5-win64-static.zip
|
|
ffprobe_darwin_x64=http://evermeet.cx/ffmpeg/ffprobe-3.2.7z
|
|
|
|
mkdir -p ffmpeg-tmp/archives &&
|
|
(cd ffmpeg-tmp/archives &&
|
|
wget -O ffmpeg_linux_ia32.tar.xz "${ffmpeg_linux_ia32}" &&
|
|
wget -O ffmpeg_linux_x64.tar.xz "${ffmpeg_linux_x64}" &&
|
|
wget -O ffmpeg_darwin_x64.7z "${ffmpeg_darwin_x64}" &&
|
|
wget -O ffmpeg_win32_ia32.zip "${ffmpeg_win32_ia32}" &&
|
|
wget -O ffmpeg_win32_x64.zip "${ffmpeg_win32_x64}" &&
|
|
wget -O ffprobe_darwin_x64.7z "${ffprobe_darwin_x64}")
|