diff --git a/frigate/http.py b/frigate/http.py index de9fd033c..d42084c8c 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -32,7 +32,7 @@ from peewee import SqliteDatabase, operator, fn, DoesNotExist from playhouse.shortcuts import model_to_dict from frigate.config import FrigateConfig -from frigate.const import CLIPS_DIR, MAX_SEGMENT_DURATION, RECORD_DIR +from frigate.const import CACHE_DIR, CLIPS_DIR, MAX_SEGMENT_DURATION, RECORD_DIR from frigate.models import Event, Recordings, Timeline from frigate.events.external import ExternalEventProcessor from frigate.object_processing import TrackedObject @@ -1346,7 +1346,7 @@ def recording_clip(camera_name, start_ts, end_ts): playlist_lines.append(f"outpoint {int(end_ts - clip.start_time)}") file_name = f"clip_{camera_name}_{start_ts}-{end_ts}.mp4" - path = f"/tmp/cache/{file_name}" + path = os.path.join(CACHE_DIR, file_name) if not os.path.exists(path): ffmpeg_cmd = [ diff --git a/frigate/record/cleanup.py b/frigate/record/cleanup.py index 605979ee4..c516c52ae 100644 --- a/frigate/record/cleanup.py +++ b/frigate/record/cleanup.py @@ -11,7 +11,7 @@ from peewee import DoesNotExist from multiprocessing.synchronize import Event as MpEvent from frigate.config import RetainModeEnum, FrigateConfig -from frigate.const import RECORD_DIR, SECONDS_IN_DAY +from frigate.const import CACHE_DIR, RECORD_DIR, SECONDS_IN_DAY from frigate.models import Event, Recordings, Timeline from frigate.record.util import remove_empty_directories @@ -29,7 +29,7 @@ class RecordingCleanup(threading.Thread): def clean_tmp_clips(self) -> None: # delete any clips more than 5 minutes old - for p in Path("/tmp/cache").rglob("clip_*.mp4"): + for p in Path(CACHE_DIR).rglob("clip_*.mp4"): logger.debug(f"Checking tmp clip {p}.") if p.stat().st_mtime < (datetime.datetime.now().timestamp() - 60 * 1): logger.debug("Deleting tmp clip.")