How can I update libavcodec to 57?
I am trying to build VLC player on Ubuntu 14.04.
It's been a tough road but I am learning along the way. However I am really stuck with this lib libavcodec
that is required as prompted by this message.
configure: error: Requested 'libavcodec >= 57.16.0' but version of libavcodec is 54.35.0. Pass --disable-avcodec to ignore this error.
What I don't understand is why apt
does not have libavcodec
above 54. Is this a common issue where libs are updated, but not on apt
? If so how do I got about getting the version I need?
14.04 apt compiling vlc
bumped to the homepage by Community♦ 19 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to build VLC player on Ubuntu 14.04.
It's been a tough road but I am learning along the way. However I am really stuck with this lib libavcodec
that is required as prompted by this message.
configure: error: Requested 'libavcodec >= 57.16.0' but version of libavcodec is 54.35.0. Pass --disable-avcodec to ignore this error.
What I don't understand is why apt
does not have libavcodec
above 54. Is this a common issue where libs are updated, but not on apt
? If so how do I got about getting the version I need?
14.04 apt compiling vlc
bumped to the homepage by Community♦ 19 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to build VLC player on Ubuntu 14.04.
It's been a tough road but I am learning along the way. However I am really stuck with this lib libavcodec
that is required as prompted by this message.
configure: error: Requested 'libavcodec >= 57.16.0' but version of libavcodec is 54.35.0. Pass --disable-avcodec to ignore this error.
What I don't understand is why apt
does not have libavcodec
above 54. Is this a common issue where libs are updated, but not on apt
? If so how do I got about getting the version I need?
14.04 apt compiling vlc
I am trying to build VLC player on Ubuntu 14.04.
It's been a tough road but I am learning along the way. However I am really stuck with this lib libavcodec
that is required as prompted by this message.
configure: error: Requested 'libavcodec >= 57.16.0' but version of libavcodec is 54.35.0. Pass --disable-avcodec to ignore this error.
What I don't understand is why apt
does not have libavcodec
above 54. Is this a common issue where libs are updated, but not on apt
? If so how do I got about getting the version I need?
14.04 apt compiling vlc
14.04 apt compiling vlc
edited Oct 7 '16 at 17:48
Thomas
3,79981527
3,79981527
asked Oct 7 '16 at 16:54
jerry berry1jerry berry1
2113
2113
bumped to the homepage by Community♦ 19 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 19 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Well, for 14.04, only libavcodec54
is available. You can choose to ignore the error by following the suggested route, i.e Pass --disable-avcodec to ignore this error
. You can also try installing libavcodec-dev
and see if it is working.
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repositorydeb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…
– PeterCo
Nov 30 '16 at 13:35
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%2f834297%2fhow-can-i-update-libavcodec-to-57%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
Well, for 14.04, only libavcodec54
is available. You can choose to ignore the error by following the suggested route, i.e Pass --disable-avcodec to ignore this error
. You can also try installing libavcodec-dev
and see if it is working.
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repositorydeb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…
– PeterCo
Nov 30 '16 at 13:35
add a comment |
Well, for 14.04, only libavcodec54
is available. You can choose to ignore the error by following the suggested route, i.e Pass --disable-avcodec to ignore this error
. You can also try installing libavcodec-dev
and see if it is working.
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repositorydeb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…
– PeterCo
Nov 30 '16 at 13:35
add a comment |
Well, for 14.04, only libavcodec54
is available. You can choose to ignore the error by following the suggested route, i.e Pass --disable-avcodec to ignore this error
. You can also try installing libavcodec-dev
and see if it is working.
Well, for 14.04, only libavcodec54
is available. You can choose to ignore the error by following the suggested route, i.e Pass --disable-avcodec to ignore this error
. You can also try installing libavcodec-dev
and see if it is working.
answered Oct 7 '16 at 17:02
RonRon
14.7k44058
14.7k44058
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repositorydeb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…
– PeterCo
Nov 30 '16 at 13:35
add a comment |
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repositorydeb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…
– PeterCo
Nov 30 '16 at 13:35
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
Oh, I understand. It seems crazy to pass this disable parameter, as I think most of VLC won't work without it. How can I figure out what version of Ubuntu would work with libavcodec 57?
– jerry berry1
Oct 7 '16 at 17:04
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repository
deb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…– PeterCo
Nov 30 '16 at 13:35
I'm not sure if this works for 14.04 too, but for 16.10: you have to add an additional repository
deb http://us.archive.ubuntu.com/ubuntu yakkety main universe
to get this newer version. You will find details instructions here: installion.co.uk/ubuntu/yakkety/universe/l/libavcodec-extra57/…– PeterCo
Nov 30 '16 at 13:35
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%2f834297%2fhow-can-i-update-libavcodec-to-57%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