btrtracks/src/common/download.js

96 lines
2.1 KiB
JavaScript
Raw Normal View History

import { spawn } from 'child_process'
2019-01-25 15:00:35 +00:00
import ffmpeg from 'fluent-ffmpeg'
2018-10-06 12:30:02 +00:00
import path from 'path'
function parseTitle (data) {
let tt = data.title
// Remove []'s from the beginning
tt = tt.replace(/^\[\w+\]\s?/i, '')
// Remove "Official Video/Audio" tag
tt = tt.replace(/\s?(?:[()[]])?Official\s?[\w]+(?:[()[]])?/i, '')
2018-10-06 12:30:02 +00:00
// Remove "Audio" tag
tt = tt.replace(/\s?(?:[()[]])Audio?(?:[()[]])/i, '')
2018-10-06 12:30:02 +00:00
// Remove "lyrics" tag
tt = tt.replace(/\s?(?:[()[]])?lyrics?\s?(?:[\w]+)?(?:[()[]])?\s?/i, '')
2018-10-06 12:30:02 +00:00
// Artist / Title split
const at = tt.split(' - ', 2)
2018-10-06 12:30:02 +00:00
let artist
let title
if (at.length > 1) {
artist = at[0]
title = tt.substring(artist.length + 3)
} else {
artist = data.artist
title = tt
}
data.title = title
data.artist = artist
return data
}
function getVideoInfo (arg) {
const yt = spawn('youtube-dl', ['--no-playlist', '-j', '-f', 'bestaudio/best', arg])
2018-10-06 12:30:02 +00:00
let output = ''
yt.stdout.on('data', function (chunk) {
output += chunk.toString('utf8')
})
return new Promise((resolve, reject) => {
yt.on('close', function () {
const ftdata = output.trim().split('\n')
2019-11-04 20:51:10 +00:00
if (ftdata.length > 1) {
const composite = []
for (const i in ftdata) {
2019-11-04 20:51:10 +00:00
let dat
try {
dat = JSON.parse(ftdata[i])
} catch (e) {
console.error(e)
continue
}
delete dat.formats
composite.push(dat)
}
return resolve(composite)
}
const data = JSON.parse(output)
2018-10-06 12:30:02 +00:00
delete data.formats
resolve(data)
})
})
}
function fetchVideo (data) {
return new Promise((resolve, reject) => {
const tempName = path.join(process.cwd(), `/tmp.yt.${data.id}.mp3`)
2019-01-26 22:35:09 +00:00
ffmpeg(data.url || data.file)
2019-01-25 15:00:35 +00:00
.audioCodec('libmp3lame')
.format('mp3')
.on('error', reject)
.on('end', function () {
2018-10-06 12:30:02 +00:00
resolve({
title: data.title,
artist: data.uploader,
url: data.webpage_url,
art: data.thumbnail,
source: tempName
})
})
2019-01-25 15:00:35 +00:00
.output(tempName)
.run()
2018-10-06 12:30:02 +00:00
})
}
2020-10-04 08:01:16 +00:00
export { parseTitle, getVideoInfo, fetchVideo }