Greasy Fork is available in English.
Download audio from Disney+
< 脚本 Disney+ Audio Downloader 的反馈
Same i am trying to get encanto in mandarin and maori so i can make 5.1 seperations
Same with the Greek audio in all the movies / series, while it worked great before.
Found it! It seems your problem is similar to the issue we had with Greek audio. The script checks the langname against the LOCALIZED.renditions list to find the right audio track. If a language isn’t listed exactly as in renditions, the script won’t detect it, even if the platform serves it.
For Maori (mi) or Mandarin (zh), you can modify the download() function in the script.
Replace this line:
if(audio.LOCALIZED && Object.values(audio.LOCALIZED.renditions).includes(langname)) {
With:
if(audio.LOCALIZED && (Object.values(audio.LOCALIZED.renditions).includes(langname) || audio.LANGUAGE === "mi" || audio.LANGUAGE === "zh")) {
I can't download the Maori or Mandarin dub of Encanto, even though everything else seems to work. What could be the problem?