blob: 527f67d0d6a77a353587321de935005c054401c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
const fs = require('fs')
const fetch = require('node-fetch')
const promisifyProcess = require('./promisify-process')
const tempy = require('tempy')
const { spawn } = require('child_process')
const { promisify } = require('util')
const writeFile = promisify(fs.writeFile)
const rename = promisify(fs.rename)
function makeHTTPDownloader() {
return function(arg, out) {
return fetch(arg)
.then(response => response.buffer())
.then(buffer => writeFile(out, buffer))
}
}
function makeYouTubeDownloader() {
return function(arg, out) {
const tempDir = tempy.directory()
const opts = [
'--extract-audio',
'--audio-format', 'wav',
'--output', tempDir + '/dl.%(ext)s',
arg
]
return promisifyProcess(spawn('youtube-dl', opts), false)
.then(() => rename(tempDir + '/dl.wav', out))
}
}
module.exports = {makeHTTPDownloader, makeYouTubeDownloader}
|