Skip to content

Commit

Permalink
increase buffer time
Browse files Browse the repository at this point in the history
  • Loading branch information
aza547 committed Nov 7, 2023
1 parent c8d6f57 commit 0750925
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix a bug where deleting a video when the last video in a category is selected breaks things.
- [Issue 447](https://github.com/aza547/wow-recorder/issues/447) - Fix a bug where could end up in an error state after sleeping Windows/closing WoW.
- [Issue 401](https://github.com/aza547/wow-recorder/issues/401) - Fix a bug where the selected video delete button shows but doesn't work.
- Pre-emptively increase the buffer time to 15 mins in anticipation of combat log changes.

## [3.19.2] - 2023-10-23
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions src/main/Recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ export default class Recorder {
}

/**
* Start recorder buffer. This starts OBS and records in 5 min chunks
* Start recorder buffer. This starts OBS and records in 15 min chunks
* to the buffer location.
*/
public async startBuffer() {
Expand All @@ -890,7 +890,7 @@ export default class Recorder {
// it when a real game is detected.
this.bufferRestartIntervalID = setInterval(() => {
this.restartBuffer();
}, 5 * 60 * 1000); // Five mins
}, 15 * 60 * 1000); // Fifteen mins
}

/**
Expand Down

0 comments on commit 0750925

Please sign in to comment.