You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did something cheap it might work for u,
on config.py
u need to import those:
from __future__ import print_function
import atexit
from os import path
from json import dumps, loads
def read_counter():
return loads(open("counter.json", "r").read()) + 1 if path.exists("counter.json") else 0
def write_counter():
with open("counter.json", "w") as f:
f.write(dumps(counter))
counter = read_counter()
atexit.register(write_counter)
and then in ur title u only need to add this
TITLE = "my title and many times i upload the content #{}".format(counter)
The problem with that is that i tried to put the name of the first clip and the count after it, but couldnt figure it out.
A numbering feature is too specific in my opinion, so I won't work on that, but feel free to add it yourself and open a PR. I'll look into adding "latest" as an option.
In next update can you add youtube video titles numbering feature n
For example gaming video 1 gaming video 2...3...4...n
also to get latest twitch clips instead of most view clips
The text was updated successfully, but these errors were encountered: