Browser Youtube Downloader
This library is a tiny wrapper around the ytdl-core library to make it work in the browser.
Other methods than .getInfo()
are not tested. But we discourage using them in the browser.
We don't care about bugs and issues, do what you want. This library is just a proof of concept.
Have fun!
Explanations
In order to make ytdl-core work in the browser, we use two steps:
- We browserify the source code
- We use proxyquireify to mock miniget and m3u8stream to bypass CORS errors by YouTube.
Usage
Here is an example usage. You can replace /dist/index.js
with the path to the library's
entry file.
... ...
Customize
This is the source code of the library:
; ;;// We import the library so it cached before using proxyquire; module.exports =;
You are very welcomed to hack the settings (especially with option proxyquireStubs
).
For instance, if you want to use a custom implementation of the miniget library:
const ytdl = window proxyUrl: ... proxyquireStubs: { // Your custom mock of miniget(...) } { // Your custom mock of m3u8stream(...) }