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
16d894c6
Commit
16d894c6
authored
Sep 18, 2016
by
Jean-Baptiste Mardelle
Browse files
Use original clip, not proxy when extracting clip frame, patch by Harald Albrecht
REVIEW: 128937
parent
71e78997
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/monitor/monitor.cpp
View file @
16d894c6
...
...
@@ -986,7 +986,7 @@ void Monitor::slotExtractCurrentFrame(QString path, bool addToProject)
// check if we are using a proxy
if
(
m_controller
&&
!
m_controller
->
property
(
QStringLiteral
(
"kdenlive:proxy"
)).
isEmpty
()
&&
m_controller
->
property
(
QStringLiteral
(
"kdenlive:proxy"
))
!=
QLatin1String
(
"-"
))
{
// using proxy, use original clip url to get frame
frame
=
render
->
extractFrame
(
render
->
seekFramePosition
(),
m_controller
->
property
(
QStringLiteral
(
"
resource
"
)));
frame
=
render
->
extractFrame
(
render
->
seekFramePosition
(),
m_controller
->
property
(
QStringLiteral
(
"
kdenlive:originalurl
"
)));
}
else
{
frame
=
render
->
extractFrame
(
render
->
seekFramePosition
());
}
...
...
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