![]() |
2011-01-11
, 15:22
|
Posts: 62 |
Thanked: 3 times |
Joined on Dec 2010
@ San Jose, Costa Rica
|
#3
|
![]() |
2011-01-11
, 16:21
|
Posts: 376 |
Thanked: 511 times |
Joined on Aug 2009
@ Greece
|
#4
|
I need to play videos in 1208x720 on my N900.
Do any of the players available allows this?
Mplayer says I can not and native player fails
mplayer -vo x11 -zoom myvideo
mplayer -vo xv -vf scale=XXX:YYY myvideo
The Following 4 Users Say Thank You to v13 For This Useful Post: | ||
![]() |
2011-01-12
, 17:48
|
Posts: 13 |
Thanked: 4 times |
Joined on Dec 2010
|
#5
|
![]() |
2011-01-12
, 18:55
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#6
|
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:
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 x11 -zoom 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.Code:mplayer -vo xv -vf scale=XXX:YYY myvideo
![]() |
2011-01-12
, 20:56
|
Posts: 110 |
Thanked: 127 times |
Joined on May 2010
|
#7
|
![]() |
2011-01-13
, 00:17
|
Posts: 561 |
Thanked: 75 times |
Joined on Jan 2010
@ Spain
|
#8
|
![]() |
Tags |
forget it, no you don't, sure you don't |
|
Do any of the players available allows this?
Mplayer says I can not and native player fails