This commit is contained in:
Arliss 2025-01-18 10:25:08 -06:00
parent a425fa00f0
commit 7d367f3c81
4 changed files with 4 additions and 4 deletions

View File

@ -69,7 +69,7 @@ class BlinkRecorder:
out.release()
async def main():
recordings_path = Path("/mnt/external_hd/blink_recordings")
recordings_path = Path("/media/lumhq/Seagate Portable Drive/blink_recordings")
recorder = BlinkRecorder(save_path=str(recordings_path))
await recorder.setup()

View File

@ -70,7 +70,7 @@ class BlinkHistoryDownloader:
logging.error(f"Error downloading videos: {e}")
async def main():
base_path = Path(__file__).parent
base_path = Path("/media/lumhq/Seagate Portable Drive/blink_recordings")
history_path = base_path / "historical_clips"
downloader = BlinkHistoryDownloader(str(history_path))

View File

@ -33,7 +33,7 @@ class BlinkRecorder:
)
async def main():
base_path = Path(__file__).parent
base_path = Path("/media/lumhq/Seagate Portable Drive/blink_recordings")
recordings_path = base_path / "motion_clips"
credentials_path = base_path / "credentials.json"

View File

@ -197,7 +197,7 @@ async def main():
if not stream_keys:
raise ValueError("At least one stream key must be set (YOUTUBE_STREAM_KEY or TWITCH_STREAM_KEY)")
recordings_path = Path("/mnt/external_hd/blink_recordings")
recordings_path = Path("/media/lumhq/Seagate Portable Drive/blink_recordings")
streamer = BlinkStreamer(
save_path=str(recordings_path),