Skip to content

Commit

Permalink
chore: Require Shaka Packager v2.6.0
Browse files Browse the repository at this point in the history
This is the minimum version needed for low-latency DASH support.

Change-Id: I5bb07c18412fb2c3157c440297b21928512f86c7
  • Loading branch information
joeyparrish committed Sep 7, 2021
1 parent 5bfefc8 commit 15444a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- LL-DASH support
(https://github.com/google/shaka-streamer/pull/88)
- Require Python 3.6+
- Require Shaka Packager v2.6+


## 0.4.0 (2021-08-26)
Expand Down
4 changes: 2 additions & 2 deletions streamer/controller_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ def start(self, output_location: str,
# above.
_check_version('ffprobe', ['ffprobe', '-version'], (4, 1))

# Check that Shaka Packager version is 2.4.2 or above.
_check_version('Shaka Packager', ['packager', '-version'], (2, 4, 2))
# Check that Shaka Packager version is 2.6.0 or above.
_check_version('Shaka Packager', ['packager', '-version'], (2, 6, 0))

if bucket_url:
# Check that the Google Cloud SDK is at least v212, which introduced
Expand Down

0 comments on commit 15444a6

Please sign in to comment.