Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro committed Sep 14, 2021
1 parent a10bfa1 commit 8de0167
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 27 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Version 0.7.0

- Bump rav1e dependency to 0.5-beta.2, which brings a new, improved scenechange algorithm.
Medium is equivalent to the old slow level, but with improvements. The fast level
also has improvements. The new slow level is a new algorithm with a higher accuracy
than the previous two algorithms.
- The `--fast-mode` CLI argument is removed in favor of a `--speed` or `-s` argument,
which takes a 0, 1, or 2 (for slow, medium, or fast). The default is 0 for slow.

## Version 0.6.0

- Bump rav1e dependency to 0.5. This should bring significant performance improvements,
Expand Down
52 changes: 27 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "av-scenechange"
version = "0.6.0"
version = "0.7.0"
authors = ["Josh Holmer <[email protected]>"]
edition = "2018"
description = "Estimates frames in a video where a scenecut would be ideal"
Expand All @@ -12,7 +12,7 @@ y4m = "0.7.0"
clap = { version = "2.33.3", optional = true }
serde = { version = "1.0.123", optional = true, features = ["derive"] }
serde_json = { version = "1.0.62", optional = true }
rav1e = { version = "0.5.0-beta", default-features = false, features = ["asm", "scenechange"] }
rav1e = { version = "0.5.0-beta.2", default-features = false, features = ["asm", "scenechange"] }


[features]
Expand Down

0 comments on commit 8de0167

Please sign in to comment.