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
a644d42c
Commit
a644d42c
authored
Oct 09, 2021
by
Alex Wigen
Committed by
Julius Künzel
Oct 11, 2021
Browse files
Add prefix support for external proxies required for GoPro footage
This also adds the GoPro LRV proxy format definition.
parent
8874bde9
Pipeline
#87663
passed with stage
in 8 minutes and 39 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
data/externalproxies.rc
View file @
a644d42c
...
...
@@ -8,4 +8,5 @@
[proxy]
Sony PXW=../Sub;;S03.MP4;../Clip;;.MXF
GoPro LRV=./;GL;.LRV;./;GX;.MP4
src/bin/projectclip.cpp
View file @
a644d42c
...
...
@@ -560,6 +560,10 @@ bool ProjectClip::setProducer(std::shared_ptr<Mlt::Producer> producer)
QDir
dir
=
info
.
absoluteDir
();
dir
.
cd
(
externalParams
.
at
(
3
));
QString
fileName
=
info
.
fileName
();
if
(
fileName
.
startsWith
(
externalParams
.
at
(
1
)))
{
fileName
.
remove
(
0
,
externalParams
.
at
(
1
).
size
());
fileName
.
prepend
(
externalParams
.
at
(
4
));
}
if
(
!
externalParams
.
at
(
2
).
isEmpty
())
{
fileName
.
chop
(
externalParams
.
at
(
2
).
size
());
}
...
...
Farid Abdelnour
🎥
@frdbr
·
Oct 11, 2021
Reporter
Hey Alex, thanks for your commit! :)
Hey Alex, thanks for your commit! :)
Write
Preview
Supports
Markdown
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