mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-26 21:39:43 +02:00
7 lines
175 B
Python
7 lines
175 B
Python
|
|
"""Shared bounds and defaults for podcast target duration."""
|
||
|
|
|
||
|
|
MAX_DURATION_SECONDS = 24 * 60 * 60
|
||
|
|
MIN_DURATION_SECONDS = 15
|
||
|
|
DEFAULT_MIN_SECONDS = 20
|
||
|
|
DEFAULT_MAX_SECONDS = 30
|