-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Instance changed to esmailelbob.xyz bc official one was breaking (likely due to scraping/botting protection) Configurable rate-limit added - applies to downloader and scraper Signed-off-by: nanometer5088 <[email protected]>
- Loading branch information
nanometer5088
committed
Jun 24, 2023
1 parent
f951ce5
commit 5a7ba85
Showing
4 changed files
with
20 additions
and
23 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# Do not change anything here | ||
APP = { | ||
"name": "CLI TikTok", | ||
"version": 0.85 | ||
"version": 0.86 | ||
} | ||
|
||
|
||
# Here are the app settings. You are free to configure this field | ||
OPTIONS = { | ||
# This controls the Proxitok instance that will be scraped to obtain the URLs. | ||
"proxitok_instance": "https://proxitok.pabloferreiro.es", | ||
"proxitok_instance": "https://proxitok.esmailelbob.xyz", | ||
|
||
# This handles the command used to playback videos. It's heavily recommended to use MPV | ||
# Make sure your player can launch through the CLI and exits after playback | ||
"player_command": "mpv" | ||
"player_command": "mpv", | ||
|
||
# This is the wait time in seconds. It helps Tiktok and Proxitok don't ratelimit the user | ||
# It applies to the scraping and downloading | ||
"ratelimit": 5 | ||
} |
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
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