From 0dec62fd0400e61f3cbd78cd555d278d29608fbd Mon Sep 17 00:00:00 2001 From: Chris Griffith Date: Mon, 28 Mar 2022 16:56:22 -0500 Subject: [PATCH] Version 4.8.1 (#317) * Fixing #315 HDR10 info not parsed from subsequent video tracks than the first, again (thanks to msaintauret) --- CHANGES | 4 ++++ fastflix/flix.py | 2 +- fastflix/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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"