File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,34 @@ Alternatively, you can access to the subprocess to have more granular control. S
86
86
87
87
Also, combine that with [ YOUTUBE_DL_SKIP_DOWNLOAD] ( #youtube_dl_skip_download ) . See [ environment variables] ( #environment-variables ) to know more.
88
88
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
+
89
117
## API
90
118
91
119
### youtubedl(url, [ flags] , [ options] )
You can’t perform that action at this time.
0 commit comments