A lightning fast package to scrape YouTube search results. This was made for Discord Bots.
npm install scrape-youtube --save
import { youtube } from 'scrape-youtube';
// const { youtube } = require('scrape-youtube');
youtube.search('Short Change Hero').then((results) => {
// Unless you specify a custom type you will only receive 'video' results
console.log(results.videos);
});
// or
const { videos } = await youtube.search('Short Change Hero');
Supported types are: video
, live
, movie
, channel
, playlist
and any
.
These types use the sp
parameter. If you pass your own sp
value it will overwrite the types. See the "custom filters" section for more information.
youtube.search('lofi hip hop beats to relax/study to', { type: 'live' }).then((results) => {
console.log(results.streams);
});
Please see the examples directory for examples on what data you will receive from each search.
Your IDE should have autocompletion that works with the interface files, but these are here just in case.
If you want help using this in Discord Bot, please visit the wiki page for TS/JS examples.
Please note that the "videos" listed in playlist responses will only contain 1-2 items. This is what is available from the search results.
If you wish to load an entire playlist, consider using ytdl-core.
You can pass { sp: 'ABC' }
as the second parameter to use custom filters like upload date, duration, features ect.
You will need to fetch the SP parameter yourself from youtube. Please see this image for an example.
You can pass { request: { } }
as the second parameter to use a proxy, custom headers, agents ect.
See http.request for more information.
const options = {
type: 'video',
request: {
headers: {
Cookie: 'PREF=f2=8000000',
'Accept-Language': 'de'
}
}
};
youtube.search('Poets of the fall', options);
For example, using Cookie: 'PREF=f2=8000000'
will enable restricted mode to filter out videos with bad language or adult themes.
Additionally, 'Accept-Language': 'de'
will load YouTube in German, sometimes resulting in different titles and content responses.
You can use ytdl-core by fent to load extra information like exact upload dates,
full descriptions, like/dislike ratio, video ads ect.
Please see this example in the wiki to see how.
As mentioned in issue #57 some channels appear to have the subscriber count hidden. In this case the package will default to 0.
Channel handles will be used if available. Some channels do not have handles, if this is the case the channel link will use the old ID, EG: /channel/12345
vs /@user
I recommend sticking to the ID as handles are unreliable.
any
types.This project was made by Kain (ksir.pw) Feel free to contact me if you have any trouble with this package.
Contributions, issues and feature requests are welcome! Feel free to check issues page.
Give a ⭐️ if this project helped you!
Copyright © 2018 Kain (ksir.pw). This project is MIT licensed.