forked from federicocarboni/setup-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (25 loc) · 1.19 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Setup FFmpeg
description: 'Download, cache and add to PATH FFmpeg and FFprobe binaries.'
author: Federico Carboni
inputs:
ffmpeg-version:
description: 'Version of FFmpeg to use. Version Spec is only fully supported on Windows.'
default: release
architecture:
description: 'Target architecture for FFmpeg. On Windows and macOS, only x64 is supported; on Linux, arm64 may also be used. Defaults to the system architecture.'
linking-type:
description: 'Linking type of the binaries. Use "shared" for shared binaries and "static" for statically linked ones. Shared builds are currently only available for Windows releases. Defaults to "static".'
default: static
github-token:
description: 'Used to pull Windows builds from GyanD/codexffmpeg. Since theres a default, this is typically not supplied by the user.'
default: ${{ github.server_url == 'https://github.com' && github.token || '' }}
outputs:
ffmpeg-version:
description: 'The installed FFmpeg version'
ffmpeg-path:
description: 'Path to the FFmpeg binaries'
cache-hit:
description: 'A boolean value to indicate whether the tool cache was hit'
runs:
using: node20
main: dist/index.js