From e011ecbf138bbad3be58527b8b9c3ade2039f38f Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Wed, 14 Feb 2024 21:24:26 -0800 Subject: [PATCH] Updated vm. --- helpers/vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/vm b/helpers/vm index 815cf0d..5e2fa42 100755 --- a/helpers/vm +++ b/helpers/vm @@ -73,7 +73,7 @@ def main(url, options): print("Error: Failed to access YouTube API. Please check your YOUTUBE_API_KEY and ensure it is valid.") if __name__ == '__main__': - parser = argparse.ArgumentParser(description='vm (video meta) extracts metadata about a video, such as the transcript and the video\'s duration. By Daniel Miessler') + parser = argparse.ArgumentParser(description='vm (video meta) extracts metadata about a video, such as the transcript and the video\'s duration. Written by Daniel Miessler.') parser.add_argument('url', nargs='?', help='YouTube video URL') parser.add_argument('--duration', action='store_true', help='Output only the duration') parser.add_argument('--transcript', action='store_true', help='Output only the transcript')