diff --git a/CHANGES b/CHANGES index 51284507..fcdc9e94 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ # Changelog +## Version 4.8.1 + +* Fixing #315 HDR10 info not parsed from subsequent video tracks than the first, again (thanks to msaintauret) + ## Version 4.8.0 * Adding #313 basic vsync support for hardware encoders (thanks to Wontell) diff --git a/fastflix/flix.py b/fastflix/flix.py index 49f18ec8..ba212374 100644 --- a/fastflix/flix.py +++ b/fastflix/flix.py @@ -510,7 +510,7 @@ def parse_hdr_details(app: FastFlixApp, **_): "-loglevel", "panic", "-select_streams", - f"v:{video_stream.index}", + f"{video_stream.index}", "-print_format", "json", "-show_frames", diff --git a/fastflix/version.py b/fastflix/version.py index 15747417..25de4466 100644 --- a/fastflix/version.py +++ b/fastflix/version.py @@ -1,4 +1,4 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "4.8.0" +__version__ = "4.8.1" __author__ = "Chris Griffith"