2015-05-07 04:28:34 +02:00
|
|
|
[package]
|
2015-05-29 19:30:57 +02:00
|
|
|
name = "ffmpeg"
|
2015-06-08 15:53:46 +02:00
|
|
|
version = "0.1.1"
|
2015-05-29 19:30:57 +02:00
|
|
|
|
2015-05-07 04:28:34 +02:00
|
|
|
authors = ["meh. <meh@schizofreni.co>"]
|
|
|
|
license = "WTFPL"
|
|
|
|
|
2015-05-29 19:30:57 +02:00
|
|
|
description = "Safe FFmpeg wrapper"
|
|
|
|
repository = "https://github.com/meh/rust-ffmpeg"
|
|
|
|
keywords = ["audio", "video"]
|
|
|
|
|
2015-05-15 21:28:03 +02:00
|
|
|
[features]
|
2015-09-18 06:04:25 +02:00
|
|
|
default = ["codec", "device", "filter", "format", "resampling", "software-resampling", "software-scaling"]
|
|
|
|
|
|
|
|
static = ["ffmpeg-sys/static"]
|
|
|
|
|
|
|
|
build = ["static", "ffmpeg-sys/build"]
|
|
|
|
build-gpl = ["build", "ffmpeg-sys/build-gpl"]
|
|
|
|
build-nonfree = ["build", "ffmpeg-sys/build-nonfree"]
|
|
|
|
build-version3 = ["build", "ffmpeg-sys/build-version3"]
|
2015-05-15 21:28:03 +02:00
|
|
|
|
2015-05-28 18:15:52 +02:00
|
|
|
codec = ["ffmpeg-sys/avcodec"]
|
|
|
|
device = ["ffmpeg-sys/avdevice", "format"]
|
|
|
|
filter = ["ffmpeg-sys/avfilter"]
|
|
|
|
format = ["ffmpeg-sys/avformat", "codec"]
|
|
|
|
resampling = ["ffmpeg-sys/avresample"]
|
|
|
|
postprocessing = ["ffmpeg-sys/postproc"]
|
|
|
|
software-resampling = ["ffmpeg-sys/swresample"]
|
|
|
|
software-scaling = ["ffmpeg-sys/swscale", "codec"]
|
2015-05-15 21:28:03 +02:00
|
|
|
|
2015-05-07 04:28:34 +02:00
|
|
|
[dependencies]
|
2015-05-29 19:30:57 +02:00
|
|
|
libc = "0.1"
|
2015-08-24 09:59:41 +02:00
|
|
|
bitflags = "0.3"
|
2015-05-15 21:28:03 +02:00
|
|
|
|
2015-08-03 18:52:30 +02:00
|
|
|
[dependencies.image]
|
|
|
|
version = "*"
|
|
|
|
optional = true
|
|
|
|
|
2015-05-15 21:28:03 +02:00
|
|
|
[dependencies.ffmpeg-sys]
|
2015-09-15 20:53:49 +02:00
|
|
|
version = "2.8.0"
|
2015-06-08 15:53:46 +02:00
|
|
|
|
2015-05-15 21:28:03 +02:00
|
|
|
default-features = false
|