Skip to content

Commit

Permalink
Changelog was updated, version was bumped to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WoZ committed Oct 4, 2018
1 parent 0827528 commit d92188a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 15 deletions.
46 changes: 32 additions & 14 deletions CHANGELOG.md
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.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "video-quality-tools",
"version": "1.1.0",
"version": "2.0.0",
"description": "Set of tools to evaluate video stream quality.",
"main": "index.js",
"engines": {
Expand Down

0 comments on commit d92188a

Please sign in to comment.