We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 693df1c commit 61005bbCopy full SHA for 61005bb
engines/pyncm/src/lib.rs
@@ -62,6 +62,7 @@ async fn fetch_song_info(id: &str, ctx: &Context) -> anyhow::Result<PyNCMRespons
62
debug!("Fetching the song information…");
63
64
let bitrate = if ctx.enable_flac { 999 } else { 320 };
65
+ // Credit: This API is provided by GD studio (music.gdstudio.xyz).
66
let url = Url::parse_with_params(
67
"https://music-api.gdstudio.xyz/api.php?types=url&source=netease",
68
&[("id", id), ("br", &bitrate.to_string())],
0 commit comments