Skip to content

Commit 72d02de

Browse files
committed
docs: add hls example to launch.json
1 parent f32857f commit 72d02de

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,46 @@
213213
"internalConsoleOptions": "openOnSessionStart"
214214
}
215215
},
216+
{
217+
"name": "HLS Stream",
218+
"type": "cppdbg",
219+
"request": "launch",
220+
"program": "${workspaceFolder}/build/gst-launch",
221+
"preLaunchTask": "build",
222+
"postDebugTask": "graph",
223+
"args": [
224+
"-v",
225+
"videotestsrc",
226+
"!",
227+
"clockoverlay",
228+
"time-format=\"%H:%M:%S\"",
229+
"shaded-background=true",
230+
"!",
231+
"x264enc",
232+
"!",
233+
"gpachlssink",
234+
"segdur=3.0",
235+
"profile=live",
236+
"asto=2.8",
237+
"sync=true"
238+
],
239+
"cwd": "/tmp/test",
240+
"environment": [
241+
{
242+
"name": "GST_DEBUG",
243+
"value": "3"
244+
},
245+
{
246+
"name": "GST_PLUGIN_PATH",
247+
"value": "${workspaceFolder}/build"
248+
}
249+
],
250+
"osx": {
251+
"MIMode": "lldb",
252+
"targetArchitecture": "arm64",
253+
"internalConsoleOptions": "openOnSessionStart"
254+
}
255+
},
216256
{
217257
"name": "Run tests",
218258
"type": "cppdbg",

0 commit comments

Comments
 (0)