• 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
  • 基础提交 · 6d1161e0
    6d1161e0 Browse Files
    冯杨 authored 2025-04-25 17:16:36 +0800
launch.json 483 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
    "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
        }
    ]
}