launch.json 910 B

123456789101112131415161718192021222324252627282930
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: Current File",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal",
  13. "justMyCode": false,
  14. "args": [
  15. // "Class of '92 - Out of Their League - S08E03 - Episode 3 HDTV-1080p.mkv",
  16. "--model",
  17. "base",
  18. // "--srt_only",
  19. // "TRUE",
  20. // "--output_srt",
  21. // "TRUE",
  22. "-o",
  23. "./test"
  24. ],
  25. "env": {
  26. "token": ""
  27. }
  28. }
  29. ]
  30. }