https://github.com/zordius/youtube_dl
A nodejs command line tool to download youtube playlist into mp3 files
https://github.com/zordius/youtube_dl
Last synced: about 1 year ago
JSON representation
A nodejs command line tool to download youtube playlist into mp3 files
- Host: GitHub
- URL: https://github.com/zordius/youtube_dl
- Owner: zordius
- Created: 2014-08-12T09:16:30.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-07T08:45:25.000Z (almost 12 years ago)
- Last Synced: 2024-10-06T03:20:19.104Z (over 1 year ago)
- Language: JavaScript
- Size: 230 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
youtube_dl
==========
A nodejs command line tool to download youtube playlist into mp3 files
How to use (for developers)
---------------------------
First, you should create a google API project with a project key.
Then...
1) fetch playlist json data.
```
node playlist.js project_key play_list_id > playlist.json
```
2) download files by json data
```
node download.js ./playlist.json
```
3) convert mp4 files to mp3 files (ffmpeg required)
```
for F in *.mp4; do ffmpeg -i "$F" -vn -acodec libmp3lame "${F%.mp4}.mp3"; done
```
How to download (for none developers)
-------------------------------------
1. install nodejs from http://nodejs.org/
2.
Why this tool?
--------------
I created this to download my youtube playlist: 初音系列-名曲影片收錄計劃
https://www.youtube.com/playlist?list=PLd9h8qIvou__eaEQ6XFHR6Z3DmDVfz_r_
The name of file will fit into my notes, and then I can play these mp3 files.