From 2821f7c79f8839bd9ccd85b64782e5f424b1fdc2 Mon Sep 17 00:00:00 2001 From: Daniel Boline Date: Wed, 4 Sep 2024 07:50:40 -0400 Subject: [PATCH] fix audio language selection issue --- Cargo.toml | 2 +- movie_collection_http/Cargo.toml | 2 +- movie_collection_lib/Cargo.toml | 2 +- movie_collection_lib/src/transcode_service.rs | 2 ++ transcode_lib/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7408439..f62fe01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "movie_collection_rust" -version = "0.10.45" +version = "0.10.46" authors = ["Daniel Boline "] edition = "2018" diff --git a/movie_collection_http/Cargo.toml b/movie_collection_http/Cargo.toml index 714df8b..25d1abf 100644 --- a/movie_collection_http/Cargo.toml +++ b/movie_collection_http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "movie_collection_http" -version = "0.10.45" +version = "0.10.46" authors = ["Daniel Boline "] edition = "2018" diff --git a/movie_collection_lib/Cargo.toml b/movie_collection_lib/Cargo.toml index 6084116..fbb7cf4 100644 --- a/movie_collection_lib/Cargo.toml +++ b/movie_collection_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "movie_collection_lib" -version = "0.10.45" +version = "0.10.46" authors = ["Daniel Boline "] edition = "2018" diff --git a/movie_collection_lib/src/transcode_service.rs b/movie_collection_lib/src/transcode_service.rs index 47ac006..05ee545 100644 --- a/movie_collection_lib/src/transcode_service.rs +++ b/movie_collection_lib/src/transcode_service.rs @@ -365,6 +365,8 @@ impl TranscodeService { output_file.to_string_lossy().as_ref(), "--preset", "Android 480p30", + "--audio-lang-list", + "any", ]) .kill_on_drop(true) .stdout(Stdio::piped()) diff --git a/transcode_lib/Cargo.toml b/transcode_lib/Cargo.toml index 95f688b..b577893 100644 --- a/transcode_lib/Cargo.toml +++ b/transcode_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "transcode_lib" -version = "0.10.45" +version = "0.10.46" authors = ["Daniel Boline "] edition = "2018"