bililive-cli 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,7 +23,7 @@
23
23
  ffmpegPath: "ffmpeg.exe", // ffmpeg二进制路径
24
24
  ffprobePath: "ffprobe.exe", // ffprobe二进制路径
25
25
  danmakuFactoryPath: "DanmakuFactory.exe", // DanmakuFactory二进制路径
26
- logPath: "main.log", // log文件路径
26
+ logPath: "main.log", // log文件路径,绝对路径
27
27
  }
28
28
  ```
29
29
 
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var require$$1 = require('node:util');
4
- var require$$1$1 = require('node:child_process');
4
+ var node_child_process = require('node:child_process');
5
5
  var require$$0 = require('node:url');
6
6
 
7
7
  function chunkify(iterable, chunkSize) {
@@ -43,7 +43,7 @@ function chunkify(iterable, chunkSize) {
43
43
  };
44
44
  }
45
45
 
46
- const pExecFile = require$$1.promisify(require$$1$1.execFile);
46
+ const pExecFile = require$$1.promisify(node_child_process.execFile);
47
47
 
48
48
  async function chunkedExec(binary, paths, maxPaths) {
49
49
  for (const chunk of chunkify(paths, maxPaths)) {