How to reverse a video and fast forward it using Kdenlive
I tried reversing the video and then increasing the speed, but it did not help. Instead the clip went missing. Can anyone tell me what I should do?
Also the rendering process takes a lot of time if I start rendering it assuming "the clip is just not visible but its present in the project".
kdenlive
add a comment |
I tried reversing the video and then increasing the speed, but it did not help. Instead the clip went missing. Can anyone tell me what I should do?
Also the rendering process takes a lot of time if I start rendering it assuming "the clip is just not visible but its present in the project".
kdenlive
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command linefind / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40
add a comment |
I tried reversing the video and then increasing the speed, but it did not help. Instead the clip went missing. Can anyone tell me what I should do?
Also the rendering process takes a lot of time if I start rendering it assuming "the clip is just not visible but its present in the project".
kdenlive
I tried reversing the video and then increasing the speed, but it did not help. Instead the clip went missing. Can anyone tell me what I should do?
Also the rendering process takes a lot of time if I start rendering it assuming "the clip is just not visible but its present in the project".
kdenlive
kdenlive
asked Dec 12 '17 at 5:30
racer_aceracer_ace
184
184
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command linefind / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40
add a comment |
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command linefind / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command line
find / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command line
find / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40
add a comment |
1 Answer
1
active
oldest
votes
I’ve just run into this and it seems like a bug. When you apply the speed
effect the ‘reversed’ clip shrinks to a tiny size on the timeline and you can only delete effects and the clip from the timeline (if you can find it).
You can easily reverse clips, but I think the reversal is actually just another saved job, so what you can do with that ‘reversed’ clip is severely limited. E.g. the clip I’m dealing with is 195 MB, but the .mlt
reversed version shows as 3.4 KB.
The solution is to render an actual reversed version of the clip.
Kdenlive
Either….
- save your project with a new name and clear the timeline (easy way to keep same project settings)
- add a new track and disable all the others (tedious!)
- create a new project with the same settings, add the source clip & ‘reverse’ it
…then…
- drag your ‘reversed’ clip to a (new) track
- render it
ffmpeg
ffmpeg -i source-clip -vf reverse -af reverse reversed-clip
or, to only reverse the video…
ffmpeg -i source-clip -vf reverse reversed-clip
Note that this may not practical for large clips as I’ve read elsewhere that the entire file is buffered, so it is very memory-dependant.
Although this was a lot quicker, for me it also seemed to reduce the quality of the reversed clip, which was unexpected.
Source: 9,880 kb/s, AVC (Baseline@L3.1)(1 Ref Frames) 195.4 MB
Reversed: 371 kb/s, AVC (High@L3)(CABAC / 4 Ref Frames) 8.2 MB
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f985457%2fhow-to-reverse-a-video-and-fast-forward-it-using-kdenlive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I’ve just run into this and it seems like a bug. When you apply the speed
effect the ‘reversed’ clip shrinks to a tiny size on the timeline and you can only delete effects and the clip from the timeline (if you can find it).
You can easily reverse clips, but I think the reversal is actually just another saved job, so what you can do with that ‘reversed’ clip is severely limited. E.g. the clip I’m dealing with is 195 MB, but the .mlt
reversed version shows as 3.4 KB.
The solution is to render an actual reversed version of the clip.
Kdenlive
Either….
- save your project with a new name and clear the timeline (easy way to keep same project settings)
- add a new track and disable all the others (tedious!)
- create a new project with the same settings, add the source clip & ‘reverse’ it
…then…
- drag your ‘reversed’ clip to a (new) track
- render it
ffmpeg
ffmpeg -i source-clip -vf reverse -af reverse reversed-clip
or, to only reverse the video…
ffmpeg -i source-clip -vf reverse reversed-clip
Note that this may not practical for large clips as I’ve read elsewhere that the entire file is buffered, so it is very memory-dependant.
Although this was a lot quicker, for me it also seemed to reduce the quality of the reversed clip, which was unexpected.
Source: 9,880 kb/s, AVC (Baseline@L3.1)(1 Ref Frames) 195.4 MB
Reversed: 371 kb/s, AVC (High@L3)(CABAC / 4 Ref Frames) 8.2 MB
add a comment |
I’ve just run into this and it seems like a bug. When you apply the speed
effect the ‘reversed’ clip shrinks to a tiny size on the timeline and you can only delete effects and the clip from the timeline (if you can find it).
You can easily reverse clips, but I think the reversal is actually just another saved job, so what you can do with that ‘reversed’ clip is severely limited. E.g. the clip I’m dealing with is 195 MB, but the .mlt
reversed version shows as 3.4 KB.
The solution is to render an actual reversed version of the clip.
Kdenlive
Either….
- save your project with a new name and clear the timeline (easy way to keep same project settings)
- add a new track and disable all the others (tedious!)
- create a new project with the same settings, add the source clip & ‘reverse’ it
…then…
- drag your ‘reversed’ clip to a (new) track
- render it
ffmpeg
ffmpeg -i source-clip -vf reverse -af reverse reversed-clip
or, to only reverse the video…
ffmpeg -i source-clip -vf reverse reversed-clip
Note that this may not practical for large clips as I’ve read elsewhere that the entire file is buffered, so it is very memory-dependant.
Although this was a lot quicker, for me it also seemed to reduce the quality of the reversed clip, which was unexpected.
Source: 9,880 kb/s, AVC (Baseline@L3.1)(1 Ref Frames) 195.4 MB
Reversed: 371 kb/s, AVC (High@L3)(CABAC / 4 Ref Frames) 8.2 MB
add a comment |
I’ve just run into this and it seems like a bug. When you apply the speed
effect the ‘reversed’ clip shrinks to a tiny size on the timeline and you can only delete effects and the clip from the timeline (if you can find it).
You can easily reverse clips, but I think the reversal is actually just another saved job, so what you can do with that ‘reversed’ clip is severely limited. E.g. the clip I’m dealing with is 195 MB, but the .mlt
reversed version shows as 3.4 KB.
The solution is to render an actual reversed version of the clip.
Kdenlive
Either….
- save your project with a new name and clear the timeline (easy way to keep same project settings)
- add a new track and disable all the others (tedious!)
- create a new project with the same settings, add the source clip & ‘reverse’ it
…then…
- drag your ‘reversed’ clip to a (new) track
- render it
ffmpeg
ffmpeg -i source-clip -vf reverse -af reverse reversed-clip
or, to only reverse the video…
ffmpeg -i source-clip -vf reverse reversed-clip
Note that this may not practical for large clips as I’ve read elsewhere that the entire file is buffered, so it is very memory-dependant.
Although this was a lot quicker, for me it also seemed to reduce the quality of the reversed clip, which was unexpected.
Source: 9,880 kb/s, AVC (Baseline@L3.1)(1 Ref Frames) 195.4 MB
Reversed: 371 kb/s, AVC (High@L3)(CABAC / 4 Ref Frames) 8.2 MB
I’ve just run into this and it seems like a bug. When you apply the speed
effect the ‘reversed’ clip shrinks to a tiny size on the timeline and you can only delete effects and the clip from the timeline (if you can find it).
You can easily reverse clips, but I think the reversal is actually just another saved job, so what you can do with that ‘reversed’ clip is severely limited. E.g. the clip I’m dealing with is 195 MB, but the .mlt
reversed version shows as 3.4 KB.
The solution is to render an actual reversed version of the clip.
Kdenlive
Either….
- save your project with a new name and clear the timeline (easy way to keep same project settings)
- add a new track and disable all the others (tedious!)
- create a new project with the same settings, add the source clip & ‘reverse’ it
…then…
- drag your ‘reversed’ clip to a (new) track
- render it
ffmpeg
ffmpeg -i source-clip -vf reverse -af reverse reversed-clip
or, to only reverse the video…
ffmpeg -i source-clip -vf reverse reversed-clip
Note that this may not practical for large clips as I’ve read elsewhere that the entire file is buffered, so it is very memory-dependant.
Although this was a lot quicker, for me it also seemed to reduce the quality of the reversed clip, which was unexpected.
Source: 9,880 kb/s, AVC (Baseline@L3.1)(1 Ref Frames) 195.4 MB
Reversed: 371 kb/s, AVC (High@L3)(CABAC / 4 Ref Frames) 8.2 MB
answered Feb 1 at 5:58
MoilleadóirMoilleadóir
172112
172112
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f985457%2fhow-to-reverse-a-video-and-fast-forward-it-using-kdenlive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If you need to find the clip again - assuming it's on disk (and not in a DB) - then do on the command line
find / -name "$name_of_the_file_of_your_clip_with_extension"
– Tomáš Pospíšek
Dec 12 '17 at 7:40