mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
1b6239bae3
* Add ffmpeg support for drawtext filter requires linking against harfbuzz and freetype. * pin major library versions
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
distributable:
|
|
url: https://ffmpeg.org/releases/ffmpeg-{{version.raw}}.tar.gz
|
|
sig: ${{url}}.asc
|
|
strip-components: 1
|
|
|
|
# docs: https://trac.ffmpeg.org/wiki/CompilationGuide
|
|
|
|
versions:
|
|
url: https://ffmpeg.org/releases/
|
|
match: /ffmpeg-\d+\.\d+(\.\d+)?\.tar\.gz/
|
|
strip:
|
|
- /ffmpeg-/
|
|
- /.tar.gz/
|
|
|
|
provides:
|
|
- bin/ffmpeg
|
|
- bin/ffplay
|
|
- bin/ffprobe
|
|
|
|
dependencies:
|
|
lame.sourceforge.io: '>=3.98.3'
|
|
libsdl.org: ^2
|
|
freetype.org: ^2
|
|
harfbuzz.org: ^8
|
|
|
|
build:
|
|
dependencies:
|
|
x86-64:
|
|
nasm.us: 2
|
|
script:
|
|
- ./configure $ARGS
|
|
- make --jobs {{hw.concurrency}}
|
|
- make install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
- --enable-libfreetype
|
|
- --enable-libharfbuzz
|
|
- --enable-libmp3lame
|
|
|
|
test:
|
|
dependencies:
|
|
gnu.org/wget: "*"
|
|
info-zip.org/unzip: "*"
|
|
script:
|
|
- wget --content-disposition https://github.com/googlefonts/RobotoMono/raw/main/fonts/ttf/RobotoMono-Regular.ttf
|
|
- ffmpeg -filter_complex testsrc=rate=1:duration=1,drawtext=fontfile=RobotoMono-Regular.ttf:text=hello out.mp4
|
|
- test -f out.mp4
|