1

How i can install mediainfo into my centos6 using wget command?

i tried those commands but i get errors:

wget http://mediaarea.net/download/binary/mediainfo-gui/0.7.71/mediainfo-gui-0.7.71-1.x86_64.RHEL_6.rpm
wget http://mediaarea.net/download/binary/mediainfo/0.7.71/mediainfo-0.7.71-1.x86_64.RHEL_6.rpm
wget http://mediaarea.net/download/binary/libmediainfo0/0.7.71/libmediainfo0-0.7.71-1.x86_64.RHEL_6.rpm

rpm -ivh mediainfo-gui-0.7.71-1.x86_64.RHEL_6.rpm
rpm -ivh mediainfo-0.7.71-1.x86_64.RHEL_6.rpm
rpm -ivh libmediainfo0-0.7.71-1.x86_64.RHEL_6.rpm

What i have done wrong?

coodienoobie
  • 129
  • 5
  • 13

1 Answers1

4

Those RPMs are in the EPEL repo for CentOS. You'd be better off using them:

# yum --enablerepo extras install epel-release
# yum install mediainfo-gui mediainfo libmediainfo
Dave McNeill
  • 443
  • 4
  • 12
  • I get in second command following error, can you please help. No package mediainfo-gui available. No package mediainfo available. No package libmediainfo available. Nothing to do – coodienoobie Dec 05 '14 at 16:58
  • I tested the above on an empty, newly created vagrant box - works fine. I don't think I can help any further. Sorry. – Dave McNeill Dec 05 '14 at 17:02
  • https://unix.stackexchange.com/a/513327/409459 says, there should be a '=' before ```extras```: ```yum --enablerepo=extras install epel-release``` – psykid Apr 28 '21 at 09:20