Created
January 23, 2023 13:58
-
-
Save emcodem/50ef7b26c0ac133789845a5550232012 to your computer and use it in GitHub Desktop.
ffmpeg vscode launch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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