mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-01-11 20:10:20 +00:00
Added muxing to direct downloads
This commit is contained in:
parent
a55cf7ae8e
commit
77ed8b6d1f
1 changed files with 4 additions and 1 deletions
|
|
@ -814,7 +814,10 @@ async function getObjectById(returnData?: boolean){
|
|||
|
||||
console.log();
|
||||
for(const media of selectedMedia){
|
||||
await downloadMediaList(media as CrunchyEpMeta);
|
||||
let res = await downloadMediaList(media as CrunchyEpMeta);
|
||||
if (res) {
|
||||
await muxStreams(res.data, res.fileName);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue