Av1an/av1an-cli/Cargo.toml
redzic 34d991d06d
Delegate chunk starts/finishes to debug log level, other logging changes (#412)
* Rename `--logging` to `--log-file` (`-l` shorthand still works)
* Introduce new `--log-level` option to set the log level filter

This change makes `--verbose` not log chunk starts and finishes, and
that information is not logged in the log file either unless
`--log-level=debug` is set. By default, `--log-level` is set to `info`.

The `debug` log level also logs the rav1e scenechange decision info
for each frame.
2021-11-18 14:06:50 -06:00

39 lines
952 B
TOML

[package]
name = "av1an-cli"
version = "0.2.1-2"
authors = ["Zen <master_of_zen@protonmail.com>"]
description = """
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding [Command line library]
"""
repository = "https://github.com/master-of-zen/Av1an"
keywords = ["video"]
categories = ["command-line-utilities"]
license = "GPL-3.0"
edition = "2018"
[dependencies]
structopt = "0.3.22"
shlex = "1.0.0"
ctrlc = "3.1.9"
path_abs = "0.5.1"
anyhow = "1.0.42"
av1an-core = { path = "../av1an-core", version = "0.2.0" }
thiserror = "1.0.30"
once_cell = "1.8.0"
ansi_term = "0.12.1"
[dependencies.flexi_logger]
version = "0.19.6"
default-features = false
features = ["colors"]
[build-dependencies.vergen]
version = "5"
default-features = false
features = ["git", "build", "rustc", "cargo"]
[dependencies.ffmpeg-next]
version = "4.4.0"
[features]
ffmpeg_static = ["ffmpeg-next/static", "ffmpeg-next/build"]