-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
39 lines (32 loc) · 1.12 KB
/
config.example.yaml
File metadata and controls
39 lines (32 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Example configuration file for media encoding
# Copy this to config.yaml and customize as needed
disc:
default_path: "disc:0"
default_temp_dir: "/tmp/makemkv"
output:
movies_dir: "~/Movies"
tv_dir: "~/TV Shows"
encoding:
include_english_subtitles: true
include_stereo_audio: true
include_surround_audio: true
min_movie_duration_seconds: 2700
min_episode_duration_seconds: 1200
max_episode_duration_seconds: 3600
naming:
movie_format: "{title} ({year}).mkv"
tv_format: "{title} - S{season:02d}E{episode:02d}.mkv"
metadata:
# Enable online metadata lookup
lookup_enabled: true
# TMDB API key for movie and TV series metadata
# RECOMMENDED: Set via environment variable TMDB_API_KEY for better security
# Example: export TMDB_API_KEY="your_api_key_here"
#
# Alternatively, you can set it here (not recommended for security):
# Get your free API key at: https://www.themoviedb.org/settings/api
tmdb_api_key: ""
# TVDB API key for TV series and episode title lookups
# RECOMMENDED: Set via environment variable TVDB_API_KEY
# Note: Implementation in progress (issue #37)
tvdb_api_key: ""