obs-portal/api/tools/process_track.py

47 lines
1.2 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
import argparse
import logging
import asyncio
2021-11-04 17:13:24 +00:00
from obs.api.db import connect_db
2021-11-04 17:13:24 +00:00
from obs.api.app import app
2021-11-14 22:42:02 +00:00
from obs.api.process import process_tracks, process_tracks_loop
log = logging.getLogger(__name__)
async def main():
logging.basicConfig(level=logging.DEBUG, format="%(levelname)s: %(message)s")
parser = argparse.ArgumentParser(
description="processes a single track for use in the portal, "
"using the obs.face algorithms"
)
parser.add_argument(
2021-11-04 17:13:24 +00:00
"--loop-delay",
action="store",
2021-11-04 17:13:24 +00:00
type=int,
default=10,
help="delay between loops, if no track was found in the queue (polling)",
)
parser.add_argument(
2021-11-04 17:13:24 +00:00
"tracks",
metavar="ID_OR_SLUG",
nargs="*",
help="ID or slug of tracks to process, if not passed, the queue is processed in a loop",
)
args = parser.parse_args()
async with connect_db(app.config.POSTGRES_URL, app.config.POSTGRES_POOL_SIZE, app.config.POSTGRES_MAX_OVERFLOW):
2021-11-14 22:42:02 +00:00
if args.tracks:
await process_tracks(args.tracks)
else:
await process_tracks_loop(args.loop_delay)
if __name__ == "__main__":
asyncio.run(main())