diff --git a/build.sh b/build.sh index a631105..49d9044 100755 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ VERSION=8 MINOR=3 PATCH= -EXTRAVERSION="-rc6" +EXTRAVERSION="-rc7" NOTES="(#308 #309 #310)" BRANCH="dev" diff --git a/pyproject.toml b/pyproject.toml index 9e389e1..1fd55be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pytubefix" -version = "8.3-rc6" +version = "8.3-rc7" authors = [ { name="Juan Bindez", email="juanbindez780@gmail.com" }, ] diff --git a/pytubefix/cli.py b/pytubefix/cli.py index 3399ae6..4d1dd24 100644 --- a/pytubefix/cli.py +++ b/pytubefix/cli.py @@ -341,6 +341,10 @@ def main(): oauth = True cache = True + print("Loading video...") + youtube = YouTube(args.url, use_oauth=oauth, allow_oauth_cache=cache) + _perform_args_on_youtube(youtube, args) + else: print("Loading video...") youtube = YouTube(args.url, use_oauth=oauth, allow_oauth_cache=cache) diff --git a/pytubefix/version.py b/pytubefix/version.py index 79e3130..d09b6f3 100644 --- a/pytubefix/version.py +++ b/pytubefix/version.py @@ -1,4 +1,4 @@ -__version__ = "8.3-rc6" +__version__ = "8.3-rc7" if __name__ == "__main__": print(__version__) \ No newline at end of file