├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── bot ├── __main__.py ├── config.py ├── database │ ├── __init__.py │ └── database.py ├── messages.py ├── plugins │ ├── 1.py │ ├── admin │ │ ├── admin.py │ │ ├── ban_user.py │ │ ├── banned_users.py │ │ ├── broadcast.py │ │ ├── broadcast_status.py │ │ ├── cancel_broadcast.py │ │ ├── status.py │ │ └── unban_user.py │ ├── help.py │ ├── manual_screenshot_1.py │ ├── mediainfo.py │ ├── sample.py │ ├── screenshot.py │ ├── set_watermark_text.py │ ├── settings.py │ ├── settings_cb.py │ ├── start.py │ ├── trim_manual_screenshots.py │ ├── trim_video.py │ └── urls.py ├── processes │ ├── __init__.py │ ├── base.py │ ├── exception.py │ ├── manual_screenshot.py │ ├── mediainfo.py │ ├── sample.py │ ├── screenshot.py │ └── trim.py ├── screenshotbot.py ├── utils │ ├── __init__.py │ ├── broadcast.py │ └── utils.py └── workers │ ├── __init__.py │ └── worker.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/README.md -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/config.py -------------------------------------------------------------------------------- /bot/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/database/__init__.py -------------------------------------------------------------------------------- /bot/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/database/database.py -------------------------------------------------------------------------------- /bot/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/messages.py -------------------------------------------------------------------------------- /bot/plugins/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/1.py -------------------------------------------------------------------------------- /bot/plugins/admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/admin.py -------------------------------------------------------------------------------- /bot/plugins/admin/ban_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/ban_user.py -------------------------------------------------------------------------------- /bot/plugins/admin/banned_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/banned_users.py -------------------------------------------------------------------------------- /bot/plugins/admin/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/broadcast.py -------------------------------------------------------------------------------- /bot/plugins/admin/broadcast_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/broadcast_status.py -------------------------------------------------------------------------------- /bot/plugins/admin/cancel_broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/cancel_broadcast.py -------------------------------------------------------------------------------- /bot/plugins/admin/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/status.py -------------------------------------------------------------------------------- /bot/plugins/admin/unban_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/admin/unban_user.py -------------------------------------------------------------------------------- /bot/plugins/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/help.py -------------------------------------------------------------------------------- /bot/plugins/manual_screenshot_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/manual_screenshot_1.py -------------------------------------------------------------------------------- /bot/plugins/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/mediainfo.py -------------------------------------------------------------------------------- /bot/plugins/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/sample.py -------------------------------------------------------------------------------- /bot/plugins/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/screenshot.py -------------------------------------------------------------------------------- /bot/plugins/set_watermark_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/set_watermark_text.py -------------------------------------------------------------------------------- /bot/plugins/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/settings.py -------------------------------------------------------------------------------- /bot/plugins/settings_cb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/settings_cb.py -------------------------------------------------------------------------------- /bot/plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/start.py -------------------------------------------------------------------------------- /bot/plugins/trim_manual_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/trim_manual_screenshots.py -------------------------------------------------------------------------------- /bot/plugins/trim_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/trim_video.py -------------------------------------------------------------------------------- /bot/plugins/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/plugins/urls.py -------------------------------------------------------------------------------- /bot/processes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/__init__.py -------------------------------------------------------------------------------- /bot/processes/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/base.py -------------------------------------------------------------------------------- /bot/processes/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/exception.py -------------------------------------------------------------------------------- /bot/processes/manual_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/manual_screenshot.py -------------------------------------------------------------------------------- /bot/processes/mediainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/mediainfo.py -------------------------------------------------------------------------------- /bot/processes/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/sample.py -------------------------------------------------------------------------------- /bot/processes/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/screenshot.py -------------------------------------------------------------------------------- /bot/processes/trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/processes/trim.py -------------------------------------------------------------------------------- /bot/screenshotbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/screenshotbot.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import Utilities, ProcessTypes 2 | -------------------------------------------------------------------------------- /bot/utils/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/utils/broadcast.py -------------------------------------------------------------------------------- /bot/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/utils/utils.py -------------------------------------------------------------------------------- /bot/workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/workers/__init__.py -------------------------------------------------------------------------------- /bot/workers/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/bot/workers/worker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odysseusmax/animated-lamp/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 2 | --------------------------------------------------------------------------------