Mplayer error

mplayer: error while loading shared libraries: libgssapi.so.1: cannot open shared object file: No such file or directory
I get that error when trying to use mplayer. The only new thing I've done is that I upgraded Firefox
I tried upgrading mplayer but still.... the same error.
Any ideas?

/usr/lib/libgssapi.so is contained by the package heimdal which was updated lately.
My mplayer version is 1.0rc1-8 and I've heimdal 1.0.1-2 installed and everything is fine.
One of your program's version should differ from mine and you can solve this issue by several ways:
1) Wait until mplayer is re-built against heimdal [what ever version you have]
2) Re-build mplayer against this version yourself using ABS
3) Check whether there's a more recent mplayer version on another repository and switch repositories

Similar Messages

  • 50% CPU for syslog after plugging in the LCD // mplayer error

    Hi,
    i'm new to arch, and not very familiar with linux.... however, i switched to it and ... yeah it runs ... after give or take 15 hours of editing config-files ... *g
    Now i wanted to test my HP w2207h (22" LCD) and plugged it in. The first problem: I wanted to start the laptop and all of a sudden an ACPI-error msg is floating the display and doesn't want to go away... so I plugged the VGA cable out and started the Notebook again. Puuh, everything runs but it's bit awkward, isn't it?
    Then I wanted to plug the VGA cable in and suddenly everything runs veeeeery slowly... so I opened the console and typed in TOP to see what's going on... the syslog-daemon uses 50% of the cpu... and that's what happens every time when i plug in the cable... after i plug it out, everything runs smoothly again.. :-(
    Now to my second problem: everytime i want to open MPlayer, it tells me: "can't open audio device /dev/dsp device or resource busy" however, i can here everything... mhm
    I hope, someone could help an arch-noob
    Cheers,
    Lukas
    Last edited by Lukas0907 (2008-02-18 19:15:17)

    Second problem is quite usual if you will try to play quake2 you will see how /dev/dsp do not want to work at all. Try to play file from command line:
    mplayer sth.sth
    It works good for me.
    It is because of boring story about ALSA and OSS.
    And sysleg-deamon is not critical part of system you can disable it by removing from /etc/rc.conf file.

  • Mplayer error after abs make

    i am making the abs mplayer. it compiled ok, but i got the following error when try to run.
    MPlayer SVN-r29411-4.4.1 (C) 2000-2009 MPlayer Team
    137 audio & 299 video codecs
    mplayer: could not connect to socket
    mplayer: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Playing /home/chancho/Azureus Downloads/Monsters VS Aliens 3d trailer.1080p x264/Monsters VS Aliens 3d trailer.1080p x264.mkv.
    [mkv] Track ID 1: video (V_MPEG4/ISO/AVC), -vid 0
    [mkv] Track ID 2: audio (A_AC3), -aid 0, -alang und
    [mkv] Will play video track 1.
    Matroska file format detected.
    VIDEO:  [avc1]  1920x1080  24bpp  23.976 fps    0.0 kbps ( 0.0 kbyte/s)
    ==========================================================================
    Forced video codec: ffh264vdpau
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    [VD_FFMPEG] XVMC-accelerated MPEG-2.
    Selected video codec: [ffh264vdpau] vfm: ffmpeg (FFmpeg H.264 (VDPAU))
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [liba52] AC3 decoding with liba52
    Using SSE optimized IMDCT transform
    MPlayer interrupted by signal 11 in module: init_audio_codec
    - MPlayer crashed by bad usage of CPU/FPU/RAM.
      Recompile MPlayer with --enable-debug and make a 'gdb' backtrace and
      disassembly. Details in DOCS/HTML/en/bugreports_what.html#bugreports_crash.
    - MPlayer crashed. This shouldn't happen.
      It can be a bug in the MPlayer code _or_ in your drivers _or_ in your
      gcc version. If you think it's MPlayer's fault, please read
      DOCS/HTML/en/bugreports.html and follow the instructions there. We can't and
      won't help unless you provide this information when reporting a possible bug.
    it also happen to the aur version.

    After building mplayer myself, I can confirm the problem. To start with, the liba52 patch that was necessary to compile mplayer with gcc 4.4.0, is not necessary when you compile with gcc 4.4.1. The bug fix was incorporated in the latest gcc release. Unfortunately MPlayer crashes again on ac3 files. Until a fix has come out, the only thing to get it back to work is to compile mplayer with a previous gcc (4.3 is a good example). You'll need to install a previous gcc besides the one you currently have installed. The best way to do so is to base yourself on the gcc-snapshot pkgbuild from aur. Here's the one I used myself:
    # Contributor: Allan McRae <[email protected]>
    pkgname=gcc43
    _ver=4.3
    pkgver=4.3.3
    pkgrel=1
    pkgdesc="The GNU Compiler Collection developmental snapshot"
    arch=('i686' 'x86_64')
    license=('GPL3' 'LGPL')
    url="http://gcc.gnu.org"
    depends=('glibc' 'binutils' 'gmp' 'mpfr' 'ppl' 'cloog-ppl')
    makedepends=('flex' 'bison')
    options=('!libtool')
    source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-{core,g++,fortran,objc,java}-${pkgver}.tar.bz2
    gcc_pure64.patch
    gcc-hash-style-both.patch
    buildfix_new_bison.patch)
    md5sums=('1739288c2c7b1472796b33d641dbdbbd'
    '18428e313a9927d38b313e688c62219b'
    '8771e6190dd4f3178b2a7978d2380a5d'
    '125b75947c763ba59b7ea95d3739d431'
    '068938366ee0be5b70112bdf485898b4'
    '4030ee1c08dd1e843c0225b772360e76'
    'bb420bc84b1104455b7230b1cd4b96c2'
    '6895f128e905bfcb26e328899235e553')
    build() {
    cd ${srcdir}/gcc-${pkgver}
    # Don't install libiberty
    sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
    if [ "${CARCH}" = "x86_64" ]; then
    patch -Np1 -i ../gcc_pure64.patch || return 1
    fi
    # Don't run fixincludes
    sed -i -e 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
    patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch || return 1
    patch -Np0 -i ${srcdir}/buildfix_new_bison.patch || return 1
    mkdir build
    cd build
    ../configure --prefix=/usr --enable-shared \
    --enable-languages=c,c++ \
    --enable-threads=posix --mandir=/usr/share/man --infodir=/usr/share/info \
    --enable-__cxa_atexit --disable-multilib --libdir=/usr/lib \
    --libexecdir=/usr/lib --enable-clocale=gnu --disable-libstdcxx-pch \
    --with-tune=generic \
    --disable-werror --enable-checking=release \
    --program-suffix=-${_ver} --enable-version-specific-runtime-libs
    make || return 1
    make -j1 DESTDIR=${pkgdir} install || return 1
    # Lazy way of dealing with conflicting man and info pages...
    rm -rf ${pkgdir}/usr/share

  • [SOLVED]Mplayer error dialog

    I get an error dialog after exiting mplayer.
    The details in the dialog..
    [matroska,webm @ 0x2269b10] max_analyze_duration 5000000 reached at 5002000
    [matroska,webm @ 0x2269b10] Estimating duration from bitrate, this may be inaccurate
    after closing this, i get an another dialog box..
    MPlayer SVN-r33805-4.6.1 (C) 2000-2011 MPlayer Team
    163 audio & 363 video codecs
    Playing MediaFire4U.Com_HHP7.P1.Dd.mkv.
    libavformat file format detected.
    [lavf] stream 0: video (h264), -vid 0, united300.blogspot.com | 300mbunited.com | rapidpremium.net
    [lavf] stream 1: audio (aac), -aid 0, united300.blogspot.com | 300mbunited.com | rapidpremium.net
    [lavf] stream 2: subtitle (text), -sid 0, united300.blogspot.com | 300mbunited.com | rapidpremium.net
    VIDEO: [H264] 640x272 0bpp 23.976 fps 0.0 kbps ( 0.0 kbyte/s)
    Load subtitles in ./
    ==========================================================================
    Forced video codec: ffmpeg12vdpau
    Forced video codec: ffwmv3vdpau
    Forced video codec: ffvc1vdpau
    Forced video codec: ffh264vdpau
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    Selected video codec: [ffh264vdpau] vfm: ffmpeg (FFmpeg H.264 (VDPAU))
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
    AUDIO: 48000 Hz, 2 ch, s16le, 0.0 kbit/0.00% (ratio: 0->192000)
    Selected audio codec: [ffaac] afm: ffmpeg (FFmpeg AAC (MPEG-2/MPEG-4 Audio))
    ==========================================================================
    AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
    Starting playback...
    [VD_FFMPEG] Trying pixfmt=0.
    Movie-Aspect is 2.35:1 - prescaling to correct movie aspect.
    VO: [vdpau] 640x272 => 640x272 H.264 VDPAU acceleration
    [VD_FFMPEG] XVMC-accelerated MPEG-2.
    A: 7.1 V: 0.0 A-V: 7.147 ct: 0.000 0/ 0 ??% ??% ??,?% 2 0 [J
    A: 7.2 V: 0.0 A-V: 7.110 ct: 0.004 0/ 0 ??% ??% ??,?% 2 0 [J
    A: 7.2 V: 0.1 A-V: 7.106 ct: 0.008 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.2 V: 0.1 A-V: 7.069 ct: 0.013 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.2 V: 0.2 A-V: 7.033 ct: 0.017 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.2 V: 0.2 A-V: 7.010 ct: 0.021 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.2 V: 0.2 A-V: 6.982 ct: 0.025 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.3 V: 0.3 A-V: 6.966 ct: 0.029 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.3 V: 0.3 A-V: 6.961 ct: 0.033 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.3 V: 0.4 A-V: 6.956 ct: 0.038 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.4 V: 0.4 A-V: 6.951 ct: 0.042 0/ 0 ??% ??% ??,?% 3 0 [J
    A: 7.4 V: 0.5 A-V: 6.946 ct: 0.046 0/ 0 44% 16% 1.0% 3 0 [J
    A: 7.4 V: 0.5 A-V: 6.941 ct: 0.050 0/ 0 41% 15% 0.9% 3 0 [J
    A: 7.5 V: 0.5 A-V: 6.937 ct: 0.054 0/ 0 38% 14% 0.9% 3 0 [J
    A: 7.5 V: 0.6 A-V: 6.937 ct: 0.058 0/ 0 35% 13% 0.9% 3 0 [J
    A: 7.6 V: 0.6 A-V: 6.933 ct: 0.063 0/ 0 33% 12% 0.8% 3 0 [J
    A: 7.6 V: 0.7 A-V: 6.928 ct: 0.067 0/ 0 31% 11% 0.8% 3 0 [J
    A: 7.6 V: 0.7 A-V: 6.923 ct: 0.071 0/ 0 29% 11% 0.8% 3 0 [J
    A: 7.7 V: 0.8 A-V: 6.918 ct: 0.075 0/ 0 28% 10% 0.8% 3 0 [J
    A: 7.7 V: 0.8 A-V: 6.913 ct: 0.079 0/ 0 26% 10% 0.8% 3 0 [J
    A: 7.7 V: 0.8 A-V: 6.909 ct: 0.083 0/ 0 25% 9% 0.7% 3 0 [J
    A: 7.8 V: 0.9 A-V: 6.905 ct: 0.088 0/ 0 24% 9% 0.7% 3 0 [J
    A: 7.8 V: 0.9 A-V: 6.900 ct: 0.092 0/ 0 23% 8% 0.7% 3 0 [J
    A: 7.9 V: 1.0 A-V: 6.900 ct: 0.096 0/ 0 22% 8% 0.7% 3 0 [J
    A: 7.9 V: 1.0 A-V: 6.894 ct: 0.100 0/ 0 21% 8% 0.7% 3 0 [J
    A: 7.9 V: 1.0 A-V: 6.890 ct: 0.104 0/ 0 20% 7% 0.7% 3 0 [J
    A: 8.0 V: 1.1 A-V: 6.885 ct: 0.108 0/ 0 20% 7% 0.7% 3 0 [J
    A: 8.0 V: 1.1 A-V: 6.881 ct: 0.113 0/ 0 19% 7% 0.7% 3 0 [J
    A: 8.0 V: 1.2 A-V: 6.876 ct: 0.117 0/ 0 18% 7% 0.7% 3 0 [J
    A: 8.1 V: 1.2 A-V: 6.871 ct: 0.121 0/ 0 18% 6% 0.7% 3 0 [J
    A: 8.1 V: 1.3 A-V: 6.866 ct: 0.125 0/ 0 17% 6% 0.7% 3 0 [J
    A: 8.2 V: 1.3 A-V: 6.867 ct: 0.129 0/ 0 17% 6% 0.7% 3 0 [J
    A: 8.2 V: 1.3 A-V: 6.862 ct: 0.133 0/ 0 16% 6% 0.7% 3 0 [J
    A: 8.2 V: 1.4 A-V: 6.858 ct: 0.138 0/ 0 16% 6% 0.7% 3 0 [J
    A: 8.3 V: 1.4 A-V: 6.854 ct: 0.142 0/ 0 15% 5% 0.7% 3 0 [J
    A: 8.3 V: 1.5 A-V: 6.850 ct: 0.146 0/ 0 15% 5% 0.7% 3 0 [J
    A: 8.3 V: 1.5 A-V: 6.845 ct: 0.150 0/ 0 15% 5% 0.7% 3 0 [J
    A: 8.4 V: 1.5 A-V: 6.840 ct: 0.154 0/ 0 14% 5% 0.7% 3 0 [J
    A: 8.4 V: 1.6 A-V: 6.835 ct: 0.158 0/ 0 14% 5% 0.7% 3 0 [J
    A: 8.5 V: 1.6 A-V: 6.830 ct: 0.163 0/ 0 13% 5% 0.7% 3 0 [J
    A: 8.5 V: 1.7 A-V: 6.826 ct: 0.167 0/ 0 13% 5% 0.6% 3 0 [J
    A: 8.5 V: 1.7 A-V: 6.821 ct: 0.171 0/ 0 13% 5% 0.6% 3 0 [J
    A: 8.6 V: 1.8 A-V: 6.816 ct: 0.175 0/ 0 12% 4% 0.6% 3 0 [J
    A: 8.6 V: 1.8 A-V: 6.816 ct: 0.179 0/ 0 12% 4% 0.6% 3 0 [J
    A: 8.6 V: 1.8 A-V: 6.812 ct: 0.184 0/ 0 12% 4% 0.6% 3 0 [J
    A: 8.7 V: 1.9 A-V: 6.807 ct: 0.188 0/ 0 12% 4% 0.6% 3 0 [J
    A: 8.7 V: 1.9 A-V: 6.803 ct: 0.192 0/ 0 11% 4% 0.6% 3 0 [J
    A: 8.8 V: 2.0 A-V: 6.798 ct: 0.196 0/ 0 11% 4% 0.6% 3 0 [J
    A: 8.8 V: 2.0 A-V: 6.793 ct: 0.200 0/ 0 11% 4% 0.6% 3 0 [J
    A: 8.8 V: 2.0 A-V: 6.788 ct: 0.204 0/ 0 11% 4% 0.6% 3 0 [J
    A: 8.9 V: 2.1 A-V: 6.783 ct: 0.209 0/ 0 10% 4% 0.6% 3 0 [J
    A: 8.9 V: 2.1 A-V: 6.778 ct: 0.213 0/ 0 10% 4% 0.6% 3 0 [J
    A: 8.9 V: 2.2 A-V: 6.780 ct: 0.217 0/ 0 10% 4% 0.6% 3 0 [J
    A: 9.0 V: 2.2 A-V: 6.775 ct: 0.221 0/ 0 10% 4% 0.6% 3 0 [J
    A: 9.0 V: 2.3 A-V: 6.770 ct: 0.225 0/ 0 10% 3% 0.6% 3 0 [J
    A: 9.1 V: 2.3 A-V: 6.766 ct: 0.229 0/ 0 10% 3% 0.6% 3 0 [J
    A: 9.1 V: 2.3 A-V: 6.761 ct: 0.234 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.1 V: 2.4 A-V: 6.756 ct: 0.238 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.2 V: 2.4 A-V: 6.751 ct: 0.242 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.2 V: 2.5 A-V: 6.746 ct: 0.246 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.2 V: 2.5 A-V: 6.741 ct: 0.250 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.3 V: 2.5 A-V: 6.742 ct: 0.254 0/ 0 9% 3% 0.6% 3 0 [J
    A: 9.3 V: 2.6 A-V: 6.737 ct: 0.259 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.4 V: 2.6 A-V: 6.733 ct: 0.263 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.4 V: 2.7 A-V: 6.728 ct: 0.267 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.4 V: 2.7 A-V: 6.723 ct: 0.271 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.5 V: 2.8 A-V: 6.718 ct: 0.275 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.5 V: 2.8 A-V: 6.713 ct: 0.279 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.5 V: 2.8 A-V: 6.708 ct: 0.284 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.6 V: 2.9 A-V: 6.704 ct: 0.288 0/ 0 8% 3% 0.6% 3 0 [J
    A: 9.6 V: 2.9 A-V: 6.699 ct: 0.292 0/ 0 7% 3% 0.6% 3 0 [J
    Exiting... (Quit)
    Here's my ~/.mplayer/config file..
    # Write your default config options here!
    vo=vdpau
    vc=ffmpeg12vdpau,ffwmv3vdpau,ffvc1vdpau,ffh264vdpau,ffodivxvdpau
    nolirc=yes
    ao=alsa
    i'm running standalone openbox..
    thanks in advance..
    Edit:
    I'm getting this only when i open a video using qtfm's custom action..
    The post below fixed the problem..
    https://bbs.archlinux.org/viewtopic.php … 89#p914489
    Last edited by dipesh.nomad (2011-07-29 05:46:27)

    Hi harish.venkat,
    welcome to the forums. Did you notice this thread is rather old? You should not necro-post, see our forum etiquette about this.
    Please create a new thread of your own. You may link back to this one if necessary.
    Closing.

  • [solved] mplayer error

    Today I've updated my mplayer to 29411-2 and after trying to play any file i get:
    zsh: illegal hardware instruction  mplayer
    Any ideas what can be wrong?
    Last edited by xendo (2009-07-06 16:31:09)

    I was having a similar error. I think the reason is that this new version is complied against the new libjpeg 7. So if you dont have that installed it wont work. This caused me lots of issues this morning, so I downgraded for now back to the older vers, and all is working again.
    libjpeg.so.7: cannot open shared object file: No such file or directory

  • Mplayer errors since Pulseaudio upgrade

    Hey all... wondering if anyone has seen this problem yet... I've searched high & low but I've not been able to find any bugs raised in the mplayer project or any recent posts in here...
    Since upgrading pulseaudio from version 5 to version 6, mplayer has stopped playing any videos in 6 channel surround sound using pulse.  I initially though it was pulseaudios fault, I downgraded & mplayer worked again... but I upgraded again &  tested with VLC & a host of different apps, VLC is outputting surround sound via pulse and everything else works fine. 
    Mplayer works except when using the switch "-channels 6"
    I can play any movie using mplayer in stereo using:  mplayer -ao pulse -channels 2 somefile but mplayer -ao pulse -channels 6 somefile fails with the below AO: [pulse] pa_stream_write() failed: Invalid argument errors in the log which just keep repeating and the video shows as frozen on the screen.
    ==========================================================================
    Forced video codec: ffh264vdpau
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    libavcodec version 56.13.100 (internal)
    Selected video codec: [ffh264vdpau] vfm: ffmpeg (FFmpeg H.264 (VDPAU))
    ==========================================================================
    ID_VIDEO_CODEC=ffh264vdpau
    ==========================================================================
    Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
    AUDIO: 48000 Hz, 6 ch, floatle, 384.0 kbit/4.17% (ratio: 48000->1152000)
    ID_AUDIO_BITRATE=384000
    ID_AUDIO_RATE=48000
    ID_AUDIO_NCH=6
    Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
    ==========================================================================
    AO: [pulse] 48000Hz 6ch floatle (4 bytes per sample)
    ID_AUDIO_CODEC=ffac3
    [Mixer] No hardware mixing, inserting volume filter.
    Starting playback...
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    Movie-Aspect is 2.40:1 - prescaling to correct movie aspect.
    ID_VIDEO_ASPECT=2.4020
    VO: [vdpau] 1912x796 => 1912x796 H.264 VDPAU acceleration
    Movie-Aspect is 2.40:1 - prescaling to correct movie aspect.
    ID_VIDEO_ASPECT=2.4020
    VO: [vdpau] 1912x796 => 1912x796 H.264 VDPAU acceleration
    [ass] PlayResX undefined, setting to 384
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument

    Same problem here. For "mplayer -ao X..." and X>2, i get this:
    MPlayer SVN-r37353 (C) 2000-2015 MPlayer Team
    210 audio & 441 video codecs
    do_connect: could not connect to socket
    connect: No such file or directory
    Failed to open LIRC support. You will not be able to use your remote control.
    Playing ************************************.mkv.
    libavformat version 56.15.102 (internal)
    libavformat file format detected.
    [lavf] stream 0: video (h264), -vid 0
    [lavf] stream 1: audio (ac3), -aid 0, -alang eng
    VIDEO:  [H264]  1280x532  0bpp  23.976 fps    0.0 kbps ( 0.0 kbyte/s)
    Clip info:
    encoder: libebml v1.2.3 + libmatroska v1.3.0
    creation_time: 2012-12-21 00:20:30
    Load subtitles in ./
    SUB: Added subtitle file (1): ./************************************.srt
    ==========================================================================
    Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
    libavcodec version 56.13.100 (internal)
    Selected video codec: [ffh264] vfm: ffmpeg (FFmpeg H.264)
    ==========================================================================
    ==========================================================================
    Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
    AUDIO: 48000 Hz, 6 ch, floatle, 448.0 kbit/4.86% (ratio: 56000->1152000)
    Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
    ==========================================================================
    AO: [pulse] 48000Hz 6ch floatle (4 bytes per sample)
    Starting playback...
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    Movie-Aspect is 2.41:1 - prescaling to correct movie aspect.
    VO: [vdpau] 1280x532 => 1280x532 Planar YV12
    A:   0.0 V:   0.0 A-V:  0.000 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    A:   0.0 V:   0.0 A-V: -0.042 ct:  0.000   0/  0 ??% ??% ??,?% 0 0
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument
    AO: [pulse] pa_stream_write() failed: Invalid argument

  • Mplayer and VirtualBox error after installing ATI Drivers

    I recently switched from the Open Source drivers for my ATI video card.  Since that time some programs are refusing to load.
    I switched to the Catalyst repository to install the new drivers for my card.
    The specific error message I get when running the mplayer in the terminal is
    mplayer: error while loading shared libraries: libdirectfb-1.4.so.0: cannot open shared object file: No such file or directory
    the message for VirtualBox is
    VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/opt/VirtualBox/VirtualBox.so",) failed: libdirectfb-1.4.so.0: cannot open shared object file: No such file or directory
    So far only 2 programs have been giving me this error are mplayer and VirtualBox.
    I have tried reinstalling directfb and mplayer, but this doesn't fix things.
    I have run ldd `which mplayer` and the following is missing
    libdirectfb-1.4.so.0 => not found
    libfusion-1.4.so.0 => not found
    libdirect-1.4.so.0 => not found
    I am running 64bit Arch.
    Thanks for your help

    Thanks
    wonder wrote:LD_DEBUG=files mplayer > log 2>&1
    After running that, I discovered that sdl needed to be rebuilt. Once I did that, everything works fine.
    Last edited by floatingman (2010-09-21 13:12:10)

  • [SOLVED] smbclient error mplayer stopped working

    So I installed samba and smbclient and after trying to start the samba deamon i got weird HEIMDAL errors and the deamon
    would not start. Obviously the smbclient didnt work either.
    All right, maybe theres something wrong with the newest version I thought. It was really just for some experiment anyway.
    I removed samba with -Rs and smbclient with -Rd.
    Now I get errors when starting mplayer:
    [roybot@roybot ~]$ mplayer video01.avi
    mplayer: error while loading shared libraries: libsmbclient.so.0: cannot open shared object file: No such file or directory
    How can I make mplayer work again?
    Whats wrong with smbclient?
    Last edited by roybot (2009-12-06 13:48:28)

    do pacman -Syu
    be sure that your system has heimdal 1.3.1-2 and smbclient 3.4.3-4
    Last edited by wonder (2009-12-06 13:45:14)

  • [Solved] SMplayer / MPlayer crash, exit code: 127

    Everything worked just prior to the pacman update this morning (first in two weeks), then this happened:
    /usr/bin/mplayer: error while loading shared libraries: libx264.so.118: cannot open shared object file: No such file or directory
    x264, mplayer (build date: 10/15/11) and smplayer (build date: 11/11/10) installed from extra and community repos accordingly from a pretty up-to-date mirror (mirror @ rit.edu).  VLC, unsurprisingly, appears to be fine.
    Last edited by ssri (2011-11-12 19:34:14)

    The x264 package has just been updated http://www.archlinux.org/packages/?name=x264 - mirrors may need some more time to sync (if in doubt, check the version).
    It's a similar issue to https://bbs.archlinux.org/viewtopic.php?id=130192
    You can download the package directly from the mirror by clicking the 'Download From Mirror' link on the top right http://www.archlinux.org/packages/extra/i686/x264/ (for32-bit)
    Last edited by karol (2011-11-12 19:35:32)

  • Trying to build Mplayer with enable-aa

    My son wants to watch video in ascii mode, but the arch version of mplayer is compiled without support for aalib. I've tried to make my own version
    using the current pkgbuild and changing "--disable-aa" to "--enable-aa", but after a while of compiling, the build aborts with the following:
    libvo/libvo.a(vo_aa.o): In function `uninit':
    vo_aa.c:(.text+0x17d): undefined reference to `aa_close'
    libvo/libvo.a(vo_aa.o): In function `draw_slice':
    vo_aa.c:(.text+0x325): undefined reference to `aa_fastrender'
    vo_aa.c:(.text+0x35b): undefined reference to `aa_render'
    libvo/libvo.a(vo_aa.o): In function `draw_frame':
    vo_aa.c:(.text+0x44a): undefined reference to `aa_fastrender'
    vo_aa.c:(.text+0x4ae): undefined reference to `aa_render'
    libvo/libvo.a(vo_aa.o): In function `preinit':
    vo_aa.c:(.text+0xa8a): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xa8f): undefined reference to `aa_getfirst'
    vo_aa.c:(.text+0xaa2): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xaa7): undefined reference to `aa_recommendhi'
    vo_aa.c:(.text+0xaae): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xab3): undefined reference to `aa_autoinit'
    vo_aa.c:(.text+0xace): undefined reference to `aa_autoinitkbd'
    vo_aa.c:(.text+0xaec): undefined reference to `aa_resizehandler'
    vo_aa.c:(.text+0xaf9): undefined reference to `aa_hidecursor'
    vo_aa.c:(.text+0xafe): undefined reference to `aa_getrenderparams'
    vo_aa.c:(.text+0xbdb): undefined reference to `aa_defrenderparams'
    vo_aa.c:(.text+0xbe6): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xbeb): undefined reference to `aa_parseoptions'
    vo_aa.c:(.text+0xc0b): undefined reference to `aa_defrenderparams'
    vo_aa.c:(.text+0xc26): undefined reference to `aa_defparams'
    vo_aa.c:(.text+0xc2b): undefined reference to `aa_parseoptions'
    vo_aa.c:(.text+0xc82): undefined reference to `aa_help'
    vo_aa.c:(.text+0xdea): undefined reference to `aa_close'
    vo_aa.c:(.text+0xe28): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe2d): undefined reference to `aa_recommendlow'
    vo_aa.c:(.text+0xe38): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe3d): undefined reference to `aa_recommendhi'
    vo_aa.c:(.text+0xe48): undefined reference to `aa_displayrecommended'
    vo_aa.c:(.text+0xe4d): undefined reference to `aa_recommendhi'
    libvo/libvo.a(vo_aa.o): In function `printosdtext':
    vo_aa.c:(.text+0xf0b): undefined reference to `aa_printf'
    vo_aa.c:(.text+0xf67): undefined reference to `aa_printf'
    libvo/libvo.a(vo_aa.o): In function `flip_page':
    vo_aa.c:(.text+0x105e): undefined reference to `aa_flush'
    vo_aa.c:(.text+0x11bd): undefined reference to `aa_puts'
    vo_aa.c:(.text+0x11f9): undefined reference to `aa_puts'
    libvo/libvo.a(vo_aa.o): In function `check_events':
    vo_aa.c:(.text+0x137f): undefined reference to `aa_getevent'
    libvo/libvo.a(vo_aa.o): In function `resize':
    vo_aa.c:(.text+0x1817): undefined reference to `aa_resize'
    collect2: ld returned 1 exit status
    make: *** [mplayer] Error 1
    ==> ERROR: Build Failed. Aborting...
    Can someone help me out here? I imagine the answer is simple, but I can't get past this stage.

    diff -ur MPlayer-1.0pre8.orig/configure MPlayer-1.0pre8/configure
    --- MPlayer-1.0pre8.orig/configure 2006-06-11 20:35:47.000000000 +0200
    +++ MPlayer-1.0pre8/configure 2006-06-13 12:43:01.000000000 +0200
    @@ -4137,6 +4137,8 @@
    _def_aa='#define HAVE_AA 1'
    if cygwin ; then
    _ld_aa=`aalib-config --libs | cut -d " " -f 2,5,6`
    + else
    + _ld_aa="-laa"
    fi
    _vosrc="$_vosrc vo_aa.c"
    _vomodules="aa $_vomodules"
    This patch will help.

  • [solved]Erro while opening emacs and playing mplayer

    i install thunderbird and after that i got this error  and wallpaper disapper and its now opeing the emacs
    mplayer: error while loading shared libraries: libjpeg.so.62: cannot open shared object file: No such file or directory
    whts wrong with it.......
    Last edited by arunix (2009-09-08 11:27:22)

    Hi "arunix"
    The reason "wonder" suggested what he did has to do with the fact that certain libraries are used by numerous programs. For example, libjpeg is the library (you guessed it) that decodes jpegs. When programs are compiled they are linked to the version of the library that is currently installed on the maintainers computer at time (or yours if you roll your own). As you can imagine there are quite a lot of programs that need jpeg decoding so libjpeg is a biggie. Recently libjpeg  was updated to a newer version so all the apps that use that library (and there are quite a few as you can imagine) have to be rebuilt so they will be linked to the new library (which I'm assuming you are using the new version because of the error your getting). This, of course is conveniently taken care of and a simple "pacman -Syu" should alleviate most of your problems. If you search the forum (from about 2-3 weeks ago) you will find all sorts of posts about this issue.  I had this issue until I re-compiled all my programs that use libjpeg.
    Hope this helps!
    Just a piece of future advice though, make sure to search this forum (or the wiki) thoroughly because most of the time the issues you are having has already been encountered and possibly solved by others. 

  • [SOLVED] error while loading shared libraries

    Im open mplayer and cmplaye its not start getting this error
    cmplayer: error while loading shared libraries: libhogweed.so.2: cannot open shared object file: No such file or directory
    mplayer: error while loading shared libraries: libhogweed.so.2: cannot open shared object file: No such file or directory
    How to fix it, i think update system (
    Pacman -Syyu
    ) .what about think this problam.Thankyou!
    Last edited by Layan (2015-06-04 09:17:47)

    I cant open any softwear ... pidgin ,Empaty,Vlc,etc... but opera is working

  • Building mplayer-svn using internal ffmpeg-svn libraries [SOLVED]

    Yeah,
    I know that a bunch of us are having errors building mplayer-svn against ffmpeg-svn internal libraries.
    The error:
    libvo/vo_yuv4mpeg.o: In function `flip_page':
    vo_yuv4mpeg.c:(.text+0x694): undefined reference to `rgb24toyv12'
    vo_yuv4mpeg.c:(.text+0x6f0): undefined reference to `rgb24toyv12'
    vo_yuv4mpeg.c:(.text+0x848): undefined reference to `rgb24toyv12'
    libmpcodecs/vf_palette.o: In function `put_image':
    vf_palette.c:(.text+0x3ee): undefined reference to `palette8topacked32'
    vf_palette.c:(.text+0x431): undefined reference to `palette8topacked24'
    vf_palette.c:(.text+0x453): undefined reference to `palette8torgb16'
    vf_palette.c:(.text+0x473): undefined reference to `palette8torgb15'
    vf_palette.c:(.text+0x489): undefined reference to `palette8tobgr16'
    vf_palette.c:(.text+0x4a1): undefined reference to `palette8tobgr15'
    vf_palette.c:(.text+0x50a): undefined reference to `palette8topacked32'
    vf_palette.c:(.text+0x55e): undefined reference to `palette8torgb15'
    vf_palette.c:(.text+0x5b3): undefined reference to `palette8torgb16'
    vf_palette.c:(.text+0x5d0): undefined reference to `palette8topacked24'
    vf_palette.c:(.text+0x5ed): undefined reference to `palette8tobgr15'
    vf_palette.c:(.text+0x60a): undefined reference to `palette8tobgr16'
    libmpcodecs/vf_rgb2bgr.o: In function `put_image':
    vf_rgb2bgr.c:(.text+0x1d7): undefined reference to `rgb24tobgr24'
    vf_rgb2bgr.c:(.text+0x20a): undefined reference to `rgb32tobgr32'
    vf_rgb2bgr.c:(.text+0x274): undefined reference to `rgb24tobgr24'
    vf_rgb2bgr.c:(.text+0x290): undefined reference to `rgb32tobgr32'
    libmpcodecs/vf_yuy2.o: In function `put_image':
    vf_yuy2.c:(.text+0xf7): undefined reference to `yv12toyuy2'
    vf_yuy2.c:(.text+0x154): undefined reference to `yuv422ptoyuy2'
    collect2: ld returned 1 exit status
    make: *** [mplayer] Error 1
    All of this is coming from swscale. Enabling Mplayer's internal swscale fixes the build for me, but it's hardly a solution seeing that there is no difference at all in between the code bases.
    The question:
    Why are Archers seeing this and yet there's no traces that I can find anywhere on the web? I ask because I don't know if it's a Mplayer bug, a FFmpeg bug, or one of the core libraries in Arch? In short, I don't know who to file a bug report with.
    What I know:
    1) The build fails in different places on different architectures.
    2) Mplayer seems to not be able to find yasm even though x264 and FFmpeg find it fine, even with the configure flag --yasm=YASM.
    3) FFmpeg is not installing any swscale header file other than libswscale/swscale.h and force installing it does not help.
        a) There is no difference at all in the Makefile between the two code bases.

    wonder wrote:to be fair i don't think you can build mplayer-svn against ffmpeg-svn. you can only with mplayer-mt-git against ffmpeg-mt-git or something like that.
    I've been doing it daily for well over a year. Maybe even two.
    -- Edit--
    If anyone cares, it's because of how Mplayer deals with FFmpeg's header files. For instance, Mplayer is looking for yuv2rgb.h, but FFmpeg now produces yuv2rgb_mmx.h at runtime on my system. It looks as if libswscale's build files are being generated per architecture for usage of ASM code. Mplayer isn't looking at things quite right anymore.

  • Mplayer quicktime mov no audio

    I'm trying to play some quicktime .mov files and I keep getting this:
    Requested audio codec family [qclp] (afm=qtaudio) not available.
    Enable it at compilation.
    Cannot find codec for audio format 0x706C6351.
    So I tried to build mplayer from ABS and added --enable-qtx (as per ./configure --help) to the PKGBUILD, but that causes the build to fail giving this:
    libmpcodecs/libmpcodecs.a(ad_qtaudio.o): In function `preinit':
    ad_qtaudio.c:(.text+0x23a): undefined reference to `LoadLibraryA'
    ad_qtaudio.c:(.text+0x252): undefined reference to `LoadLibraryA'
    ad_qtaudio.c:(.text+0x26c): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x28c): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2ac): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2cc): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2ec): undefined reference to `GetProcAddress'
    libmpcodecs/libmpcodecs.a(ad_qtaudio.o):ad_qtaudio.c:(.text+0x30c): more undefined references to `GetProcAddress' follow
    libmpcodecs/libmpcodecs.a(vd_qtvideo.o): In function `init':
    vd_qtvideo.c:(.text+0x4b4): undefined reference to `LoadLibraryA'
    vd_qtvideo.c:(.text+0x4cc): undefined reference to `LoadLibraryA'
    vd_qtvideo.c:(.text+0x4e6): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x4fd): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x514): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x52b): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x542): undefined reference to `GetProcAddress'
    libmpcodecs/libmpcodecs.a(vd_qtvideo.o):vd_qtvideo.c:(.text+0x559): more undefined references to `GetProcAddress' follow
    collect2: ld returned 1 exit status
    make: *** [mencoder] Error 1
    make: *** Waiting for unfinished jobs....
    ==> ERROR: Build Failed.
    Aborting...
    So I made sure that I had community/libquicktime and the codecs packages installed but I'm not sure what else to do...
    it appears im missing some kind of quicktime header file and/or codec.
    Any ideas?
    Last edited by Evanlec (2008-05-11 16:00:42)

    Okay, well, that may have helped with another issue, but my build still failed giving about the same errors:
    libmpcodecs/libmpcodecs.a(ad_qtaudio.o): In function `preinit':
    ad_qtaudio.c:(.text+0x23a): undefined reference to `LoadLibraryA'
    ad_qtaudio.c:(.text+0x252): undefined reference to `LoadLibraryA'
    ad_qtaudio.c:(.text+0x26c): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x28c): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2ac): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2cc): undefined reference to `GetProcAddress'
    ad_qtaudio.c:(.text+0x2ec): undefined reference to `GetProcAddress'
    libmpcodecs/libmpcodecs.a(ad_qtaudio.o):ad_qtaudio.c:(.text+0x30c): more undefined references to `GetProcAddress' follow
    libmpcodecs/libmpcodecs.a(vd_qtvideo.o): In function `init':
    vd_qtvideo.c:(.text+0x4b4): undefined reference to `LoadLibraryA'
    vd_qtvideo.c:(.text+0x4cc): undefined reference to `LoadLibraryA'
    vd_qtvideo.c:(.text+0x4e6): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x4fd): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x514): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x52b): undefined reference to `GetProcAddress'
    vd_qtvideo.c:(.text+0x542): undefined reference to `GetProcAddress'
    libmpcodecs/libmpcodecs.a(vd_qtvideo.o):vd_qtvideo.c:(.text+0x559): more undefined references to `GetProcAddress' follow
    collect2: ld returned 1 exit status
    make: *** [mplayer] Error 1
    ==> ERROR: Build Failed.
    Aborting...

  • MPlayer zoom problem after xorg7

    When I tried to play a video with MPlayer,
    Error opening/initializing the selected video_out (-vo) device.
    showed up. I checked
    xvinfo
    and the result
    X-Video Extension version 2.2
    screen #0
    no adaptors present
    Any help?

    Try right click on the mplayer window, select preferences, go to video and try a different selection of video .....
    It works with the X11 driver, but I can't change the size of the video, when changing to fullscreen mode, the video size is still the same.
    what video driver do you use?
    I'm using s3 savage

Maybe you are looking for