• This project
    • Loading...
  • Sign in

冯杨 / liveTalking

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • liveTalking
  • .vscode
  • launch.json
  • 测试文件提交 · c5e387ed
    c5e387ed Browse Files
    冯杨 authored 2025-07-22 16:03:14 +0800
launch.json 512 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Python: 带参数调试",
      "type": "python",
      "request": "launch",
      "program": "${workspaceFolder}/app.py",
      "args": [
        "--transport",
        "webrtc",
        "--model",
        "wav2lip",
        "--avatar_id",
        "wav2lip256_avatar10",
        "--fullbody_height",
        "1920",
        "--fullbody_width",
        "1080"
      ],
      "console": "integratedTerminal",
      "justMyCode": true
    }
  ]
}