From 14808a4780801dc877a37fed4e8ef8a2370fab66 Mon Sep 17 00:00:00 2001 From: George Mallard Date: Sun, 11 Feb 2024 11:08:35 -0600 Subject: [PATCH] Update fabric.py to support YouTube Transcripts Added cli option --youtube -y that invokes the transcript function in utils.py with the video id specified on the command line --- client/fabric/fabric.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/client/fabric/fabric.py b/client/fabric/fabric.py index 315ef78..4cbc2d6 100755 --- a/client/fabric/fabric.py +++ b/client/fabric/fabric.py @@ -1,4 +1,4 @@ -from .utils import Standalone, Update, Setup +from .utils import Standalone, Update, Setup, Transcribe import argparse import sys import os @@ -42,6 +42,11 @@ def main(): parser.add_argument( "--listmodels", help="List all available models", action="store_true" ) + parser.add_argument( + "--youtube", "-y", help="video id for YouTube transcript" + ) + + args = parser.parse_args() home_holder = os.path.expanduser("~") @@ -79,7 +84,10 @@ def main(): if args.text is not None: text = args.text else: - text = standalone.get_cli_input() + if args.youtube is None: + text = standalone.get_cli_input() + else: + text = Transcribe.youtube(args.youtube) if args.stream: standalone.streamMessage(text) else: