mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-07-31 10:07:37 -04:00
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
from typing import List, Optional, Tuple
|
|
|
|
|
|
SUBSYNC_RESOURCES_ENV_MAGIC: str = "ffsubsync_resources_xj48gjdkl340"
|
|
|
|
SAMPLE_RATE: int = 100
|
|
|
|
FRAMERATE_RATIOS: List[float] = [24.0 / 23.976, 25.0 / 23.976, 25.0 / 24.0]
|
|
|
|
DEFAULT_FRAME_RATE: int = 48000
|
|
DEFAULT_NON_SPEECH_LABEL: float = 0.0
|
|
DEFAULT_ENCODING: str = "infer"
|
|
DEFAULT_MAX_SUBTITLE_SECONDS: int = 10
|
|
DEFAULT_START_SECONDS: int = 0
|
|
DEFAULT_SCALE_FACTOR: float = 1
|
|
DEFAULT_VAD: str = "subs_then_webrtc"
|
|
DEFAULT_MAX_OFFSET_SECONDS: int = 60
|
|
DEFAULT_APPLY_OFFSET_SECONDS: int = 0
|
|
|
|
# Quality gating (--skip-sync-on-low-quality). The score's sign is meaningful even
|
|
# though its magnitude is not, so 0.0 rejects only anti-correlated alignments. The
|
|
# framerate-deviation default clears every real correction (discrete ratios reach
|
|
# ~0.0427 and a typical --gss result stays well within +/-0.1), so it does not
|
|
# reject a legitimate correction -- it is a knob to tighten when you know the
|
|
# framerate should not change.
|
|
DEFAULT_MIN_SCORE: float = 0.0
|
|
DEFAULT_QUALITY_MAX_OFFSET_SECONDS: float = 30.0
|
|
DEFAULT_MAX_FRAMERATE_DEVIATION: float = 0.1
|
|
|
|
SUBTITLE_EXTENSIONS: Tuple[str, ...] = ("srt", "ass", "ssa", "sub")
|
|
|
|
# Remote URL protocols that ffmpeg can read directly as an input (`-i <url>`),
|
|
# so a reference of this form needs no local download or read-permission check.
|
|
REMOTE_URL_PROTOCOLS: Tuple[str, ...] = (
|
|
"http://",
|
|
"https://",
|
|
"rtmp://",
|
|
"rtsp://",
|
|
"ftp://",
|
|
)
|
|
|
|
|
|
def is_remote_url(path: Optional[str]) -> bool:
|
|
"""Return True if *path* is a remote URL ffmpeg can stream directly."""
|
|
if path is None:
|
|
return False
|
|
return path.startswith(REMOTE_URL_PROTOCOLS)
|
|
|
|
|
|
GITHUB_DEV_USER: str = "smacke"
|
|
PROJECT_NAME: str = "FFsubsync"
|
|
PROJECT_LICENSE: str = "MIT"
|
|
COPYRIGHT_YEAR: str = "2019"
|
|
GITHUB_REPO: str = "ffsubsync"
|
|
DESCRIPTION: str = "Synchronize subtitles with video."
|
|
LONG_DESCRIPTION: str = (
|
|
"Automatic and language-agnostic synchronization of subtitles with video."
|
|
)
|
|
WEBSITE: str = "https://github.com/{}/{}/".format(GITHUB_DEV_USER, GITHUB_REPO)
|
|
DEV_WEBSITE: str = "https://smacke.net/"
|
|
|
|
# No trailing slash important for this one...
|
|
API_RELEASE_URL: str = "https://api.github.com/repos/{}/{}/releases/latest".format(
|
|
GITHUB_DEV_USER, GITHUB_REPO
|
|
)
|
|
RELEASE_URL: str = "https://github.com/{}/{}/releases/latest/".format(
|
|
GITHUB_DEV_USER, GITHUB_REPO
|
|
)
|