Chromium will not start - libffmpeg problem
When starting chromium-browser from terminal I get:
/usr/lib/chromium-browser/chromium-browser: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory
I tried reinstalling ffmpeg which didn't work. How can I fix this ?
chromium ffmpeg
add a comment |
When starting chromium-browser from terminal I get:
/usr/lib/chromium-browser/chromium-browser: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory
I tried reinstalling ffmpeg which didn't work. How can I fix this ?
chromium ffmpeg
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45
add a comment |
When starting chromium-browser from terminal I get:
/usr/lib/chromium-browser/chromium-browser: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory
I tried reinstalling ffmpeg which didn't work. How can I fix this ?
chromium ffmpeg
When starting chromium-browser from terminal I get:
/usr/lib/chromium-browser/chromium-browser: error while loading shared libraries: libffmpeg.so: cannot open shared object file: No such file or directory
I tried reinstalling ffmpeg which didn't work. How can I fix this ?
chromium ffmpeg
chromium ffmpeg
asked Nov 29 '15 at 20:39
RicevindRicevind
112
112
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45
add a comment |
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45
add a comment |
3 Answers
3
active
oldest
votes
First check if you have ffmpeg installed in your system, by typing which ffmpeg
. If it's there but it's not recognized, it means it's broken and you're gonna have to reinstall it. Try apt-get --reinstall install ffmpeg
.
That, assuming you didn't compile it yourself, in that case you're gonna have to download a fresh copy of ffmpeg from here http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2, and recompile.
I runwhich ffmpeg
and gotusr/local/bin/ffmpeg
Than i didapt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed./config
thanmake
andmake install
yet it didn't help. Still the same error
– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory/usr/lib/chromium-browser/libs/
and dols -l
, to see which files are present there and their permissions. libffmpeg.so should be there.
– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In/usr/lib/chromium-browser/libs/
ther ins notlibffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c
– Ricevind
Nov 29 '15 at 22:06
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Trysudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.
– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You
– Ricevind
Nov 29 '15 at 22:25
add a comment |
I faced the same problem, but then I found that chromium location is /usr/bin/chromium-browser
instead of /usr/lib/chromium-browser/chromium-browser
add a comment |
In Ubuntu the Chromium libfmmpeg.so library (./usr/lib/chromium-browser/libffmpeg.so
) is provided by the chromium-codecs-ffmpeg-extra
package, whose installation was likely corrupted in your case.
In order to solve the problem, you need to reinstall the package:
apt-get --reinstall chromium-codecs-ffmpeg-extra
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%2f704003%2fchromium-will-not-start-libffmpeg-problem%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
First check if you have ffmpeg installed in your system, by typing which ffmpeg
. If it's there but it's not recognized, it means it's broken and you're gonna have to reinstall it. Try apt-get --reinstall install ffmpeg
.
That, assuming you didn't compile it yourself, in that case you're gonna have to download a fresh copy of ffmpeg from here http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2, and recompile.
I runwhich ffmpeg
and gotusr/local/bin/ffmpeg
Than i didapt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed./config
thanmake
andmake install
yet it didn't help. Still the same error
– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory/usr/lib/chromium-browser/libs/
and dols -l
, to see which files are present there and their permissions. libffmpeg.so should be there.
– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In/usr/lib/chromium-browser/libs/
ther ins notlibffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c
– Ricevind
Nov 29 '15 at 22:06
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Trysudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.
– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You
– Ricevind
Nov 29 '15 at 22:25
add a comment |
First check if you have ffmpeg installed in your system, by typing which ffmpeg
. If it's there but it's not recognized, it means it's broken and you're gonna have to reinstall it. Try apt-get --reinstall install ffmpeg
.
That, assuming you didn't compile it yourself, in that case you're gonna have to download a fresh copy of ffmpeg from here http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2, and recompile.
I runwhich ffmpeg
and gotusr/local/bin/ffmpeg
Than i didapt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed./config
thanmake
andmake install
yet it didn't help. Still the same error
– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory/usr/lib/chromium-browser/libs/
and dols -l
, to see which files are present there and their permissions. libffmpeg.so should be there.
– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In/usr/lib/chromium-browser/libs/
ther ins notlibffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c
– Ricevind
Nov 29 '15 at 22:06
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Trysudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.
– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You
– Ricevind
Nov 29 '15 at 22:25
add a comment |
First check if you have ffmpeg installed in your system, by typing which ffmpeg
. If it's there but it's not recognized, it means it's broken and you're gonna have to reinstall it. Try apt-get --reinstall install ffmpeg
.
That, assuming you didn't compile it yourself, in that case you're gonna have to download a fresh copy of ffmpeg from here http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2, and recompile.
First check if you have ffmpeg installed in your system, by typing which ffmpeg
. If it's there but it's not recognized, it means it's broken and you're gonna have to reinstall it. Try apt-get --reinstall install ffmpeg
.
That, assuming you didn't compile it yourself, in that case you're gonna have to download a fresh copy of ffmpeg from here http://ffmpeg.org/releases/ffmpeg-2.8.3.tar.bz2, and recompile.
answered Nov 29 '15 at 20:50
SevenSonicStructuresSevenSonicStructures
1263
1263
I runwhich ffmpeg
and gotusr/local/bin/ffmpeg
Than i didapt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed./config
thanmake
andmake install
yet it didn't help. Still the same error
– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory/usr/lib/chromium-browser/libs/
and dols -l
, to see which files are present there and their permissions. libffmpeg.so should be there.
– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In/usr/lib/chromium-browser/libs/
ther ins notlibffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c
– Ricevind
Nov 29 '15 at 22:06
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Trysudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.
– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You
– Ricevind
Nov 29 '15 at 22:25
add a comment |
I runwhich ffmpeg
and gotusr/local/bin/ffmpeg
Than i didapt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed./config
thanmake
andmake install
yet it didn't help. Still the same error
– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory/usr/lib/chromium-browser/libs/
and dols -l
, to see which files are present there and their permissions. libffmpeg.so should be there.
– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In/usr/lib/chromium-browser/libs/
ther ins notlibffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c
– Ricevind
Nov 29 '15 at 22:06
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Trysudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.
– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You
– Ricevind
Nov 29 '15 at 22:25
I run
which ffmpeg
and got usr/local/bin/ffmpeg
Than i did apt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed ./config
than make
and make install
yet it didn't help. Still the same error– Ricevind
Nov 29 '15 at 21:41
I run
which ffmpeg
and got usr/local/bin/ffmpeg
Than i did apt-get -- reinstall install ffmpeg
After which nothing changed. Than i downloaded said file. Unpacked it in /opt and runed ./config
than make
and make install
yet it didn't help. Still the same error– Ricevind
Nov 29 '15 at 21:41
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory
/usr/lib/chromium-browser/libs/
and do ls -l
, to see which files are present there and their permissions. libffmpeg.so should be there.– SevenSonicStructures
Nov 29 '15 at 21:47
At the last step, try running sudo make install instead, so it will be installed for all users and it'll ensure chromium will recognize it. Additionally, navigate to the directory
/usr/lib/chromium-browser/libs/
and do ls -l
, to see which files are present there and their permissions. libffmpeg.so should be there.– SevenSonicStructures
Nov 29 '15 at 21:47
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In
/usr/lib/chromium-browser/libs/
ther ins not libffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c– Ricevind
Nov 29 '15 at 22:06
My bad i didn't write it, i was doing it as a root... (had opend folder in nautilus as administrator and from there i opened terminal which was in root). In
/usr/lib/chromium-browser/libs/
ther ins not libffmpeg.so' listed. But then i used
locate -br ^libffmpeg.so$` and there it was. I made a gist with copy of my terminal. gist.github.com/anonymous/cc93ae7e5e78710ee31c– Ricevind
Nov 29 '15 at 22:06
1
1
If the file isn't there when performing ls, it means there must be a broken association somewhere. Try
sudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.– SevenSonicStructures
Nov 29 '15 at 22:19
If the file isn't there when performing ls, it means there must be a broken association somewhere. Try
sudo apt-get install chromium-codecs-ffmpeg
* and see if that fixes it, if it doesn't let you, add --reinstall to apt-get to force it. *Fixed the name of the package.– SevenSonicStructures
Nov 29 '15 at 22:19
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You– Ricevind
Nov 29 '15 at 22:25
sudo apt-get install chromium-codecs-ffmpeg
solved it. I can use chromium again :) Thank You– Ricevind
Nov 29 '15 at 22:25
add a comment |
I faced the same problem, but then I found that chromium location is /usr/bin/chromium-browser
instead of /usr/lib/chromium-browser/chromium-browser
add a comment |
I faced the same problem, but then I found that chromium location is /usr/bin/chromium-browser
instead of /usr/lib/chromium-browser/chromium-browser
add a comment |
I faced the same problem, but then I found that chromium location is /usr/bin/chromium-browser
instead of /usr/lib/chromium-browser/chromium-browser
I faced the same problem, but then I found that chromium location is /usr/bin/chromium-browser
instead of /usr/lib/chromium-browser/chromium-browser
answered Sep 27 '17 at 8:37
Muhammad GelbanaMuhammad Gelbana
2,13362136
2,13362136
add a comment |
add a comment |
In Ubuntu the Chromium libfmmpeg.so library (./usr/lib/chromium-browser/libffmpeg.so
) is provided by the chromium-codecs-ffmpeg-extra
package, whose installation was likely corrupted in your case.
In order to solve the problem, you need to reinstall the package:
apt-get --reinstall chromium-codecs-ffmpeg-extra
add a comment |
In Ubuntu the Chromium libfmmpeg.so library (./usr/lib/chromium-browser/libffmpeg.so
) is provided by the chromium-codecs-ffmpeg-extra
package, whose installation was likely corrupted in your case.
In order to solve the problem, you need to reinstall the package:
apt-get --reinstall chromium-codecs-ffmpeg-extra
add a comment |
In Ubuntu the Chromium libfmmpeg.so library (./usr/lib/chromium-browser/libffmpeg.so
) is provided by the chromium-codecs-ffmpeg-extra
package, whose installation was likely corrupted in your case.
In order to solve the problem, you need to reinstall the package:
apt-get --reinstall chromium-codecs-ffmpeg-extra
In Ubuntu the Chromium libfmmpeg.so library (./usr/lib/chromium-browser/libffmpeg.so
) is provided by the chromium-codecs-ffmpeg-extra
package, whose installation was likely corrupted in your case.
In order to solve the problem, you need to reinstall the package:
apt-get --reinstall chromium-codecs-ffmpeg-extra
answered Jan 4 at 13:10
MarcusMarcus
78021022
78021022
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%2f704003%2fchromium-will-not-start-libffmpeg-problem%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
Is this your post: elementaryos.stackexchange.com/questions/3271/…
– Ravan
Nov 30 '15 at 2:45