Merge pull request #71 from Polochon-street/bump-ffmpeg-rpi
Some checks failed
Rust / build-test-lint-linux (pull_request) Has been cancelled
Rust / Windows - build, test and lint (https://www.gyan.dev/ffmpeg/builds/ffmpeg-release-full-shared.7z, latest) (pull_request) Has been cancelled

Bump rust-ffmpeg to hopefully support rpis.
This commit is contained in:
Polochon-street 2024-01-03 21:57:10 +01:00 committed by GitHub
commit 44f79153ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,8 @@
#Changelog
## bliss 0.6.11
* Bump rust-ffmpeg to 6.1.1 to fix build for raspberry pis.
## bliss 0.6.10
* Make the `analyze` function public, for people who don't want to use
ffmpeg

6
Cargo.lock generated
View File

@ -118,7 +118,7 @@ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
[[package]]
name = "bliss-audio"
version = "0.6.10"
version = "0.6.11"
dependencies = [
"adler32",
"anyhow",
@ -410,9 +410,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
[[package]]
name = "ffmpeg-next"
version = "6.1.0"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f45d337871329d85f5aad1e3d7b09d033cd611d50f734fd6464c731fe7c769bf"
checksum = "4e72c72e8dcf638fb0fb03f033a954691662b5dabeaa3f85a6607d101569fccd"
dependencies = [
"bitflags 1.3.2",
"ffmpeg-sys-next",

View File

@ -1,6 +1,6 @@
[package]
name = "bliss-audio"
version = "0.6.10"
version = "0.6.11"
build = "build.rs"
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
edition = "2021"
@ -40,7 +40,7 @@ serde = ["dep:serde"]
# Until https://github.com/aubio/aubio/issues/336 is somehow solved
# Hopefully we'll be able to use the official aubio-rs at some point.
bliss-audio-aubio-rs = "0.2.1"
ffmpeg-next = "6.1.0"
ffmpeg-next = "6.1.1"
ffmpeg-sys-next = { version = "6.1.0", default-features = false }
log = "0.4.17"
# `rayon` is used only by `par_mapv_inplace` in chroma.rs.