Bump rust-ffmpeg to hopefully support rpis.
This commit is contained in:
parent
3fd91bbfae
commit
8d3a3c6433
|
@ -1,5 +1,8 @@
|
||||||
#Changelog
|
#Changelog
|
||||||
|
|
||||||
|
## bliss 0.6.11
|
||||||
|
* Bump rust-ffmpeg to 6.1.1 to fix build for raspberry pis.
|
||||||
|
|
||||||
## bliss 0.6.10
|
## bliss 0.6.10
|
||||||
* Make the `analyze` function public, for people who don't want to use
|
* Make the `analyze` function public, for people who don't want to use
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
|
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -118,7 +118,7 @@ checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bliss-audio"
|
name = "bliss-audio"
|
||||||
version = "0.6.10"
|
version = "0.6.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"adler32",
|
"adler32",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@ -410,9 +410,9 @@ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ffmpeg-next"
|
name = "ffmpeg-next"
|
||||||
version = "6.1.0"
|
version = "6.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f45d337871329d85f5aad1e3d7b09d033cd611d50f734fd6464c731fe7c769bf"
|
checksum = "4e72c72e8dcf638fb0fb03f033a954691662b5dabeaa3f85a6607d101569fccd"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 1.3.2",
|
"bitflags 1.3.2",
|
||||||
"ffmpeg-sys-next",
|
"ffmpeg-sys-next",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bliss-audio"
|
name = "bliss-audio"
|
||||||
version = "0.6.10"
|
version = "0.6.11"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
|
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -40,7 +40,7 @@ serde = ["dep:serde"]
|
||||||
# Until https://github.com/aubio/aubio/issues/336 is somehow solved
|
# 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.
|
# Hopefully we'll be able to use the official aubio-rs at some point.
|
||||||
bliss-audio-aubio-rs = "0.2.1"
|
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 }
|
ffmpeg-sys-next = { version = "6.1.0", default-features = false }
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
# `rayon` is used only by `par_mapv_inplace` in chroma.rs.
|
# `rayon` is used only by `par_mapv_inplace` in chroma.rs.
|
||||||
|
|
|
@ -1155,6 +1155,13 @@ impl<Config: AppConfigTrait> Library<Config> {
|
||||||
),
|
),
|
||||||
None => (None, None),
|
None => (None, None),
|
||||||
};
|
};
|
||||||
|
let x = vec![68, 105, 101, 32, 196, 114, 122, 116, 101, 101];
|
||||||
|
//println!("{}", String::from_utf8(x).unwrap());
|
||||||
|
println!(
|
||||||
|
"{}",
|
||||||
|
String::from_utf8(song.artist.clone().unwrap().as_bytes().to_vec()).unwrap()
|
||||||
|
);
|
||||||
|
println!("{:x?}", song.artist.clone().unwrap().as_bytes());
|
||||||
tx.execute(
|
tx.execute(
|
||||||
"
|
"
|
||||||
insert into song (
|
insert into song (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user