Install dependencies:
pip install inquirer==3.4.0
Or, in general, save the requirements.txt
file and run:
pip install -r requirements.txt
Install dependencies:
pip install inquirer==3.4.0
Or, in general, save the requirements.txt
file and run:
pip install -r requirements.txt
import subprocess | |
filtergraph_option = r'"drawtext=text=\'%{pts\:hms\}\':fontsize=48:fontcolor=white:box=1:boxborderw=6:[email protected]:x=(w-text_w)/2:y=h-text_h-20"' | |
# filtergraph_option = '"drawtext=text=\'%{pts\\:hms\\}\':fontsize=48:fontcolor=white:box=1:boxborderw=6:[email protected]:x=(w-text_w)/2:y=h-text_h-20"' | |
file_name = input('File: ') | |
if file_name: | |
try: | |
subprocess.run(f'ffplay -i "{file_name}" -vf {filtergraph_option}') | |
except Exception as e: |
// ==UserScript== | |
// @name Auto Claim Twitch Channel Points (Interval) | |
// @namespace http://tampermonkey.net/ | |
// @version 2.0.0 | |
// @description Auto Claim Twitch Channel Points | |
// @author https//github.com/mikeyaworski | |
// @match https://www.twitch.tv/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv | |
// @grant none | |
// ==/UserScript== |
// ==UserScript== | |
// @name Auto Claim Twitch Channel Points (Mutation Observer) | |
// @namespace http://tampermonkey.net/ | |
// @version 2.0.0 | |
// @description Auto Claim Twitch Channel Points | |
// @author https//github.com/mikeyaworski | |
// @match https://www.twitch.tv/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv | |
// @grant none | |
// ==/UserScript== |