Skip to content

Commit

Permalink
Do not set audio track id. Set audio name
Browse files Browse the repository at this point in the history
  • Loading branch information
core1024 committed Jan 28, 2025
1 parent 9e1c06c commit 82a0b15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/stremio_app/stremio_player/player.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,11 @@ fn create_shareable_mpv(window_handle: HWND) -> Arc<Mpv> {
}
set_property!("wid", window_handle as i64);
set_property!("title", "Stremio");
set_property!("audio-client-name", "Stremio");
set_property!("terminal", "yes");
set_property!("msg-level", "all=no,cplayer=debug");
set_property!("quiet", "yes");
set_property!("hwdec", "auto");
// FIXME: very often the audio track isn't selected when using "aid" = "auto"
set_property!("aid", "1");
Ok(())
});
Arc::new(mpv.expect("cannot build MPV"))
Expand Down

0 comments on commit 82a0b15

Please sign in to comment.