├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── stale.yml └── workflows │ ├── daily-test.yml │ ├── lint.yml │ ├── nodejs.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── .eslintrc.json ├── .gitignore ├── byte_range.js ├── captions.js ├── convert_to_mp3.js ├── cookies.js ├── discord.js ├── ffmpeg.js ├── get_info.js ├── info.json ├── progress.js ├── proxy.js ├── take_screenshot.js └── time_range.js ├── lib ├── cache.js ├── format-utils.js ├── formats.js ├── index.js ├── info-extras.js ├── info.js ├── sig.js ├── url-utils.js └── utils.js ├── package.json ├── test ├── .eslintrc.json ├── basic-info-test.js ├── download-test.js ├── files │ ├── .eslintrc.json │ ├── html5player │ │ ├── en_US-vfl0Cbn9e.js │ │ ├── en_US-vfl5aDZwb.js │ │ ├── en_US-vfl9FYC6l.js │ │ ├── en_US-vflUpjAy9.js │ │ ├── en_US-vflbHLA_P.js │ │ ├── en_US-vfljDEtYP.js │ │ ├── en_US-vflqZIm5b.js │ │ ├── en_US-vflvmwLwg.js │ │ ├── id_ID-vflA4yxG-.js │ │ ├── player-vfl8jhACg.js │ │ └── player_ias-vflJx-lDV.js │ ├── package-lock.json │ ├── package.json │ ├── refresh.js │ └── videos │ │ ├── age-restricted │ │ ├── expected-info.json │ │ ├── get_video_info │ │ ├── watch.html │ │ └── watch.json │ │ ├── chapters │ │ ├── expected-info.json │ │ └── watch.html │ │ ├── cipher │ │ ├── player_ias.vflset.js │ │ └── watch.html │ │ ├── game │ │ └── expected-info.json │ │ ├── live-future │ │ └── watch.json │ │ ├── live-now │ │ ├── dash-manifest.xml │ │ ├── expected-info.json │ │ ├── hls-manifest.m3u8 │ │ ├── player_ias.vflset.js │ │ └── watch.html │ │ ├── live-past │ │ └── watch.json │ │ ├── live-with-cc │ │ ├── dash-manifest.xml │ │ ├── hls-manifest.m3u8 │ │ ├── player_ias.vflset.js │ │ └── watch.html │ │ ├── longest-upload │ │ └── watch.html │ │ ├── music │ │ └── expected-info.json │ │ ├── no-embed │ │ └── watch.json │ │ ├── no-likes-or-dislikes │ │ └── watch.json │ │ ├── non-existent │ │ └── watch.json │ │ ├── private │ │ └── watch.json │ │ ├── regular │ │ ├── expected-info.json │ │ ├── player_ias.vflset.js │ │ ├── video.flv │ │ ├── watch.html │ │ └── watch.json │ │ ├── related-topics │ │ ├── expected-info.json │ │ └── watch.html │ │ ├── rental │ │ ├── expected-info.json │ │ └── watch.html │ │ ├── rich-thumbnails │ │ ├── expected-info.json │ │ └── watch.json │ │ └── use-backups │ │ ├── embed.html │ │ ├── expected-info.json │ │ ├── get_video_info │ │ ├── player_ias.vflset.js │ │ ├── watch.html │ │ └── watch.json ├── format-utils-test.js ├── full-info-test.js ├── html5player.json ├── info-extras-test.js ├── irl-test.js ├── nock.js ├── sig-test.js ├── url-utils-test.js └── utils-test.js ├── tsconfig.json ├── tslint.json └── typings └── index.d.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/daily-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/workflows/daily-test.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | .DS_Store 5 | .idea/* 6 | yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/.eslintrc.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/byte_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/byte_range.js -------------------------------------------------------------------------------- /example/captions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/captions.js -------------------------------------------------------------------------------- /example/convert_to_mp3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/convert_to_mp3.js -------------------------------------------------------------------------------- /example/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/cookies.js -------------------------------------------------------------------------------- /example/discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/discord.js -------------------------------------------------------------------------------- /example/ffmpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/ffmpeg.js -------------------------------------------------------------------------------- /example/get_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/get_info.js -------------------------------------------------------------------------------- /example/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/info.json -------------------------------------------------------------------------------- /example/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/progress.js -------------------------------------------------------------------------------- /example/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/proxy.js -------------------------------------------------------------------------------- /example/take_screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/take_screenshot.js -------------------------------------------------------------------------------- /example/time_range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/example/time_range.js -------------------------------------------------------------------------------- /lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/cache.js -------------------------------------------------------------------------------- /lib/format-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/format-utils.js -------------------------------------------------------------------------------- /lib/formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/formats.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/info-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/info-extras.js -------------------------------------------------------------------------------- /lib/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/info.js -------------------------------------------------------------------------------- /lib/sig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/sig.js -------------------------------------------------------------------------------- /lib/url-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/url-utils.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/basic-info-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/basic-info-test.js -------------------------------------------------------------------------------- /test/download-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/download-test.js -------------------------------------------------------------------------------- /test/files/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/.eslintrc.json -------------------------------------------------------------------------------- /test/files/html5player/en_US-vfl0Cbn9e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vfl0Cbn9e.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vfl5aDZwb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vfl5aDZwb.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vfl9FYC6l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vfl9FYC6l.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vflUpjAy9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vflUpjAy9.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vflbHLA_P.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vflbHLA_P.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vfljDEtYP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vfljDEtYP.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vflqZIm5b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vflqZIm5b.js -------------------------------------------------------------------------------- /test/files/html5player/en_US-vflvmwLwg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/en_US-vflvmwLwg.js -------------------------------------------------------------------------------- /test/files/html5player/id_ID-vflA4yxG-.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/id_ID-vflA4yxG-.js -------------------------------------------------------------------------------- /test/files/html5player/player-vfl8jhACg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/player-vfl8jhACg.js -------------------------------------------------------------------------------- /test/files/html5player/player_ias-vflJx-lDV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/html5player/player_ias-vflJx-lDV.js -------------------------------------------------------------------------------- /test/files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/package-lock.json -------------------------------------------------------------------------------- /test/files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/package.json -------------------------------------------------------------------------------- /test/files/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/refresh.js -------------------------------------------------------------------------------- /test/files/videos/age-restricted/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/age-restricted/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/age-restricted/get_video_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/age-restricted/get_video_info -------------------------------------------------------------------------------- /test/files/videos/age-restricted/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/age-restricted/watch.html -------------------------------------------------------------------------------- /test/files/videos/age-restricted/watch.json: -------------------------------------------------------------------------------- 1 | )]}' 2 | {"reload":"now"} -------------------------------------------------------------------------------- /test/files/videos/chapters/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/chapters/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/chapters/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/chapters/watch.html -------------------------------------------------------------------------------- /test/files/videos/cipher/player_ias.vflset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/cipher/player_ias.vflset.js -------------------------------------------------------------------------------- /test/files/videos/cipher/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/cipher/watch.html -------------------------------------------------------------------------------- /test/files/videos/game/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/game/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/live-future/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-future/watch.json -------------------------------------------------------------------------------- /test/files/videos/live-now/dash-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-now/dash-manifest.xml -------------------------------------------------------------------------------- /test/files/videos/live-now/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-now/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/live-now/hls-manifest.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-now/hls-manifest.m3u8 -------------------------------------------------------------------------------- /test/files/videos/live-now/player_ias.vflset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-now/player_ias.vflset.js -------------------------------------------------------------------------------- /test/files/videos/live-now/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-now/watch.html -------------------------------------------------------------------------------- /test/files/videos/live-past/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-past/watch.json -------------------------------------------------------------------------------- /test/files/videos/live-with-cc/dash-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-with-cc/dash-manifest.xml -------------------------------------------------------------------------------- /test/files/videos/live-with-cc/hls-manifest.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-with-cc/hls-manifest.m3u8 -------------------------------------------------------------------------------- /test/files/videos/live-with-cc/player_ias.vflset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-with-cc/player_ias.vflset.js -------------------------------------------------------------------------------- /test/files/videos/live-with-cc/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/live-with-cc/watch.html -------------------------------------------------------------------------------- /test/files/videos/longest-upload/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/longest-upload/watch.html -------------------------------------------------------------------------------- /test/files/videos/music/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/music/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/no-embed/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/no-embed/watch.json -------------------------------------------------------------------------------- /test/files/videos/no-likes-or-dislikes/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/no-likes-or-dislikes/watch.json -------------------------------------------------------------------------------- /test/files/videos/non-existent/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/non-existent/watch.json -------------------------------------------------------------------------------- /test/files/videos/private/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/private/watch.json -------------------------------------------------------------------------------- /test/files/videos/regular/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/regular/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/regular/player_ias.vflset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/regular/player_ias.vflset.js -------------------------------------------------------------------------------- /test/files/videos/regular/video.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/regular/video.flv -------------------------------------------------------------------------------- /test/files/videos/regular/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/regular/watch.html -------------------------------------------------------------------------------- /test/files/videos/regular/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/regular/watch.json -------------------------------------------------------------------------------- /test/files/videos/related-topics/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/related-topics/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/related-topics/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/related-topics/watch.html -------------------------------------------------------------------------------- /test/files/videos/rental/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/rental/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/rental/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/rental/watch.html -------------------------------------------------------------------------------- /test/files/videos/rich-thumbnails/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/rich-thumbnails/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/rich-thumbnails/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/rich-thumbnails/watch.json -------------------------------------------------------------------------------- /test/files/videos/use-backups/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/use-backups/embed.html -------------------------------------------------------------------------------- /test/files/videos/use-backups/expected-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/use-backups/expected-info.json -------------------------------------------------------------------------------- /test/files/videos/use-backups/get_video_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/use-backups/get_video_info -------------------------------------------------------------------------------- /test/files/videos/use-backups/player_ias.vflset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/use-backups/player_ias.vflset.js -------------------------------------------------------------------------------- /test/files/videos/use-backups/watch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/files/videos/use-backups/watch.html -------------------------------------------------------------------------------- /test/files/videos/use-backups/watch.json: -------------------------------------------------------------------------------- 1 | )]}' 2 | {"reload":"now"} -------------------------------------------------------------------------------- /test/format-utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/format-utils-test.js -------------------------------------------------------------------------------- /test/full-info-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/full-info-test.js -------------------------------------------------------------------------------- /test/html5player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/html5player.json -------------------------------------------------------------------------------- /test/info-extras-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/info-extras-test.js -------------------------------------------------------------------------------- /test/irl-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/irl-test.js -------------------------------------------------------------------------------- /test/nock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/nock.js -------------------------------------------------------------------------------- /test/sig-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/sig-test.js -------------------------------------------------------------------------------- /test/url-utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/url-utils-test.js -------------------------------------------------------------------------------- /test/utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/test/utils-test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/node-ytdl-core/HEAD/typings/index.d.ts --------------------------------------------------------------------------------