View Single Post
Posts: 561 | Thanked: 75 times | Joined on Jan 2010 @ Spain
#6
Originally Posted by v13 View Post
I've done some tests in the past and found that the problem is with hardware acceleration and picture resizing. If you bypass that then you'll be able to play the videos, but a bit slower.

One way is to open the video from the command line using mplayer:

Code:
mplayer -vo x11 -zoom myvideo
which will use the x11 method which in turn performs software video scaling. Another way is to scale it by hand and use the xv driver, but I don't find it to be faster:

Code:
mplayer -vo xv -vf scale=XXX:YYY myvideo
where XXX and YYY are the dimensions to scale to. They must be smaller or equal to screen's dimensions (864x648 if i'm correct) so you need to do some math first to get a correct aspect ration. For 1280x720 the scaled values are 864x486.
Thanks for the alternative.

My problem is I have to check where recordings are made and have that resolution. I've had no problems so far but never used much resolution videos. The extract from the cameras the way to a MicroSD and insert it in the N900.

Originally Posted by tHMZ View Post
n900s screen is 800x480. do the math.
Comment that it is very important to screen size, viewing videos on my PC 1080p and my monitor does not reach that resolution.

I'll try to see if I use the suggested.

Thanks again.