type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| # Batch YouTube Subtitle Downloader | |
| # A PowerShell script for downloading subtitles from multiple YouTube videos using yt-dlp | |
| # | |
| # Author: exoticknight | |
| # Version: 1.0 | |
| # Requirements: yt-dlp must be installed and available in PATH | |
| # | |
| # ============================================================================= | |
| # DESCRIPTION | |
| # ============================================================================= |
| // const arr = [ | |
| // [1,2], | |
| // [4,5], | |
| // [6,8] | |
| // ] | |
| // cartesianProduct(arr) | |
| // [1, 4, 6] | |
| // [2, 4, 6] | |
| // [1, 5, 6] | |
| // [2, 5, 6] |
| import urllib2 | |
| import json | |
| raw_iplist= "193.92.133.35|74.125.131.34" | |
| new_iplist = list() | |
| not_iplist = list() | |
| err_iplist = list() | |
| for ip in raw_iplist.split("|"): |