Conflicts between attempted installs while installing gstreamer plugin on Centos
I am trying to install gstreamer-ffmpeg package for opencv c++ coding purpose on Centos-6.7
When I type;
sudo yum install gstreamer-ffmpeg*
it gives error:
Transaction Check Error:
file /usr/lib64/libavutil.so.50 conflicts between attempted installs of libavutil50-0.7.16-33.el6.x86_64 and ffmpeg-compat-0.6.7-1.el6.x86_64
However there is no such file;
[mg@MgCentOS Desktop]$ locate libavutil.so.50
[mg@MgCentOS Desktop]$
And also I cannot remove, because it is not installed;
[mg@MgCentOS Desktop]$ sudo yum remove libavutil*
[sudo] password for mg:
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
No Match for argument: libavutil*
Loading mirror speeds from cached hostfile
* base: mirror.rackdc.com
* epel: mirror.de.leaseweb.net
* extras: ftp.itu.edu.tr
* remi-safe: rpms.remirepo.net
* rpmforge: apt.sw.be
* rpmfusion-free-updates: fedora.tu-chemnitz.de
* update: mirror.rackdc.com
Package(s) libavutil* available, but not installed.
No Packages marked for removal
Could you please help me how I can solve this issue, and install gstreamer plugin?
linux ffmpeg centos plugins
add a comment |
I am trying to install gstreamer-ffmpeg package for opencv c++ coding purpose on Centos-6.7
When I type;
sudo yum install gstreamer-ffmpeg*
it gives error:
Transaction Check Error:
file /usr/lib64/libavutil.so.50 conflicts between attempted installs of libavutil50-0.7.16-33.el6.x86_64 and ffmpeg-compat-0.6.7-1.el6.x86_64
However there is no such file;
[mg@MgCentOS Desktop]$ locate libavutil.so.50
[mg@MgCentOS Desktop]$
And also I cannot remove, because it is not installed;
[mg@MgCentOS Desktop]$ sudo yum remove libavutil*
[sudo] password for mg:
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
No Match for argument: libavutil*
Loading mirror speeds from cached hostfile
* base: mirror.rackdc.com
* epel: mirror.de.leaseweb.net
* extras: ftp.itu.edu.tr
* remi-safe: rpms.remirepo.net
* rpmforge: apt.sw.be
* rpmfusion-free-updates: fedora.tu-chemnitz.de
* update: mirror.rackdc.com
Package(s) libavutil* available, but not installed.
No Packages marked for removal
Could you please help me how I can solve this issue, and install gstreamer plugin?
linux ffmpeg centos plugins
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16
add a comment |
I am trying to install gstreamer-ffmpeg package for opencv c++ coding purpose on Centos-6.7
When I type;
sudo yum install gstreamer-ffmpeg*
it gives error:
Transaction Check Error:
file /usr/lib64/libavutil.so.50 conflicts between attempted installs of libavutil50-0.7.16-33.el6.x86_64 and ffmpeg-compat-0.6.7-1.el6.x86_64
However there is no such file;
[mg@MgCentOS Desktop]$ locate libavutil.so.50
[mg@MgCentOS Desktop]$
And also I cannot remove, because it is not installed;
[mg@MgCentOS Desktop]$ sudo yum remove libavutil*
[sudo] password for mg:
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
No Match for argument: libavutil*
Loading mirror speeds from cached hostfile
* base: mirror.rackdc.com
* epel: mirror.de.leaseweb.net
* extras: ftp.itu.edu.tr
* remi-safe: rpms.remirepo.net
* rpmforge: apt.sw.be
* rpmfusion-free-updates: fedora.tu-chemnitz.de
* update: mirror.rackdc.com
Package(s) libavutil* available, but not installed.
No Packages marked for removal
Could you please help me how I can solve this issue, and install gstreamer plugin?
linux ffmpeg centos plugins
I am trying to install gstreamer-ffmpeg package for opencv c++ coding purpose on Centos-6.7
When I type;
sudo yum install gstreamer-ffmpeg*
it gives error:
Transaction Check Error:
file /usr/lib64/libavutil.so.50 conflicts between attempted installs of libavutil50-0.7.16-33.el6.x86_64 and ffmpeg-compat-0.6.7-1.el6.x86_64
However there is no such file;
[mg@MgCentOS Desktop]$ locate libavutil.so.50
[mg@MgCentOS Desktop]$
And also I cannot remove, because it is not installed;
[mg@MgCentOS Desktop]$ sudo yum remove libavutil*
[sudo] password for mg:
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Remove Process
No Match for argument: libavutil*
Loading mirror speeds from cached hostfile
* base: mirror.rackdc.com
* epel: mirror.de.leaseweb.net
* extras: ftp.itu.edu.tr
* remi-safe: rpms.remirepo.net
* rpmforge: apt.sw.be
* rpmfusion-free-updates: fedora.tu-chemnitz.de
* update: mirror.rackdc.com
Package(s) libavutil* available, but not installed.
No Packages marked for removal
Could you please help me how I can solve this issue, and install gstreamer plugin?
linux ffmpeg centos plugins
linux ffmpeg centos plugins
asked Nov 17 '15 at 14:22
goGudgoGud
11115
11115
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16
add a comment |
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16
add a comment |
2 Answers
2
active
oldest
votes
Do you already have libavutil50 installed? If so, try to remove it and do the installation again afterwards.
Edit:
So it looks like I didn't read the question and my previous answer is useless.
You should also check if you have installed ffmpeg-compat on your mahcine.
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
add a comment |
This is old, but I've had the same issue installing vlc.
You can have a library installed "outside of yum", with rpm, so one should check for that too:
rpm -qa | grep libavutil
then remove if found (I had to also remove libswscale):
rpm -e libswscale0-0.7.16-33.el6.x86_64
rpm -e libavutil50-0.7.16-33.el6.x86_64
This did it for me.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1001814%2fconflicts-between-attempted-installs-while-installing-gstreamer-plugin-on-centos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Do you already have libavutil50 installed? If so, try to remove it and do the installation again afterwards.
Edit:
So it looks like I didn't read the question and my previous answer is useless.
You should also check if you have installed ffmpeg-compat on your mahcine.
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
add a comment |
Do you already have libavutil50 installed? If so, try to remove it and do the installation again afterwards.
Edit:
So it looks like I didn't read the question and my previous answer is useless.
You should also check if you have installed ffmpeg-compat on your mahcine.
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
add a comment |
Do you already have libavutil50 installed? If so, try to remove it and do the installation again afterwards.
Edit:
So it looks like I didn't read the question and my previous answer is useless.
You should also check if you have installed ffmpeg-compat on your mahcine.
Do you already have libavutil50 installed? If so, try to remove it and do the installation again afterwards.
Edit:
So it looks like I didn't read the question and my previous answer is useless.
You should also check if you have installed ffmpeg-compat on your mahcine.
edited Nov 18 '15 at 8:31
answered Nov 17 '15 at 15:22
cristicristi
408312
408312
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
add a comment |
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Did you really read my question?
– goGud
Nov 18 '15 at 7:12
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
Sorry :D. That was awkward (actually reading your question).
– cristi
Nov 18 '15 at 7:17
add a comment |
This is old, but I've had the same issue installing vlc.
You can have a library installed "outside of yum", with rpm, so one should check for that too:
rpm -qa | grep libavutil
then remove if found (I had to also remove libswscale):
rpm -e libswscale0-0.7.16-33.el6.x86_64
rpm -e libavutil50-0.7.16-33.el6.x86_64
This did it for me.
add a comment |
This is old, but I've had the same issue installing vlc.
You can have a library installed "outside of yum", with rpm, so one should check for that too:
rpm -qa | grep libavutil
then remove if found (I had to also remove libswscale):
rpm -e libswscale0-0.7.16-33.el6.x86_64
rpm -e libavutil50-0.7.16-33.el6.x86_64
This did it for me.
add a comment |
This is old, but I've had the same issue installing vlc.
You can have a library installed "outside of yum", with rpm, so one should check for that too:
rpm -qa | grep libavutil
then remove if found (I had to also remove libswscale):
rpm -e libswscale0-0.7.16-33.el6.x86_64
rpm -e libavutil50-0.7.16-33.el6.x86_64
This did it for me.
This is old, but I've had the same issue installing vlc.
You can have a library installed "outside of yum", with rpm, so one should check for that too:
rpm -qa | grep libavutil
then remove if found (I had to also remove libswscale):
rpm -e libswscale0-0.7.16-33.el6.x86_64
rpm -e libavutil50-0.7.16-33.el6.x86_64
This did it for me.
answered Jul 13 '16 at 15:40
Vasile CeterasVasile Ceteras
101
101
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1001814%2fconflicts-between-attempted-installs-while-installing-gstreamer-plugin-on-centos%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
Then try to find if you have ffmpeg-compat already installed
– cristi
Nov 18 '15 at 7:16