Page 1 of 1

[SOLVED] Videos won't play

PostPosted: Dec 25th, '13, 00:57
by nightshadow
Hello there, I'm new to Mageia Linux, and I'm unable to get video working on my system.
Basically, whichever format I try to play, I get some requirements, like MPEG Video decoder, MPEG 4 AAC decoder, H.264 decoder, etc.
I did a search, but found nothing relevant.I tried to install VLC, but I got this
Code: Select all
[root@localhost nightshadow]# urpmi vlc
A requested package cannot be installed:
vlc-plugin-common-2.0.8-2.mga3.tainted.i586 (due to unsatisfied libfaad.so.2)
Continue installation anyway? (Y/n) y
While some packages may have been installed, there were failures.
A requested package cannot be installed:
vlc-plugin-common-2.0.8-2.mga3.tainted.i586 (due to unsatisfied libfaad.so.2)
Continue installation anyway?
[root@localhost nightshadow]#


Any help is appreciated.

Regards,
Darko.

P.S. - I'm on M3 x64.

Re: Videos won't play

PostPosted: Dec 25th, '13, 20:38
by Latte
If you have a 64bit installation, are your repos set up correctly (since urpmi tries to install the 32bit package)?

Please give the output of:
Code: Select all
urpmq --list-media active

and
Code: Select all
urpmq --list-url

Re: Videos won't play

PostPosted: Dec 26th, '13, 02:37
by nightshadow
Code: Select all
[root@localhost nightshadow]#     urpmq --list-media active
Core Updates (distrib1)
Nonfree Updates (distrib2)
Core 32bit Updates (distrib4)
Nonfree 32bit Updates (distrib5)
Tainted 32bit Updates (distrib6)
Core Release (distrib7)
Core Updates (distrib9)
Core Backports (distrib13)
Nonfree Release (distrib17)
Nonfree Updates (distrib19)
Core 32bit Release (distrib37)
Core 32bit Updates (distrib38)
Nonfree 32bit Release (distrib42)
Nonfree 32bit Updates (distrib43)
[root@localhost nightshadow]#


Code: Select all
[root@localhost nightshadow]# urpmq --list-url
Core Release cdrom://x86_64/media/core
Nonfree Release cdrom://x86_64/media/nonfree
Core Updates (distrib1) http://mirror.nexcess.net/mageia/distrib/3/x86_64/media/core/updates
Nonfree Updates (distrib2) http://mirror.nexcess.net/mageia/distrib/3/x86_64/media/nonfree/updates
Tainted Updates (distrib3) http://mirror.nexcess.net/mageia/distrib/3/x86_64/media/tainted/updates
Core 32bit Updates (distrib4) http://mirror.nexcess.net/mageia/distrib/3/i586/media/core/updates
Nonfree 32bit Updates (distrib5) http://mirror.nexcess.net/mageia/distrib/3/i586/media/nonfree/updates
Tainted 32bit Updates (distrib6) http://mirror.nexcess.net/mageia/distrib/3/i586/media/tainted/updates
Core Release (distrib7) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/x86_64/media/core/release
Core Release Debug (distrib8)
Core Updates (distrib9) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/x86_64/media/core/updates
Core Updates Debug (distrib10)
Core Updates Testing (distrib11)
Core Updates Testing Debug (distrib12)
Core Backports (distrib13) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/x86_64/media/core/backports
Core Backports Debug (distrib14)
Core Backports Testing (distrib15)
Core Backports Testing Debug (distrib16)
Nonfree Release (distrib17) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/x86_64/media/nonfree/release
Nonfree Release Debug (distrib18)
Nonfree Updates (distrib19) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/x86_64/media/nonfree/updates
Nonfree Updates Debug (distrib20)
Nonfree Updates Testing (distrib21)
Nonfree Updates Testing Debug (distrib22)
Nonfree Backports (distrib23)
Nonfree Backports Debug (distrib24)
Nonfree Backports Testing (distrib25)
Nonfree Backports Testing Debug (distrib26)
Tainted Release (distrib27)
Tainted Release Debug (distrib28)
Tainted Updates (distrib29)
Tainted Updates Debug (distrib30)
Tainted Updates Testing (distrib31)
Tainted Updates Testing Debug (distrib32)
Tainted Backports (distrib33)
Tainted Backports Debug (distrib34)
Tainted Backports Testing (distrib35)
Tainted Backports Testing Debug (distrib36)
Core 32bit Release (distrib37) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/i586/media/core/release
Core 32bit Updates (distrib38) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/i586/media/core/updates
Core 32bit Updates Testing (distrib39)
Core 32bit Backports (distrib40)
Core 32bit Backports Testing (distrib41)
Nonfree 32bit Release (distrib42) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/i586/media/nonfree/release
Nonfree 32bit Updates (distrib43) ftp://distro.ibiblio.org/pub/linux/distributions/mageia/distrib/3/i586/media/nonfree/updates
Nonfree 32bit Updates Testing (distrib44)
Nonfree 32bit Backports (distrib45)
Nonfree 32bit Backports Testing (distrib46)
Tainted 32bit Release (distrib47)
Tainted 32bit Updates (distrib48)
Tainted 32bit Updates Testing (distrib49)
Tainted 32bit Backports (distrib50)
Tainted 32bit Backports Testing (distrib51)

Re: Videos won't play

PostPosted: Dec 26th, '13, 10:51
by doktor5000
How did you add all those? Best remove them all and add one complete set of repositories from one mirror.
Problem is currently that the tainted_release repository is not enabled, hence you cannot install faad2.

Do the following as root:
Code: Select all
urpmi.removemedia -a
urpmi.addmedia --distrib http://mirror.nexcess.net/mageia/distrib/3/x86_64
urpmi.update --no-ignore "Tainted Release" && urpmi.update --no-ignore "Tainted Updates" && urpmi.update --no-ignore "Nonfree Release" && urpmi.update --no-ignore "Nonfree Updates" && urpmi.update -av

Hint: The third command wraps over two lines, it's one long command.

Re: Videos won't play

PostPosted: Dec 30th, '13, 01:15
by nightshadow
Yea, I guessed there's something wrong with repo's.
It works now, thanks.

Re: Videos won't play

PostPosted: Dec 30th, '13, 01:23
by doktor5000
Please mark the thread accordingly by editing the topic of the first post and prefix it by [SOLVED], thanks