Fix FFmpeg task when rendering list of frames #104286
No reviewers
Labels
No Label
Good First Issue
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Job Type
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: studio/flamenco#104286
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "EmmanuelDurand/flamenco:fix/ffmpeg-list-of-frames"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This fixes issue #104285, by generating a name composed using the first and last frames of the given list of frames to render.
I can't reproduce the issue here (currently on my home computer running Windows 10), but I feel that this way of naming the video is nicer anyway.
There is one issue with the code, though, and that is that it assumes that any comma in
outfile
is caused by a comma insettings.frames
. This may not be true, asstem
orrenderDir
could also have a comma in them. If you replace the code with this, it should work:Indeed, I forgot that it is possible to use commas in file and directory name. Must be an inner fear of such naming decisions ;)
Your proposition is much better, I'll push an update right now.
Thanks!