Skip to content

Commit

Permalink
feat(playback): use a subset of symphonia
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Sep 3, 2023
1 parent 0d6435b commit e6307f5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 83 deletions.
81 changes: 1 addition & 80 deletions Cargo.lock

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

12 changes: 9 additions & 3 deletions anni-playback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,24 @@ reqwest = { version = "0", features = [
"rustls-tls",
], default-features = false }
# symphonia = { version = "0.5.2", features = ["all"] }
symphonia = { git = "https://github.com/erikas-taroza/Symphonia", branch = "mp4-opus-improvements", features = [
"all",
symphonia = { git = "https://github.com/erikas-taroza/Symphonia", branch = "mp4-opus-improvements", default-features = false, features = [
# codecs
"aac",
"flac",
"vorbis",
# formats
"ogg",
] }
symphonia-core = { git = "https://github.com/erikas-taroza/Symphonia", branch = "mp4-opus-improvements" }
crossbeam = { version = "0.8.2", features = ["crossbeam-channel"] }
rubato = "0.12.0"
rangemap = "1.3.0"
arrayvec = "0.7.2"
ebur128 = "0.1.7"
anyhow = "1.0.69"
anyhow.workspace = true
lazy_static = "1.4.0"
audiopus = { git = "https://github.com/ProjectAnni/audiopus" }
log.workspace = true

[dev-dependencies]
# used by tui example
Expand Down

0 comments on commit e6307f5

Please sign in to comment.