From: Dan C. <da...@da...> - 2002-12-19 06:41:56
|
On Wednesday, December 18, 2002, at 11:23 AM, J. Patrick Bedell wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello, > I am using mplayer on my iBook with MacOS 10.1.5. I have compiled > SDL 1.2.5 and MPlayer 0.90rc1 successfully, and I am able to play avi > files at original size with no problem, using the SDL video and audio > outputs. I have two problems that I hope you can help me with. Try using the latest version of SDL. I believe it's 1.2.7. > Additionally, I am having problems with DVDs. When I use the > command below, I get an mplayer window with many dropped frames and the > audio output is static with no (obvious) correlation with the DVD > soundtrack. I've included my command and the output. I'm not really > sure > what the significance of the errors is, and I would appreciate any help > correcting the problem. I believe my processor is a G3 700MHz, which > seems to make it unlikely that the problem is a slow processor. I have > used -framedrop and -hardframedrop, and I still have audio problems. It might still be a too slow processor. Neither MPlayer nor VideoLAN Client have been heavily optimized for the PPC processor, so they require much more processor power than Apple DVD Player. So it just might be that... Another possibility is that you need to increase the buffer size. The easiest way to do this is adding this line to ~/.mplayer/config: cache = 16384 # use 8Mb input cache by default double=yes # use double-buffering (recommended for xv with # SUB/OSD usage) These lines might also be useful: vo=sdl # To specify default video driver (see -vo help for # list) ao=sdl # To specify default audio driver (see -ao help for # list) fs=no # Enlarges movie window to your desktop's size. # Used by drivers: all # vm=no # Tries to change to a different videomode # Used by drivers: dga2, x11, sdl # bpp=0 # Force changing display depth. # Valid settings are: 0, 15, 16, 24, 32 # may need 'vm=yes' too. # Used by drivers: fbdev, dga2, svga, vesa zoom=yes # Enable software scaling (powerful CPU needed) # Used by drivers: svga, x11, vesa framedrop = yes # drop frames, when not in sync (slow CPU, videocard, # etc) - Dan |