Skip to content

Commit 74195be

Browse files
committed
docs: add timeout section
1 parent 76941f3 commit 74195be

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,34 @@ Alternatively, you can access to the subprocess to have more granular control. S
8686

8787
Also, combine that with [YOUTUBE_DL_SKIP_DOWNLOAD](#youtube_dl_skip_download). See [environment variables](#environment-variables) to know more.
8888

89+
## Timeout & cancellation
90+
91+
You can customize [spawn#options](https://nodejs.org/api/child_process.html#child_processspawncommand-args-options) by passing a third argument:
92+
93+
```js
94+
const url = 'https://www.youtube.com/watch?v=6xKWiCMKKJg'
95+
const result = await youtubedl.exec(url, ,{ dumpSingleJson: true }, {
96+
timeout: 5000,
97+
killSignal: 'SIGKILL'
98+
})
99+
100+
console.log(result)
101+
```
102+
103+
You can also interact with the subprocess programmatically:
104+
105+
```js
106+
const url = 'https://www.youtube.com/watch?v=6xKWiCMKKJg'
107+
const subprocess = youtubedl.exec(url, { dumpSingleJson: true })
108+
109+
setTimeout(() => {
110+
subprocess.kill('SIGKILL')
111+
}, 5000)
112+
113+
const result = await subprocess
114+
console.log(result)
115+
```
116+
89117
## API
90118

91119
### youtubedl(url, [flags], [options])

0 commit comments

Comments
 (0)