This commit is contained in:
Jonathan Dunn 2024-03-14 14:15:59 -04:00
parent 485310661e
commit b11f6da045

View File

@ -82,3 +82,5 @@ def main():
parser.add_argument('--transcript', action='store_true',
help='Output only the transcript')
parser.add_argument("url", nargs="?", help="YouTube video URL")
args = parser.parse_args()
main_function(args.url, args)