-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog was updated, version was bumped to 2.0.0
- Loading branch information
Showing
2 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,32 @@ | ||
## video-quality-tools v1.1.0 | ||
|
||
* **processFrames**: | ||
|
||
Added new fields `gopDuration`, `displayAspectRatio`, `width`, `height`, `hasAudioStream` to the result of | ||
_processFrames_ execution . | ||
|
||
Add new methods to _processFrames_: `calculateGopDuration`, `calculateDisplayAspectRatio`, `hasAudioFrames`. | ||
|
||
* **FramesMonitor** | ||
|
||
FramesMonitor fetches video and audio frames from the stream now. | ||
|
||
Added `width` and `height` info to video frames. | ||
# Changelog | ||
|
||
### 2.0.0 | ||
|
||
IMPROVEMENTS: | ||
|
||
- Function `processFrames` from the module with the same name actually does calculations of encoder statistic. To | ||
improve naming it was renamed to `processFrames.encoderStats` | ||
[[GH-10](https://github.com/LCMApps/video-quality-tools/issues/10)] | ||
- `processFrames.accumulatePktSize` was renamed to `processFrames.calculatePktSize` | ||
[[GH-17](https://github.com/LCMApps/video-quality-tools/issues/17)] | ||
- New function `processFrames.networkStats` for analyzing network link quality and losses in realtime. Check the | ||
README for more details. | ||
[[GH-17](https://github.com/LCMApps/video-quality-tools/issues/17)] | ||
- Example for the `processFrames.networkStats` at [examples/networkStats.js](examples/networkStats.js) | ||
[[GH-17](https://github.com/LCMApps/video-quality-tools/issues/17)] | ||
- Dependencies was bumped | ||
|
||
BUG FIXES: | ||
|
||
- Fix of functional tests (aspectRatio -> displayAspectRatio) | ||
[[GH-12](https://github.com/LCMApps/video-quality-tools/pull/12)] | ||
- ffprobe ran without `-fflags nobuffer` so `FramesMonitor` receives incorrect info at the time of first analysis. | ||
Check [[GH-18](https://github.com/LCMApps/video-quality-tools/pull/18)] for more details. | ||
|
||
### 1.1.0 | ||
|
||
- Added new fields `gopDuration`, `displayAspectRatio`, `width`, `height`, `hasAudioStream` to the result of | ||
_processFrames_ execution | ||
- Added new methods to _processFrames_: `calculateGopDuration`, `calculateDisplayAspectRatio`, `hasAudioFrames` | ||
- `FramesMonitor` fetches video and audio frames from the stream now. | ||
- Added `width` and `height` info to video frames. |
This file contains 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