Last active
February 15, 2024 15:59
-
-
Save Ne00n/d7ae63bdc32b5fa07231c9f7e52e830f to your computer and use it in GitHub Desktop.
yt-dlp python3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, random, os | |
reader = open('proxies.txt', 'r') | |
proxies = reader.readlines() | |
proxiesList = [] | |
for proxy in proxies: | |
proxy = proxy.replace("\n","") | |
try: | |
r = requests.head(f"http://10.0.{proxy}.1:8888", timeout=(5, 5)) | |
print(f"{proxy } is reachable") | |
proxiesList.append(proxy) | |
except: | |
print(f"{proxy } failed to connect") | |
print(f"Got {len(proxiesList)} working proxies") | |
reader = open('channels.txt', 'r') | |
Lines = reader.readlines() | |
for line in Lines: | |
line = line.replace("\n","") | |
splitted = line.split("/") | |
last = splitted[len(splitted) -1].replace("@","") | |
print(f"Running {last}") | |
os.makedirs(last, exist_ok=True) | |
os.chdir(last) | |
proxy = random.choice(proxiesList) | |
os.system(f"yt-dlp --proxy http://10.0.{proxy}.1:8888 --download-archive history.txt --embed-thumbnail -f bestaudio -x --audio-quality 320k https://www.youtube.com/@{last}") | |
os.chdir("..") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment