mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
10 lines
293 B
YAML
10 lines
293 B
YAML
language: python
|
|
before_install:
|
|
- curl -O https://johnvansickle.com/ffmpeg/releases/ffmpeg-3.3.1-64bit-static.tar.xz
|
|
- tar Jxf ffmpeg-3.3.1-64bit-static.tar.xz
|
|
install:
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- export PATH=$(readlink -f ffmpeg-3.3.1-64bit-static):$PATH
|
|
- py.test
|