feat: add server-side recording system#392
Closed
wowitsjack wants to merge 1 commit intoFredolx:mainfrom
Closed
Conversation
This was referenced Mar 7, 2026
Add a complete recording system with Rust backend and Angular frontend: Backend (recording.rs): - Spawn ffmpeg to record livestreams to MP4 files - Graceful shutdown via stdin "q" command (preserves moov atom) - Fallback SIGKILL after 5s timeout - Stderr capture for diagnostics - Track active recordings in AppState with atomic stop signals Frontend (recording.service.ts): - Listen for recording-started/stopped Tauri events - Manage recording state via BehaviorSubject - Busy-channel guard prevents race conditions from spam-clicking - Timer for elapsed time display - Recover active recordings on app restart Integration: - channel-tile: recording button shows Working/Stop/Record states - lib.rs: start_recording, stop_recording, get_active_recordings commands - ExitRequested handler signals all recordings to stop on app exit
8bdd710 to
6a80458
Compare
Author
|
Yep agreed |
1e4a7d6 to
6a80458
Compare
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Complete recording system with Rust backend and Angular frontend integration:
recording.rs): Spawn ffmpeg to record livestreams to MP4. Graceful shutdown via stdinq(preserves moov atom), fallback SIGKILL after 5s. Stderr capture for diagnostics. Active recordings tracked in AppState with atomic stop signals.recording.service.ts): Tauri event listeners for start/stop, BehaviorSubject state management, busy-channel guard against race conditions, elapsed time timer, state recovery on restart.start_recording,stop_recording,get_active_recordings. ExitRequested handler signals all recordings to stop on app close.Files
src-tauri/src/recording.rs,src/app/recording.service.ts,src/app/models/recording.tssrc-tauri/src/lib.rs,src-tauri/src/types.rs,src/app/channel-tile/channel-tile.component.ts,src/app/channel-tile/channel-tile.component.htmlTest plan