launch.json
483 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: 带参数调试",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/app.py",
"args": [
"--transport", "webrtc",
"--model", "wav2lip",
"--avatar_id", "wav2lip256_avatar1"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}