mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
fix missing method
This commit is contained in:
parent
8b4ceb9c77
commit
3cba06331b
1 changed files with 4 additions and 3 deletions
|
|
@ -196,10 +196,11 @@ class ExtractBurnin(openpype.api.Extractor):
|
|||
|
||||
src_repre_staging_dir = repre["stagingDir"]
|
||||
# Should convert representation source files before processing?
|
||||
if self.input_is_sequence(repre):
|
||||
filename = repre["files"][0]
|
||||
repre_files = repre["files"]
|
||||
if isinstance(repre_files, (tuple, list)):
|
||||
filename = repre_files[0]
|
||||
else:
|
||||
filename = repre["files"]
|
||||
filename = repre_files
|
||||
|
||||
first_input_path = os.path.join(src_repre_staging_dir, filename)
|
||||
# Determine if representation requires pre conversion for ffmpeg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue