You are not logged in.
Pages: 1
I have this message in console:
MPlayer 1.0rc2-4.3.2 (C) 2000-2007 MPlayer Team
CPU: Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz (Family: 6, Model: 15, Stepping: 13)
CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
115 audio & 237 video codecs
Playing FlashMZI0WC.
libavformat file format detected.
[lavf] Video stream found, -vid 0
[lavf] Audio stream found, -aid 1
VIDEO: [] 0x0 0bpp 1000.000 fps 0.0 kbps ( 0.0 kbyte/s)
==========================================================================
Read DOCS/HTML/en/codecs.html!
==========================================================================
==========================================================================
Opening audio decoder: [dmo] Win32/DMO decoders
IMediaObject ERROR: 0x8936bbb input format not accepted (0x80040205 : -2147220987)
ADecoder init failed :(
Opening audio decoder: [dshow] Win32/DirectShow decoders
Win32 LoadLibrary failed to load: wmavds32.ax, /usr/lib/codecs/wmavds32.ax, /usr/lib/win32/wmavds32.ax, /usr/local/lib/win32/wmavds32.ax
Warning: DS_Filter() could not open DirectShow DLL. (DLL=wmavds32.ax, r=0x997bb22)
ADecoder init failed :(
Read DOCS/HTML/en/codecs.html!
Audio: no sound
Video: no video
Exiting... (End of file)
Offline
Whatever you're using to open the audio failed. I've never seen output like this. Are you using Win32 binaries with some sort of direct show filter?
--EDIT--
Answered my own question. Yes, and it's Mplayers direct show filters. At any rate, the stream is failing on the audio, and neither the codecs package nor FFmpeg can handle it.
--EDIT 2--
Why is there a MS audio stream in flv to begin with?
Last edited by skottish (2008-12-06 18:06:11)
Offline
I dunno, but ffplay is playing these files perfectly... what should I do for playing it in mplayer, please...
Offline
Try installing the package codecs
pacman -S codecs
and see if that helps.
Offline
No, I also installed mplayer-w32codecs and it does not help too
Offline
I dunno, but ffplay is playing these files perfectly... what should I do for playing it in mplayer, please...
If FFplay is playing them, then you'll need to build Mplayer from subversion. It also means that newer FFmpeg builds can play the file natively; It does not support the codecs package.
Offline
When I play a flash video with mplayer it reports that it is using ffmpeg to decode the flv format. So, install ffmpeg and see if that works.
EDIT
Is ffplay part of ffmpeg? If so, oops.
Also, my mplayer version is from the repos, not svn. SVN shouldn't really be necessary, but I don't know much about the differences.
Last edited by Square (2008-12-07 01:09:07)
Offline
Is ffplay part of ffmpeg? If so, oops.
Yes it is.
Offline
So what should I do, because I don't know,
Offline
So what should I do, because I don't know,
There are a few subversion Mplayer packages in AUR. These builds should be stable. There's not a whole lot of anything new going into the subversion branch anymore. Do you use gmplayer, the standard Mplayer GUI?
Offline
Hmm, many flv files from YT are working pretty well, only few does not...
Offline
Hmm, many flv files from YT are working pretty well, only few does not...
One thing that you can do if you don't feel like building software is simply convert them. If FFplay can play them, then FFmpeg can convert them. I'm not running FFmpeg from the repos, but something like this should work:
ffmpeg -i <your_input_file>.flv -vcodec copy -ab 128k -acodec libmp3lame <your_output_file>.flv
All this is doing is changing the audio track to mp3.
Offline
Pages: 1