From d1d001114f52f81d0f10d2a09361c342d83d09c9 Mon Sep 17 00:00:00 2001 From: Karl Hudgell Date: Sun, 7 Jan 2024 11:28:12 +0000 Subject: [PATCH] updated gitignore --- .gitignore | 4 +++- .vscode/launch.json | 27 +++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 1c79a48..b5b2650 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ dist .DS_Store *.egg-info build -__pycache__ \ No newline at end of file +__pycache__ +venv/ +test/ \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..150004a --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": false, + "args": [ + "Class of '92 - Out of Their League - S08E03 - Episode 3 HDTV-1080p.mkv", + // "--model", + // "base", + // "--srt_only", + // "TRUE", + "--output_srt", + "TRUE", + "-o", + "./test" + ] + } + ] +} \ No newline at end of file