mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #6129 from tokejepsen/bugfix/transcoding_xml_parsing
Transcoding: Fix reading image sequences through oiiotool
This commit is contained in:
commit
e9387c1b28
1 changed files with 2 additions and 1 deletions
|
|
@ -110,8 +110,9 @@ def get_oiio_info_for_input(filepath, logger=None, subimages=False):
|
|||
if line == "</ImageSpec>":
|
||||
subimages_lines.append(lines)
|
||||
lines = []
|
||||
xml_started = False
|
||||
|
||||
if not xml_started:
|
||||
if not subimages_lines:
|
||||
raise ValueError(
|
||||
"Failed to read input file \"{}\".\nOutput:\n{}".format(
|
||||
filepath, output
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue