Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
4265a441
Commit
4265a441
authored
Jul 25, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix extract frame for playlist clips
parent
02086acf
Pipeline
#208755
passed with stage
in 7 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/bin/projectclip.cpp
View file @
4265a441
...
...
@@ -1127,7 +1127,10 @@ void ProjectClip::cloneProducerToFile(const QString &path)
c
.
set
(
"time_format"
,
"frames"
);
c
.
set
(
"no_meta"
,
1
);
c
.
set
(
"no_root"
,
1
);
c
.
set
(
"no_profile"
,
1
);
if
(
m_clipType
!=
ClipType
::
Playlist
&&
m_clipType
!=
ClipType
::
Text
&&
m_clipType
!=
ClipType
::
TextTemplate
)
{
// Playlist and text clips need to keep their profile info
c
.
set
(
"no_profile"
,
1
);
}
c
.
set
(
"root"
,
"/"
);
c
.
set
(
"store"
,
"kdenlive"
);
c
.
run
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment