Disney+ Audio Downloader

Download audio from Disney+

< 腳本Disney+ Audio Downloader的回應

評論:普通 - 腳本能使用,但有一些問題

§
發表於:2024-06-04

I have a fix for the infinite-downloads on shows that contain "Audio Description" tracks that worked for me.

In the `download` function where it's iterating over `document.audios` with a forEach, add another check to exclude audio files that contain "Audio Description" (or possibly the equivalent in the language you're downloading)

Replacing the line:
if(audio.LOCALIZED && Object.values(audio.LOCALIZED.renditions).includes(langname)) {

With:
if((audio.NAME.indexOf("[Audio Description]")=="-1") && audio.LOCALIZED && Object.values(audio.LOCALIZED.renditions).includes(langname)) {



Other fixes I've seen tried to filter out these files but I believe they were still triggering the download. This fix included previously mentioned fixes for the issue.

發表回覆

登入以回覆

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址