docs: restructure IMPROVEMENTS.md into index + per-topic files#17
Open
negativeeddy wants to merge 9 commits into
Open
docs: restructure IMPROVEMENTS.md into index + per-topic files#17negativeeddy wants to merge 9 commits into
negativeeddy wants to merge 9 commits into
Conversation
added 9 commits
July 17, 2026 18:58
…ection; fix quoting
…p from job.Tracks
When the app already knows the exact track to rip (TestMode or MainFeature modes), --minlength is counterproductive — it causes MakeMKV to filter out the requested title if it's shorter than the threshold, resulting in exit code 12 and zero output. The info scan already handles min-length filtering. Also reverted unnecessary SourceTitleId parameter on RipTrackAsync — the sequential TINFO index (TrackNumber) is the correct argument for the mkv command, not the DVD VTS source title ID (field 24).
- Removed AddSourceTitleId migration (DB column not needed) - Removed SourceTitleId property from Track, DiscTrack models - Removed SourceTitleId enum value from MakeMkvModels - Removed SourceTitleId parsing from MakeMkvService (field 24 is the DVD VTS title ID, not what makemkvcon mkv expects — it uses sequential index) - Reverted NotificationHub.cs and Viewer.cshtml changes (log streaming improvements unrelated to this branch)
- Re-add SourceTitleId (TINFO field 24) to fix MakeMKV mkv command title selection: the 0-based TINFO index was causing '0' to be passed to MakeMKV's mkv command, which MakeMKV interprets as 'rip all titles' instead of 'rip title 1'. Now we pass the actual 1-based title number. - 0-track fallback: retry info scan with normal minLength before falling back to RipAllTitles, so a DiscDb-enabled exhaustive scan timeout doesn't bypass MainFeature track selection. - Add MarkStageComplete(Rip) to the 0-track fallback path. - Add yellow 'Small file' warning on completed movie files under 2GB on both the Output list and detail pages.
SourceTitleId (MakeMKV field 24) is the 1-based source title number on the disc. But MakeMKV's mkv command uses 0-based TINFO indices, so passing SourceTitleId=1 meant 'rip TINFO index 1' (the second track) instead of 'rip title 1' (the main feature). This caused every DVD to rip a short extra instead of the movie. Fully removed from: Track model, DiscTrack model, MakeMkvModels enum, GetTrackInfoAsync parsing, FinalizeTrack, CreateTrackObj, and RipTrackAsync (which now correctly passes trackNumber directly).
…artup The TranscodeSlotLimiter read MaxConcurrentTranscodes from IOptions<ArmSettings> once at DI construction time and never updated. Since the Web UI saves settings into the DB (not the YAML file), any change via the UI was silently ignored. The limiter has been rewritten as a dynamic counter+queue gate that accepts the effective maxConcurrent value from each caller. FfmpegService and HandBrakeService now resolve job.Config?.MaxConcurrentTranscodes ?? settings.Value.MaxConcurrentTranscodes and pass it to AcquireAsync, so UI-driven changes take effect immediately.
… docs/improvements/ - Split monolithic IMPROVEMENTS.md into a table-of-contents index - Each improvement topic now lives in its own file under docs/improvements/ - Added disc-type-audiobook-mp3.md documenting the MP3 audiobook detection gap (job 607)
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.
Splits the monolithic
IMPROVEMENTS.mdinto a table-of-contents index that links to individual topic files underdocs/improvements/.docs/IMPROVEMENTS.mdis now a one-liner-per-item index for easy scanning.mdfile underdocs/improvements/disc-type-audiobook-mp3.md— documents the MP3 audiobook disc detection gap discovered during job 607 investigation23 files changed, 199 insertions, 77 deletions.