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
757174c4
Commit
757174c4
authored
Dec 31, 2019
by
Jean-Baptiste Mardelle
Browse files
Dont' put colon in cut clip names
parent
8ed29aa7
Pipeline
#12730
passed with stage
in 13 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/jobs/cutclipjob.cpp
View file @
757174c4
...
...
@@ -81,8 +81,8 @@ int CutClipJob::prepareJob(const std::shared_ptr<JobManager> &ptr, const std::ve
QFileInfo
finfo
(
source
);
QString
fileName
=
finfo
.
fileName
().
section
(
QLatin1Char
(
'.'
),
0
,
-
2
);
QDir
dir
=
finfo
.
absoluteDir
();
QString
inString
(
binClip
->
framesToTime
(
inTime
.
frames
(
pCore
->
getCurrentFps
())
));
QString
outString
(
binClip
->
framesToTime
(
outTime
.
frames
(
pCore
->
getCurrentFps
())
));
QString
inString
=
QString
::
number
((
int
)
inTime
.
seconds
(
));
QString
outString
=
QString
::
number
((
int
)
outTime
.
seconds
(
));
QString
path
=
dir
.
absoluteFilePath
(
fileName
+
QString
(
"-%1-%2."
).
arg
(
inString
).
arg
(
outString
)
+
transcoderExt
);
QPointer
<
QDialog
>
d
=
new
QDialog
(
QApplication
::
activeWindow
());
...
...
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