Merge tracks with codec copy'

This commit is contained in:
advplyr 2021-09-09 05:10:55 -05:00
parent 299fc95c78
commit 394d312282
5 changed files with 49 additions and 21 deletions

View file

@ -28,6 +28,14 @@ class Download {
}
}
get includeMetadata() {
return !!this.options.includeMetadata
}
get includeCover() {
return !!this.options.includeCover
}
get mimeType() {
if (this.ext === '.mp3' || this.ext === '.m4b' || this.ext === '.m4a') {
return 'audio/mpeg'