22 lines
488 B
TOML
22 lines
488 B
TOML
[package]
|
|
name = "convertis-ffmpeg-audio"
|
|
build = "../../plugin-build.rs"
|
|
version = "0.1.0"
|
|
description = "FFmpeg audio plugin for Convertis"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[package.metadata.convertis]
|
|
id = "ffmpeg-audio"
|
|
api-version = 2
|
|
debian-dependencies = ["ffmpeg"]
|
|
rpm-dependencies = ["/usr/bin/ffmpeg", "/usr/bin/ffprobe"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
convertis-plugin-api.workspace = true
|