Skip to content

Commit

Permalink
* Fixing #315 HDR10 info not parsed from subsequent video tracks than…
Browse files Browse the repository at this point in the history
… the first, again (thanks to msaintauret)
  • Loading branch information
cdgriffith committed Mar 28, 2022
1 parent 3380a86 commit 3a5688c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion fastflix/flix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion fastflix/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__version__ = "4.8.0"
__version__ = "4.8.1"
__author__ = "Chris Griffith"

0 comments on commit 3a5688c

Please sign in to comment.