Skip to content

Commit

Permalink
Add a manifest for ffprobe (part of ffmpeg)
Browse files Browse the repository at this point in the history
  • Loading branch information
lox committed Jan 14, 2024
1 parent 24ed520 commit 9e63eb5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ffprobe.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
description = "A multimedia stream analyzer tool used to obtain detailed information about audio and video files (part of the ffmpeg project)"
binaries = ["ffprobe"]
vars = {
"arch_": "${arch}",
}
source = "https://github.com/eugeneware/ffmpeg-static/releases/download/b${version}/ffprobe-${os}-${arch_}.gz"

on "unpack" {
rename {
from = "${root}/ffprobe-${os}-${arch_}"
to = "${root}/ffprobe"
}
}

platform "amd64" {
vars = {
"arch_": "x64",
}
}

version "5.0" "5.0.1" "6.0" {
auto-version {
github-release = "eugeneware/ffmpeg-static"
version-pattern = "b(.*)"
ignore-invalid-versions = true
}
}

0 comments on commit 9e63eb5

Please sign in to comment.