mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
fix(global): dealing with extension properly
This commit is contained in:
parent
518d4b2cfe
commit
6580d1881a
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ class ExtractBurnin(pype.api.Extractor):
|
|||
filename = "{0}".format(repre["files"])
|
||||
|
||||
name = "_burnin"
|
||||
movieFileBurnin = filename.replace(".mov", "") + name + ".mov"
|
||||
ext = os.path.splitext(filename)[1]
|
||||
movieFileBurnin = filename.replace(ext, "") + name + ext
|
||||
|
||||
full_movie_path = os.path.join(
|
||||
os.path.normpath(stagingdir), repre["files"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue