mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-03-11 17:45:30 +00:00
Fix issue with GUI decrypting
This commit is contained in:
parent
f204b068ea
commit
615cef700a
2 changed files with 4 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
ffmpeg: "ffmpeg.exe"
|
||||
mkvmerge: "mkvmerge.exe"
|
||||
ffprobe: "ffprobe.exe"
|
||||
mp4decrypt: "./bin/mp4decrypt"
|
||||
mp4decrypt: "mp4decrypt.exe"
|
||||
|
|
|
|||
|
|
@ -1123,6 +1123,9 @@ export default class Crunchy implements ServiceClass {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!this.cfg.bin.ffmpeg)
|
||||
this.cfg.bin = await yamlCfg.loadBinCfg();
|
||||
|
||||
let mediaName = '...';
|
||||
let fileName;
|
||||
const variables: Variable[] = [];
|
||||
|
|
|
|||
Loading…
Reference in a new issue