Hello! I am new to N_m3u8DL-RE and I am getting a lot of errors. Video download is fine but when it comes to audio it goes crazy and it says, "Response status code does not indicate success: 429 (Too Many Requests)" 40 times. When I use cmd prompt it gives me the error but in powershell it works fine downloading it individually. mkvtoolvix is in that folder as well.

The code to download urls.txt:

chcp 65001
@echo off
setlocal enabledelayedexpansion

rem 定義輸入文件和輸出目錄
set "input_file=urls.txt"
set "output_dir=downloads"

rem 檢查輸出目錄是否存在,如果不存在則創建
if not exist "%output_dir%" mkdir "%output_dir%"

rem 讀取urls.txt文件的每一行
for /f "tokens=1,* delims=-" %%a in (%input_file%) do (
set "filename=%%a"
set "url=%%b"

rem 使用N_m3u8DL下載
echo Downloading: !url!
N_m3u8DL-RE -H "Origin: https://www.hkanime.com.hk" -H "Referer:https://www.hkanime.com.hk/" -H "By:8964" "!url!" --thread-count 9999999 -sa all -sv all -ss all -M format=mkv:muxer=mkvmerge --save-name "!filename!"

rem 你可以根據需要修改N_m3u8DL命令來適應特定需求
)

echo Download completed.
pause