View Single Post
Old 06-15-2016, 10:18 AM   #361
geekmaster
Carpe diem, c'est la vie.
geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.geekmaster ought to be getting tired of karma fortunes by now.
 
geekmaster's Avatar
 
Posts: 6,433
Karma: 10773670
Join Date: Nov 2011
Location: Multiverse 6627A
Device: K1 to PW3
Quote:
Originally Posted by Pnpn View Post
Hi
I've installed gmplay on my kindle PW, and it works great but the video is displayed at a 800x600 resolution (PW is 1024x758) and so appears on the top left of the screen.
Is there a way to change the resolution of the player to have a full frame image on the paperwhite ?
thanks for your help!
Quote:
Originally Posted by ppoo View Post
@Pnpn, you can chage gmplay source(click Magic revealed button here) to
line
Code:
#define FBSIZE (600/8*800)
to
Code:
#define FBSIZE (758/8*1024)
then compile it and run.
You would also need to change the video transcoder (raw2gmv) to the new resolution, and encode some videos in that resolution. They are pre-dithered by the transcoder program, and the player just spits the video lines onto the display.

Your larger videos would probably work as-is on the smaller 800x600 kindles (with the larger resolution video player), but only part of the image would be visible. Also a possibility that it could throw an error if the last line extends beyond the end of the framebuffer, but newer kindles have really large framebuffers, so unlikely.

Because the GMV video format contains no metadata to describe resolution, the 800x600 resolution (common to all kindles at the time of its development) was the default value.

For the new version (in progress) I plan to add metadata file headers, so I can support multiple resolutions, in addition to interleaved sound, and I will call them GMM (geekmaster multimedia) files. The new player will also support legacy GMV files, if no file header is found.

Last edited by geekmaster; 06-15-2016 at 10:29 AM.
geekmaster is offline   Reply With Quote