mirror of
https://github.com/cquest/tootbot.git
synced 2025-02-23 18:58:36 +00:00
Compare commits
2 Commits
79f922af24
...
887474a1f3
Author | SHA1 | Date | |
---|---|---|---|
|
887474a1f3 | ||
|
fba2318929 |
@ -17,7 +17,11 @@ import requests
|
|||||||
|
|
||||||
def unredir(redir):
|
def unredir(redir):
|
||||||
r = requests.get(redir, allow_redirects=False)
|
r = requests.get(redir, allow_redirects=False)
|
||||||
|
redir_count = 0
|
||||||
while r.status_code in {301, 302}:
|
while r.status_code in {301, 302}:
|
||||||
|
redir_count = redir_count + 1
|
||||||
|
if redir_count > 10:
|
||||||
|
break
|
||||||
if 'http' not in r.headers.get('Location'):
|
if 'http' not in r.headers.get('Location'):
|
||||||
redir = re.sub(r'(https?://.*)/.*', r'\1', redir) + \
|
redir = re.sub(r'(https?://.*)/.*', r'\1', redir) + \
|
||||||
r.headers.get('Location')
|
r.headers.get('Location')
|
||||||
@ -286,7 +290,7 @@ else:
|
|||||||
c = c.replace(l, '')
|
c = c.replace(l, '')
|
||||||
video = redir
|
video = redir
|
||||||
print('video:', video)
|
print('video:', video)
|
||||||
subprocess.run('rm -f out.mp4; yt-dlp -N 8 -o out.mp4 --recode-video mp4 --no-playlist %s' %
|
subprocess.run('rm -f out.mp4; yt-dlp -N 8 -o out.mp4 --recode-video mp4 --no-playlist %s --max-filesize 100M' %
|
||||||
(video,), shell=True, capture_output=False)
|
(video,), shell=True, capture_output=False)
|
||||||
print("received")
|
print("received")
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user