Openshot Video Editor 1.4.3-1.2 - How to stop it auto updating to v 2.43 etc in 18.04 LTS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
Basically, the latest version openshot-qt
increases file size, which does not have any advantages. I have a lot of 2-hours length mp4 video, which were cut from 2-3 hours plus F1 downloads. The original files are in mkv or mp4 container with approximately 8-12GB size.
Using the old openshot
1.4.3-1.2, I was very happy with the small file size and quality at 720p 25fps using xlib264
and AAC
which outputs 1.4GB file. However, the latest version increases the file size to 3GB.
So I uninstalled openshot-qt
and installed openshot_1.4.3-1.2_all.deb
. It had missing dependencies, but worked perfectly. But Ubuntu 18.04 keeps uninstalling and installing the latest openshot-qt
. I used Synaptic Package Manager to mark this as locked but, Ubuntu keeps updating openshot. All I want is to use the old Openshot Video Editor without self auto-updating to the latest version (which does not always work with audio and increases file size).
Is there any way to lock the version of old Openshot Video Editor?
software-center openshot
add a comment |
Basically, the latest version openshot-qt
increases file size, which does not have any advantages. I have a lot of 2-hours length mp4 video, which were cut from 2-3 hours plus F1 downloads. The original files are in mkv or mp4 container with approximately 8-12GB size.
Using the old openshot
1.4.3-1.2, I was very happy with the small file size and quality at 720p 25fps using xlib264
and AAC
which outputs 1.4GB file. However, the latest version increases the file size to 3GB.
So I uninstalled openshot-qt
and installed openshot_1.4.3-1.2_all.deb
. It had missing dependencies, but worked perfectly. But Ubuntu 18.04 keeps uninstalling and installing the latest openshot-qt
. I used Synaptic Package Manager to mark this as locked but, Ubuntu keeps updating openshot. All I want is to use the old Openshot Video Editor without self auto-updating to the latest version (which does not always work with audio and increases file size).
Is there any way to lock the version of old Openshot Video Editor?
software-center openshot
2
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Alsoapt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.
– Organic Marble
Feb 25 at 2:33
add a comment |
Basically, the latest version openshot-qt
increases file size, which does not have any advantages. I have a lot of 2-hours length mp4 video, which were cut from 2-3 hours plus F1 downloads. The original files are in mkv or mp4 container with approximately 8-12GB size.
Using the old openshot
1.4.3-1.2, I was very happy with the small file size and quality at 720p 25fps using xlib264
and AAC
which outputs 1.4GB file. However, the latest version increases the file size to 3GB.
So I uninstalled openshot-qt
and installed openshot_1.4.3-1.2_all.deb
. It had missing dependencies, but worked perfectly. But Ubuntu 18.04 keeps uninstalling and installing the latest openshot-qt
. I used Synaptic Package Manager to mark this as locked but, Ubuntu keeps updating openshot. All I want is to use the old Openshot Video Editor without self auto-updating to the latest version (which does not always work with audio and increases file size).
Is there any way to lock the version of old Openshot Video Editor?
software-center openshot
Basically, the latest version openshot-qt
increases file size, which does not have any advantages. I have a lot of 2-hours length mp4 video, which were cut from 2-3 hours plus F1 downloads. The original files are in mkv or mp4 container with approximately 8-12GB size.
Using the old openshot
1.4.3-1.2, I was very happy with the small file size and quality at 720p 25fps using xlib264
and AAC
which outputs 1.4GB file. However, the latest version increases the file size to 3GB.
So I uninstalled openshot-qt
and installed openshot_1.4.3-1.2_all.deb
. It had missing dependencies, but worked perfectly. But Ubuntu 18.04 keeps uninstalling and installing the latest openshot-qt
. I used Synaptic Package Manager to mark this as locked but, Ubuntu keeps updating openshot. All I want is to use the old Openshot Video Editor without self auto-updating to the latest version (which does not always work with audio and increases file size).
Is there any way to lock the version of old Openshot Video Editor?
software-center openshot
software-center openshot
edited Feb 25 at 13:00
Olimjon
2,346824
2,346824
asked Feb 25 at 2:11
MartinMartin
132
132
2
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Alsoapt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.
– Organic Marble
Feb 25 at 2:33
add a comment |
2
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Alsoapt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.
– Organic Marble
Feb 25 at 2:33
2
2
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Also
apt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.– Organic Marble
Feb 25 at 2:33
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Also
apt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.– Organic Marble
Feb 25 at 2:33
add a comment |
1 Answer
1
active
oldest
votes
Clarification:
- Locking the version in Synaptic Package Manager does not mark it
locked in other package managers (dpkg
,apt
,aptitude
, ...) - In Ubuntu, there is a package called
unattended-upgrades
that will
automatically update your system to the latest version periodically. - This means that your computer will install the latest version of
openshot
when available, because your lock works only inside the Synaptic Package Manager. - Run
sudo apt upgrade
, if you see openshot among packages that will be updated, then
What to do:
Do this:
echo "openshot hold" | sudo dpkg --set-selections
sudo apt-mark hold openshot
This will mark them hold in dpkg
and apt
.
Remove Lock
echo "openshot install" | sudo dpkg --set-selections
sudo apt-mark unhold openshot
This will remove lock in dpkg
and apt
.
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
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%2f1120996%2fopenshot-video-editor-1-4-3-1-2-how-to-stop-it-auto-updating-to-v-2-43-etc-in%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
Clarification:
- Locking the version in Synaptic Package Manager does not mark it
locked in other package managers (dpkg
,apt
,aptitude
, ...) - In Ubuntu, there is a package called
unattended-upgrades
that will
automatically update your system to the latest version periodically. - This means that your computer will install the latest version of
openshot
when available, because your lock works only inside the Synaptic Package Manager. - Run
sudo apt upgrade
, if you see openshot among packages that will be updated, then
What to do:
Do this:
echo "openshot hold" | sudo dpkg --set-selections
sudo apt-mark hold openshot
This will mark them hold in dpkg
and apt
.
Remove Lock
echo "openshot install" | sudo dpkg --set-selections
sudo apt-mark unhold openshot
This will remove lock in dpkg
and apt
.
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
add a comment |
Clarification:
- Locking the version in Synaptic Package Manager does not mark it
locked in other package managers (dpkg
,apt
,aptitude
, ...) - In Ubuntu, there is a package called
unattended-upgrades
that will
automatically update your system to the latest version periodically. - This means that your computer will install the latest version of
openshot
when available, because your lock works only inside the Synaptic Package Manager. - Run
sudo apt upgrade
, if you see openshot among packages that will be updated, then
What to do:
Do this:
echo "openshot hold" | sudo dpkg --set-selections
sudo apt-mark hold openshot
This will mark them hold in dpkg
and apt
.
Remove Lock
echo "openshot install" | sudo dpkg --set-selections
sudo apt-mark unhold openshot
This will remove lock in dpkg
and apt
.
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
add a comment |
Clarification:
- Locking the version in Synaptic Package Manager does not mark it
locked in other package managers (dpkg
,apt
,aptitude
, ...) - In Ubuntu, there is a package called
unattended-upgrades
that will
automatically update your system to the latest version periodically. - This means that your computer will install the latest version of
openshot
when available, because your lock works only inside the Synaptic Package Manager. - Run
sudo apt upgrade
, if you see openshot among packages that will be updated, then
What to do:
Do this:
echo "openshot hold" | sudo dpkg --set-selections
sudo apt-mark hold openshot
This will mark them hold in dpkg
and apt
.
Remove Lock
echo "openshot install" | sudo dpkg --set-selections
sudo apt-mark unhold openshot
This will remove lock in dpkg
and apt
.
Clarification:
- Locking the version in Synaptic Package Manager does not mark it
locked in other package managers (dpkg
,apt
,aptitude
, ...) - In Ubuntu, there is a package called
unattended-upgrades
that will
automatically update your system to the latest version periodically. - This means that your computer will install the latest version of
openshot
when available, because your lock works only inside the Synaptic Package Manager. - Run
sudo apt upgrade
, if you see openshot among packages that will be updated, then
What to do:
Do this:
echo "openshot hold" | sudo dpkg --set-selections
sudo apt-mark hold openshot
This will mark them hold in dpkg
and apt
.
Remove Lock
echo "openshot install" | sudo dpkg --set-selections
sudo apt-mark unhold openshot
This will remove lock in dpkg
and apt
.
edited Feb 28 at 1:39
answered Feb 25 at 13:29
OlimjonOlimjon
2,346824
2,346824
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
add a comment |
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
Thanks, this has now stopped openshot from updating, how do I undo in the future if I want to update this software ?
– Martin
Feb 27 at 23:17
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
@Martin, I updated the answer
– Olimjon
Feb 28 at 1:39
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%2f1120996%2fopenshot-video-editor-1-4-3-1-2-how-to-stop-it-auto-updating-to-v-2-43-etc-in%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
2
Pinning / locking it in Synaptic should work. Please provide a screenshot of Synaptic showing the locked package. Also
apt policy XXX
where XXX is the package(s) you are trying to prevent being updated. Update your question with this information, don't post it in comments.– Organic Marble
Feb 25 at 2:33