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或关注我们的公众号极客氢云获取最新地址