mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-06-27 02:12:16 +08:00
11 lines
215 B
Python
11 lines
215 B
Python
from pathlib import Path
|
|
import os
|
|
|
|
DEFAULT_CONFIG_PATH = (
|
|
Path(__file__).parent / "config.json"
|
|
if not os.getenv("TESTING")
|
|
else Path(__file__).parent / "config.test.json"
|
|
)
|
|
|
|
FFMPEG_COMMAND = "ffmpeg"
|