mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
store full input paths using input_filenames
This commit is contained in:
parent
18248d1ed4
commit
ce18809fcd
1 changed files with 5 additions and 2 deletions
|
|
@ -517,8 +517,11 @@ class ExtractBurnin(openpype.api.Extractor):
|
|||
# Prepare full paths to input files and filenames for reprensetation
|
||||
full_input_paths = []
|
||||
if is_sequence:
|
||||
for frame_index in range(1, temp_data["duration"] + 1):
|
||||
full_input_paths.append(full_input_path % frame_index)
|
||||
for filename in input_filenames:
|
||||
filepath = os.path.join(
|
||||
os.path.normpath(stagingdir), filename
|
||||
).replace("\\", "/")
|
||||
full_input_paths.append(filepath)
|
||||
|
||||
else:
|
||||
full_input_paths.append(full_input_path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue