Skip to content

Instantly share code, notes, and snippets.

@gingerhot
Forked from superbarne/yt-stream
Created August 17, 2016 08:33
Show Gist options
  • Save gingerhot/b9f24b93dae033c8b2376bbda4e048a9 to your computer and use it in GitHub Desktop.
Save gingerhot/b9f24b93dae033c8b2376bbda4e048a9 to your computer and use it in GitHub Desktop.
Streams youtube videos directly to the browser like a proxy
var ytdl = require('ytdl')
function stream(req,res,id) {
var dl = ytdl('http://www.youtube.com/watch?v='+id, {
quality:43 //poor quality leave empty for good quality
})
dl.pipe(res);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment