How do you install avconv on Ubuntu Server 13.04?
I've searched and searched, but I can't find anything, besides compiling it, which gives me an error about ASM.
server sound video avconv
add a comment |
I've searched and searched, but I can't find anything, besides compiling it, which gives me an error about ASM.
server sound video avconv
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47
add a comment |
I've searched and searched, but I can't find anything, besides compiling it, which gives me an error about ASM.
server sound video avconv
I've searched and searched, but I can't find anything, besides compiling it, which gives me an error about ASM.
server sound video avconv
server sound video avconv
edited Dec 16 '13 at 4:36
user3079344
asked Dec 15 '13 at 23:38
user3079344user3079344
181125
181125
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47
add a comment |
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47
add a comment |
4 Answers
4
active
oldest
votes
You can install avconv with package libav-tools
sudo apt-get install libav-tools
add a comment |
open your terminal and type as
sudo apt-get install ffmpeg libav-tools
add a comment |
sudo apt-get install ffmpeg
This will also install the libav-tools by default
add a comment |
Unfortunately, those answer won't work on Bionic version because FFmpeg won't include the avahi libraries in the package. you will have to install libav-tools manually
in order to get avconv_cli
sudo apt install ffmpeg #requirement to run avahi
wget http://launchpadlibrarian.net/348889634/libav-tools_3.4.1-1_all.deb
sudo dpkg -i libav-tools_3.4.1-1_all.deb
I'm adding this answer here because this topic looks like the only one discusses the avconv but the answers are not for the later versions of Ubuntu distro.
But why would you if you could get the same result from ffmpeg.
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
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%2f391357%2fhow-do-you-install-avconv-on-ubuntu-server-13-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can install avconv with package libav-tools
sudo apt-get install libav-tools
add a comment |
You can install avconv with package libav-tools
sudo apt-get install libav-tools
add a comment |
You can install avconv with package libav-tools
sudo apt-get install libav-tools
You can install avconv with package libav-tools
sudo apt-get install libav-tools
answered Dec 18 '13 at 12:29
user224082
add a comment |
add a comment |
open your terminal and type as
sudo apt-get install ffmpeg libav-tools
add a comment |
open your terminal and type as
sudo apt-get install ffmpeg libav-tools
add a comment |
open your terminal and type as
sudo apt-get install ffmpeg libav-tools
open your terminal and type as
sudo apt-get install ffmpeg libav-tools
answered Dec 18 '13 at 12:34
rɑːdʒɑrɑːdʒɑ
58.1k85218302
58.1k85218302
add a comment |
add a comment |
sudo apt-get install ffmpeg
This will also install the libav-tools by default
add a comment |
sudo apt-get install ffmpeg
This will also install the libav-tools by default
add a comment |
sudo apt-get install ffmpeg
This will also install the libav-tools by default
sudo apt-get install ffmpeg
This will also install the libav-tools by default
answered Jan 16 '15 at 9:27
andy_doddandy_dodd
211
211
add a comment |
add a comment |
Unfortunately, those answer won't work on Bionic version because FFmpeg won't include the avahi libraries in the package. you will have to install libav-tools manually
in order to get avconv_cli
sudo apt install ffmpeg #requirement to run avahi
wget http://launchpadlibrarian.net/348889634/libav-tools_3.4.1-1_all.deb
sudo dpkg -i libav-tools_3.4.1-1_all.deb
I'm adding this answer here because this topic looks like the only one discusses the avconv but the answers are not for the later versions of Ubuntu distro.
But why would you if you could get the same result from ffmpeg.
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
add a comment |
Unfortunately, those answer won't work on Bionic version because FFmpeg won't include the avahi libraries in the package. you will have to install libav-tools manually
in order to get avconv_cli
sudo apt install ffmpeg #requirement to run avahi
wget http://launchpadlibrarian.net/348889634/libav-tools_3.4.1-1_all.deb
sudo dpkg -i libav-tools_3.4.1-1_all.deb
I'm adding this answer here because this topic looks like the only one discusses the avconv but the answers are not for the later versions of Ubuntu distro.
But why would you if you could get the same result from ffmpeg.
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
add a comment |
Unfortunately, those answer won't work on Bionic version because FFmpeg won't include the avahi libraries in the package. you will have to install libav-tools manually
in order to get avconv_cli
sudo apt install ffmpeg #requirement to run avahi
wget http://launchpadlibrarian.net/348889634/libav-tools_3.4.1-1_all.deb
sudo dpkg -i libav-tools_3.4.1-1_all.deb
I'm adding this answer here because this topic looks like the only one discusses the avconv but the answers are not for the later versions of Ubuntu distro.
But why would you if you could get the same result from ffmpeg.
Unfortunately, those answer won't work on Bionic version because FFmpeg won't include the avahi libraries in the package. you will have to install libav-tools manually
in order to get avconv_cli
sudo apt install ffmpeg #requirement to run avahi
wget http://launchpadlibrarian.net/348889634/libav-tools_3.4.1-1_all.deb
sudo dpkg -i libav-tools_3.4.1-1_all.deb
I'm adding this answer here because this topic looks like the only one discusses the avconv but the answers are not for the later versions of Ubuntu distro.
But why would you if you could get the same result from ffmpeg.
edited 7 mins ago
answered Aug 31 '18 at 1:23
SeandexSeandex
212
212
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
add a comment |
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
Thanks, this was helpful. But to be clear, you still need to have ffmpeg installed before installing the deb above.
– James Bradbury
Sep 10 '18 at 16:50
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
@JamesBradbury You are correct. because libav-tools depends on FFmpeg. It was for some people who were expecting FFmpeg includes libav-tools however, I should've been mentioned FFmpeg to be as clear as possible and error free. Thanks.
– Seandex
Sep 24 '18 at 10:17
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%2f391357%2fhow-do-you-install-avconv-on-ubuntu-server-13-04%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
In the future, you should post the error as it usually compiles just fine after installing all dependencies. Although, the recommended method is apt-get.
– mchid
Jul 10 '16 at 17:47