Easily stream and download audio from YouTube.
npm install -g youtube-audio-server
Or:
npm install --save youtube-audio-server
https://hub.docker.com/r/codealchemist/youtube-audio-server
IMPORTANT: To be able to search and get video metadata you need to start the app passing your Google App KEY.
Your Google App needs to have the YouTube API enabled.
Login at https://console.cloud.google.com to get this data.
To support this features, YAS should be started like this:
KEY=[YOUR-APP-KEY] yas
If you use YAS programmatically you need to ensure the KEY
environment var
is set, or since version 2.2.0 you can also set it using the setKey
method:
const yas = require('youtube-audio-server')
yas.setKey('YOUR-KEY')
To be able to run YAS on Heroku you need to install the ffmpeg buildpack:
heroku buildpacks:add https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git
Start YAS with yas
.
Just hit the server passing a YouTube video id, like:
http://yourServerAddress:port/[videoId]
For example:
http://localhost:4000/HQmmM_qwG4k
This will stream the requested video's audio.
You can play it on an HTML5 audio tag or however you like.
Other endpoints:
/cache/[videoId]
: Returns the same stream for requested audio until processing finishes. Useful to avoid multiple requests from creating zombie instances of ffmpeg. This happens in Chrome, which makes a document request first and then a media request. The document request makes ffmpeg to start processing but never finishes. Firefox properly loads the audio with just one request and allows seeking./chunk/[videoId]
: Saves mp3 file to disk and returns a stream to it. This allows data chunks to be sent to the client, which will be able to seek across the file. Enables Chrome and VLC, for example, to do seeking.
Use: http://yourServerAddress:port/get/[videoId]
Use: http://yourServerAddress:port/search/[query]/[[pageToken]]
To navigate pages you need to use pageToken
which is provided in the results on the
root level property nextPageToken
.
Default is 80.
You can easily change it by starting YAS like:
PORT=8080 yas
Or, you can set the port using args:
yas -p 8080
or yas --port 8080
YAS can also be used to easliy download audio.
In this mode, the server is not started.
Usage:
yas --id [youtube-video-id|youtube-video-url] [--file [./sample.mp3]]
With metadata:
yas --id 2zYDMN4h2hY -m
Use -m
or --metadata
to retrieve and persist metadata as ID3 tags, naming your file with the video title by default.
Saved ID3 tags:
- title
- description
- artist
- album
- comment: video URL
Other examples:
yas --id 2zYDMN4h2hY --file ~/Downloads/Music/sample.mp3
yas --id 2zYDMN4h2hY
yas --id https://www.youtube.com/watch?v=2zYDMN4h2hY
NOTE:
FILE defaults to ./[videoId].mp3
when not set.
Alternative method:
If you have a server instance running and you want to use it to download audio, you can do this:
curl [your-server-url]/[youtube-video-id] > sample.mp3
Yeah, you can also include YAS in your project and use it programatically!
const yas = require('youtube-audio-server')
// Start listener (REST API).
const port = 7331
yas.listen(port, () => {
console.log(`Listening on port http://localhost:${port}.`)
})
const yas = require('youtube-audio-server')
const id = 'HQmmM_qwG4k' // "Whole Lotta Love" by Led Zeppelin.
const file = 'whole-lotta-love.mp3'
console.log(`Downloading ${id} into ${file}...`)
yas.downloader
.setFolder('some/folder') // Optionally set a folder for downloaded content.
.onSuccess(({id, file}) => {
console.log(`Yay! Audio (${id}) downloaded successfully into "${file}"!`)
})
.onError(({ id, file, error }) => {
console.error(`Sorry, an error ocurred when trying to download ${id}`, error)
})
.download({ id, file, cache, metadata })
Params:
id
: Video ID or URL (HQmmM_qwG4k
orhttps://www.youtube.com/watch?v=HQmmM_qwG4k
)file
: Output file; defaults to video id or title whenmetadata
is truecache
: Use cachemetadata
: Retrieve and set metadata as ID3 tags
const yas = require('youtube-audio-server')
yas.get('HQmmM_qwG4k', (err, data) => {
console.log('GOT METADATA for HQmmM_qwG4k:', data || err)
})
const yas = require('youtube-audio-server')
yas.search({
query: 'led zeppelin',
page: null
},
(err, data) => {
console.log('RESULTS:', data || err)
})
To navigate pages you need to use pageToken
which is provided in the results on the
root level property data.nextPageToken
.
The key dependency for youtube-audio-server is
youtube-audio-stream,
which depends on ffmpeg
, which must be installed at system level, it's not
a node dependency!
brew install ffmpeg
sudo apt-get install ffmpeg
Just open the URL of your server instance without specifying a video id.
This will load a test page with an HTML5 audio element that will stream a test video id.
Run npm test
to lint everything using StandardJS.
To start the listener and download an audio file use npm run test-run
.
You can open the shown URL to test the REST API works as expected.
You can also use npm run test-focus
to concentrate on one linting
issue at a time with the help of standard-focus.
Enjoy!