mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 17:14:18 +01:00
142 lines
4.5 KiB
JavaScript
142 lines
4.5 KiB
JavaScript
const Ffmpeg = require('fluent-ffmpeg')
|
|
const fs = require('fs-extra')
|
|
const Path = require('path')
|
|
const package = require('../../package.json')
|
|
const Logger = require('../Logger')
|
|
|
|
function escapeSingleQuotes(path) {
|
|
// return path.replace(/'/g, '\'\\\'\'')
|
|
return path.replace(/\\/g, '/').replace(/ /g, '\\ ').replace(/'/g, '\\\'')
|
|
}
|
|
|
|
// Returns first track start time
|
|
// startTime is for streams starting an encode part-way through an audiobook
|
|
async function writeConcatFile(tracks, outputPath, startTime = 0) {
|
|
var trackToStartWithIndex = 0
|
|
var firstTrackStartTime = 0
|
|
|
|
// Find first track greater than startTime
|
|
if (startTime > 0) {
|
|
var currTrackEnd = 0
|
|
var startingTrack = tracks.find(t => {
|
|
currTrackEnd += t.duration
|
|
return startTime < currTrackEnd
|
|
})
|
|
if (startingTrack) {
|
|
firstTrackStartTime = currTrackEnd - startingTrack.duration
|
|
trackToStartWithIndex = startingTrack.index
|
|
}
|
|
}
|
|
|
|
var tracksToInclude = tracks.filter(t => t.index >= trackToStartWithIndex)
|
|
var trackPaths = tracksToInclude.map(t => {
|
|
var line = 'file ' + escapeSingleQuotes(t.metadata.path) + '\n' + `duration ${t.duration}`
|
|
return line
|
|
})
|
|
var inputstr = trackPaths.join('\n\n')
|
|
await fs.writeFile(outputPath, inputstr)
|
|
|
|
return firstTrackStartTime
|
|
}
|
|
module.exports.writeConcatFile = writeConcatFile
|
|
|
|
|
|
async function writeMetadataFile(libraryItem, outputPath) {
|
|
var inputstrs = [
|
|
';FFMETADATA1',
|
|
`title=${libraryItem.media.metadata.title}`,
|
|
`artist=${libraryItem.media.metadata.authorName}`,
|
|
`album_artist=${libraryItem.media.metadata.authorName}`,
|
|
`date=${libraryItem.media.metadata.publishedYear || ''}`,
|
|
`description=${libraryItem.media.metadata.description || ''}`,
|
|
`genre=${libraryItem.media.metadata.genres.join(';')}`,
|
|
`performer=${libraryItem.media.metadata.narratorName || ''}`,
|
|
`encoded_by=audiobookshelf:${package.version}`
|
|
]
|
|
|
|
if (libraryItem.media.metadata.asin) {
|
|
inputstrs.push(`ASIN=${libraryItem.media.metadata.asin}`)
|
|
}
|
|
if (libraryItem.media.metadata.isbn) {
|
|
inputstrs.push(`ISBN=${libraryItem.media.metadata.isbn}`)
|
|
}
|
|
if (libraryItem.media.metadata.language) {
|
|
inputstrs.push(`language=${libraryItem.media.metadata.language}`)
|
|
}
|
|
if (libraryItem.media.metadata.series.length) {
|
|
// Only uses first series
|
|
var firstSeries = libraryItem.media.metadata.series[0]
|
|
inputstrs.push(`series=${firstSeries.name}`)
|
|
if (firstSeries.sequence) {
|
|
inputstrs.push(`series-part=${firstSeries.sequence}`)
|
|
}
|
|
}
|
|
if (libraryItem.media.metadata.subtitle) {
|
|
inputstrs.push(`subtitle=${libraryItem.media.metadata.subtitle}`)
|
|
}
|
|
|
|
if (libraryItem.media.chapters) {
|
|
libraryItem.media.chapters.forEach((chap) => {
|
|
const chapterstrs = [
|
|
'[CHAPTER]',
|
|
'TIMEBASE=1/1000',
|
|
`START=${Math.round(chap.start * 1000)}`,
|
|
`END=${Math.round(chap.end * 1000)}`,
|
|
`title=${chap.title}`
|
|
]
|
|
inputstrs = inputstrs.concat(chapterstrs)
|
|
})
|
|
}
|
|
|
|
await fs.writeFile(outputPath, inputstrs.join('\n'))
|
|
return inputstrs
|
|
}
|
|
module.exports.writeMetadataFile = writeMetadataFile
|
|
|
|
async function extractCoverArt(filepath, outputpath) {
|
|
var dirname = Path.dirname(outputpath)
|
|
await fs.ensureDir(dirname)
|
|
|
|
return new Promise((resolve) => {
|
|
var ffmpeg = Ffmpeg(filepath)
|
|
ffmpeg.addOption(['-map 0:v', '-frames:v 1'])
|
|
ffmpeg.output(outputpath)
|
|
|
|
ffmpeg.on('start', (cmd) => {
|
|
Logger.debug(`[FfmpegHelpers] Extract Cover Cmd: ${cmd}`)
|
|
})
|
|
ffmpeg.on('error', (err, stdout, stderr) => {
|
|
Logger.error(`[FfmpegHelpers] Extract Cover Error ${err}`)
|
|
resolve(false)
|
|
})
|
|
ffmpeg.on('end', () => {
|
|
Logger.debug(`[FfmpegHelpers] Cover Art Extracted Successfully`)
|
|
resolve(outputpath)
|
|
})
|
|
ffmpeg.run()
|
|
})
|
|
}
|
|
module.exports.extractCoverArt = extractCoverArt
|
|
|
|
//This should convert based on the output file extension as well
|
|
async function resizeImage(filePath, outputPath, width, height) {
|
|
return new Promise((resolve) => {
|
|
var ffmpeg = Ffmpeg(filePath)
|
|
ffmpeg.addOption(['-vf', `scale=${width || -1}:${height || -1}`])
|
|
ffmpeg.addOutput(outputPath)
|
|
ffmpeg.on('start', (cmd) => {
|
|
Logger.debug(`[FfmpegHelpers] Resize Image Cmd: ${cmd}`)
|
|
})
|
|
ffmpeg.on('error', (err, stdout, stderr) => {
|
|
Logger.error(`[FfmpegHelpers] Resize Image Error ${err} ${stdout} ${stderr}`)
|
|
resolve(false)
|
|
})
|
|
ffmpeg.on('end', () => {
|
|
Logger.debug(`[FfmpegHelpers] Image resized Successfully`)
|
|
resolve(outputPath)
|
|
})
|
|
ffmpeg.run()
|
|
})
|
|
}
|
|
module.exports.resizeImage = resizeImage
|