diff options
author | Anthony Wang | 2023-05-31 16:48:00 -0500 |
---|---|---|
committer | Anthony Wang | 2023-05-31 16:48:00 -0500 |
commit | 30934b6326fded3db0c8181164522b4661ca4731 (patch) | |
tree | c06e98089daec4345ef0dfd81ec1ef5dfb54f8cc | |
parent | 71b2bda6e0d29bafe8257d5c3a497dbc12e2b9c3 (diff) |
Add totally useful comments
-rw-r--r-- | main.py | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -3,18 +3,34 @@ import re import subprocess import sys import urllib.request +# NO EXTERNAL DEPENDENCIES YAY +# Wait does mpv count??? +# Gimme a video ID cur = sys.argv[1] while True: + # First start mpv in the background + # Make sure mpv doesn't take in any input + # Also enable subtitles because why not proc = subprocess.Popen(['mpv', '--no-video', '--no-input-default-bindings', '--slang=zh-CN', 'https://www.bilibili.com/video/' + cur]) try: + # I could use requests... + # Nope, external dependencies suck, so enjoy this abomination body = gzip.decompress(urllib.request.urlopen('https://www.bilibili.com/video/' + cur).read()).decode('utf-8') + # Sometimes I forget what I'm even listening to + # I WILL parse HTML with regex, you can't stop me print(cur, re.search('<title data-vue-meta="true">(.*?)<', body).group(1)) + # Get recommended stuff rec = [ (re.search('/video/(.*?)/', line).group(1), re.search('title="(.*?)"', line).group(1)) for line in body.split('\n') if 'recommend_more' in line ] + # Print it out the smart way! print(*enumerate(rec), sep='\n') + # Choose a recommended video + # If you don't like any, just stop the app, burn your computer, and try again cur = rec[int(input())][0] + print(cur) finally: + # Kill mpv with fire because sometimes it likes the music too much and refuses to stop if you ask nicely proc.kill() |