Skip to content
GitLab
Menu
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
b7ab436a
Commit
b7ab436a
authored
Oct 14, 2020
by
Vincent Pinon
Browse files
check ffmpeg setting points to a file, not just isn't empty
FIX: 388709
parent
f4f92def
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jobs/proxyclipjob.cpp
View file @
b7ab436a
...
...
@@ -225,7 +225,7 @@ bool ProxyJob::startJob()
return
true
;
}
else
{
m_isFfmpegJob
=
true
;
if
(
KdenliveSettings
::
ffmpegpath
().
is
Empty
())
{
if
(
QFileInfo
(
KdenliveSettings
::
ffmpegpath
()
)
.
is
File
())
{
// FFmpeg not detected, cannot process the Job
m_errorMessage
.
prepend
(
i18n
(
"Failed to create proxy. FFmpeg not found, please set path in Kdenlive's settings Environment"
));
m_done
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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