Closes https://github.com/jmbannon/ytdl-sub/issues/1294 Applies entry sleep per download *after* the download is fully complete and moved to the output folder.
9 lines
169 B
Python
9 lines
169 B
Python
from enum import Enum
|
|
|
|
|
|
class PluginOperation(Enum):
|
|
DOWNLOADER = -1
|
|
MODIFY_ENTRY_METADATA = 0
|
|
MODIFY_ENTRY = 1
|
|
POST_PROCESS = 2
|
|
POST_COMPLETION = 3
|