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"