From 9356d450742678f3823834cb9deaa0ee349f6409 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Sat, 4 Apr 2026 18:07:50 +0300 Subject: [PATCH] add: add gitignore and config example --- .gitignore | 10 ++++++++++ config.example.yaml | 15 +++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 config.example.yaml diff --git a/.gitignore b/.gitignore index e69de29..1a13ade 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,10 @@ +videnc-vibe +*.mkv +*.wav +*.opus +*.log +*.json +/input +/output +/originals +/failed diff --git a/config.example.yaml b/config.example.yaml new file mode 100644 index 0000000..68cc7d6 --- /dev/null +++ b/config.example.yaml @@ -0,0 +1,15 @@ +omdb_api_key: "YOUR_API_KEY_HERE" + +encoding: + dvd: + crf: 30 + preset: 2 + bluray: + crf: 29 + preset: 3 + +paths: + input: "./input" + output: "./output" + originals: "./originals" + failed: "./failed"