Add node version limitation

This commit is contained in:
jeromewu
2020-01-15 00:50:32 +00:00
parent 4565489aad
commit 22602ce6b0
3 changed files with 14 additions and 0 deletions

View File

@@ -204,6 +204,14 @@ Worker.concatDemuxer() concatenates multiple videos using concatDemuxer. This me
})();
```
If the input video files are the same as the output video file, you can pass an extra option to speed up the process
```javascript
(async () => {
await worker.concatDemuxer(["flame-1.mp4", "flame-2.mp4"], "output.mp4", "-c copy");
})();
```
<a name="worker-run"></a>
### Worker.run(args, jobId): Promise