This commit is contained in:
yjlmiss
2021-10-08 13:10:31 +08:00
parent f0c37ccf4c
commit 5d4f76a11f
2 changed files with 11 additions and 4 deletions

3
.gitignore vendored
View File

@@ -108,4 +108,5 @@ venv.bak/
# success/failed folder
JAV_output/**/*
failed/*
failed/*
.vscode/launch.json

12
.vscode/launch.json vendored
View File

@@ -1,12 +1,18 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "AV_Data_Capture",
"name": "Python: 当前文件",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/AV_Data_capture.py",
"console": "integratedTerminal"
"program": "${file}",
"console": "integratedTerminal",
"args": [
"-p","/Volumes/movie/a b"
]
}
]
}