Skip to content

Latest commit

 

History

History
82 lines (61 loc) · 2.73 KB

File metadata and controls

82 lines (61 loc) · 2.73 KB

This is project is going to be abandoned

Vidstreaming already has full cloudflare protection so it's already useless.

Todo

I still have to fix things.

  • Bypass cloudflare captcha on gogo-cdn.com
  • Add streamSB, 4anime support and more
  • Get someone to help me!

vidstreaming-api-test

Api for downloading or watching anime videos from gogo-stream.com/vidstreaming.io

CLI

Run vidstreaming --help to see more options

Usage: vidstreaming -S <name> [...options]

Options:
      --help        Show help                                                              [boolean]

      --version     Show version number                                                    [boolean]

  -S, --search      Anime to search for                                          [string] [required]

  -D, --download    Download Anime to directory.
                    (eg. "C:/Users/userXXX/Downloads")                                      [string]

  -O, --output      Output urls to txt.
                    (eg. "C:/Users/userXXX/Downloads/jujutsu.txt")                          [string]

  -R, --resolution  Output resolution - 360, 480, 720, 1080.
                    If none defaults to original quality.             [choices: 360, 480, 720, 1080]

  -E, --episodes    Values separated by commas.                                              [array]

  -A, --async       If true it will fetch the links one by one and print it.
                    Otherwise it will get all the links first and print it.                [boolean]

This will output the urls in a text file.
Example:

vidstreaming search "jujutsu kaisen" --resolution 1080 --output "jujutsu.txt"

Output:

/dir/to/txtfile/jujutsu.txt

Options

  • -D, --download - Download files in a specified path. (Downloading urls is not yet supported.)
    vidstreaming search "jujutsu kaisen" --download "/path/to/download/dir/Jujutsu_Kaisen"
  • -O, --output - Output urls into a .txt file.
    vidstreaming search "jujutsu kaisen" --output "jujutsu.txt"
  • -R, --resolution - Set the quality of the video. (eg. 360, 480...)
    vidstreaming search "jujutsu kaisen" --resolution 720
  • -E, --episodes - Get only the episodes specified. (eg. "1-10", "1 2 4")
    vidstreaming search "jujutsu kaisen" --episodes 1-10 17 21 -- [...options]
  • -A, --async - If true then it will fetch the links one by one and print it. Otherwise it will get all the links first and print it.
    vidstreaming search "jujutsu kaisen" --async
    Note: If the -D and -R options are omitted then it will log the urls to the console.
    Note: Urls order are not guaranteed in async mode.