-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig_example.yaml
More file actions
392 lines (305 loc) · 9.47 KB
/
config_example.yaml
File metadata and controls
392 lines (305 loc) · 9.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# greg Configuration File
# This is the default configuration for greg
# ============================================================================
# API Settings
# ============================================================================
api:
base_url: "http://localhost:8080" # API server URL (default)
timeout: 30s # Request timeout
# ============================================================================
# Player Settings
# ============================================================================
player:
# Video player to use (mpv, vlc, iina)
binary: mpv
# Additional mpv arguments
mpv_args:
- --hwdec=auto
- --profile=gpu-hq
- --keep-open=yes
# Default video quality (360p, 480p, 720p, 1080p, 1440p, 2160p, auto)
quality: 1080p
# Automatically resume from last position
resume: true
# Subtitle language preference (ISO 639-1 codes)
subtitle_language: en
# Automatically load subtitles
auto_subtitles: true
# Audio preference (sub, dub)
audio_preference: sub
# IPC socket timeout
ipc_timeout: 5s
# Load user mpv config file (overrides --no-config flag if false)
load_user_config: true
# ============================================================================
# Provider Settings
# ============================================================================
providers:
# Default providers for each media type
default:
anime: hianime
movies_and_tv: sflix
# Provider priority order (first available wins)
priority:
anime:
- hianime
- allanime
- hdrezka_anime
- aniwatch
movies:
- sflix
tv:
- sflix
# Provider-specific settings
hianime:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: "https://hianime.to"
api_url: ""
timeout: 30s
max_retries: 3
rate_limit: 2
allanime:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: ""
api_url: "https://api.allanime.co/api"
timeout: 30s
max_retries: 3
rate_limit: 2
sflix:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: "https://sflix.ps"
api_url: ""
timeout: 30s
max_retries: 3
rate_limit: 5
flixhq:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: "https://flixhq.to"
api_url: ""
timeout: 30s
max_retries: 3
rate_limit: 5
hdrezka:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: "https://hdrezka.website"
api_url: ""
timeout: 30s
max_retries: 3
rate_limit: 2
comix:
enabled: true
mode: "local"
# remote_url: "http://localhost:3000" # Required if mode is "remote"
base_url: "https://comix.net"
api_url: ""
timeout: 30s
max_retries: 3
rate_limit: 2
# Provider health check interval
health_check_interval: 5m
# Enable automatic failover to next provider
auto_failover: true
# ============================================================================
# Tracker Settings (AniList)
# ============================================================================
tracker:
anilist:
# Enable AniList integration
enabled: true
# Automatically sync progress
auto_sync: true
# Progress threshold before updating (0.0-1.0)
# 0.85 means sync after 85% watched
sync_threshold: 0.85
# Update status to "Completed" when finished
auto_complete: true
# Sync interval for background sync
sync_interval: 5m
# OAuth2 redirect URI
redirect_uri: "http://localhost:8000/oauth/callback"
# OAuth2 server port
server_port: 8000
# ============================================================================
# Download Settings
# ============================================================================
downloads:
# Download directory
path: ~/Videos/greg
# Number of concurrent downloads
concurrent: 3
# Number of concurrent segment downloads (for HLS/DASH)
concurrent_segments: 5
# Embed subtitles in downloaded files
embed_subtitles: true
# Subtitle languages to download (ISO 639-1 codes)
subtitle_languages:
- en
- ja
# Automatically resume interrupted downloads
auto_resume: true
# Keep partial downloads on error
keep_partial: true
# File naming template
# Available variables: {title}, {episode}, {season}, {quality}, {year}
filename_template: "{title} - S{season:02d}E{episode:02d} [{quality}]"
# For anime (no season):
anime_filename_template: "{title} - {episode:03d} [{quality}]"
# For movies:
movie_filename_template: "{title} ({year}) [{quality}]"
# Maximum download speed in KB/s (0 = unlimited)
max_speed: 0
# Minimum free disk space in GB before refusing downloads
min_free_space: 5
# ============================================================================
# User Interface Settings
# ============================================================================
ui:
# Theme (default, dracula, nord, monokai)
theme: default
# Show image previews in search results
preview_images: true
# Image preview method (kitty, sixel, chafa, none)
preview_method: auto
# Preview image size
preview_size:
width: 40
height: 20
# Show progress bar during playback
show_progress: true
# Compact mode (less spacing, more content)
compact: false
# Key bindings (vim-style by default)
keybindings:
quit: q
search: /
help: "?"
select: enter
back: esc
scroll_up: k
scroll_down: j
page_up: ctrl+u
page_down: ctrl+d
# Date/time format (Go time format)
date_format: "2006-01-02"
time_format: "15:04"
# Fuzzy finder (fzf, builtin)
fuzzy_finder: builtin
# Manga preview method (kitty, sixel, chafa, none)
manga_method: sixel
# Show loading spinner during operations
show_loading: false
# Default media type on startup (movie_tv, anime, or manga)
# Defaults to movie_tv if not specified
default_media_type: movie_tv
# ============================================================================
# WatchParty Settings
# ============================================================================
watchparty:
# Enable WatchParty integration
enabled: true
# Default m3u8 proxy URL (leave empty to require --proxy flag)
# Example proxy service: https://forms-energy-emotions-enquiry.trycloudflare.com/
default_proxy: "" # You can set this to the example proxy if needed
# Auto-open browser when creating WatchParty room
auto_open_browser: true
# Default origin header for proxied streams
default_origin: "https://videostr.net"
# ============================================================================
# Cache Settings
# ============================================================================
cache:
# Enable caching
enabled: true
# Cache directory
path: ~/.cache/greg
# Cache TTL for different types
ttl:
metadata: 5m
images: 24h
search_results: 10m
stream_urls: 1m
# Maximum cache size in MB
max_size: 500
# Clean up cache on exit
cleanup_on_exit: false
# ============================================================================
# Database Settings
# ============================================================================
database:
# Database file location
path: ~/.local/share/greg/greg.db
# Enable WAL mode for better performance
wal_mode: true
# Maximum number of database connections
max_connections: 10
# Automatically vacuum database
auto_vacuum: true
# Backup database on exit
backup_on_exit: false
# ============================================================================
# Logging Settings
# ============================================================================
logging:
# Log level (debug, info, warn, error)
level: info
# Log file location
file: ~/.local/state/greg/greg.log
# Maximum log file size in MB
max_size: 10
# Number of log files to keep
max_backups: 3
# Maximum age of log files in days
max_age: 7
# Compress rotated log files
compress: true
# Log format (json, text)
format: text
# Enable colored output (for text format)
color: true
# ============================================================================
# Network Settings
# ============================================================================
network:
# HTTP timeout in seconds
timeout: 30
# Enable HTTP/2
http2: true
# Maximum idle connections
max_idle_conns: 100
# Idle connection timeout in seconds
idle_conn_timeout: 90
# User agent string
user_agent: "greg/1.0.0"
# Proxy URL (http://proxy:port or socks5://proxy:port)
proxy: ""
# Enable TLS certificate verification
verify_tls: true
# DNS servers (leave empty for system default)
dns_servers: []
# ============================================================================
# Advanced Settings
# ============================================================================
advanced:
# Enable experimental features
experimental: false
# Enable debug mode
debug: false
# Disable telemetry (greg doesn't collect any by default)
no_telemetry: true
# Performance profiling (cpu, mem, block, mutex)
# profiling: []
# Maximum goroutines for concurrent operations
max_goroutines: 100
# Clipboard command for copying streams (e.g., "clip.exe" for WSL)
clipboard:
command: ""