Skip to content

Instantly share code, notes, and snippets.

@emcodem
Created January 23, 2023 13:58
Show Gist options
  • Save emcodem/50ef7b26c0ac133789845a5550232012 to your computer and use it in GitHub Desktop.
Save emcodem/50ef7b26c0ac133789845a5550232012 to your computer and use it in GitHub Desktop.
ffmpeg vscode launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/ffmpeg_g.exe",
"args": [
"-i",
"C:\\dev\\FFmpeg\\525_0005.h264",
"-codec",
"copy",
"-bsf:v",
"h264_metadata=colour_primaries=9,h264_metadata=delete_filler=0",
"c:\\dev\\ffmpeg\\out.h264",
"-y",
"-loglevel",
"debug"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\mingw64\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment