Re: [Freevo-users] XINE_COMMAND format

2005-04-19 Thread jeff elkins
On Tuesday 19 April 2005 09:10 am, Dylan Hall wrote: > Try something like: > > XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry 1280x720 > --no-splash' % (CONF.xine) Thanks Dylan. Still no go. Content plays with a 16:9 aspect, but as opposed to running xine from the command line, it's off-

Re: [Freevo-users] XINE_COMMAND format

2005-04-19 Thread Dylan Hall
Another possibility is to modify /etc/freevo/freevo.conf change the geometry line to read geometry = 1280x720 I think this will cause freevo to pass this as the geometry to xine and mplayer, and presumably the main menus as well. Dylan jeff elkins wrote: I need to pass a --geometry parameter to x

Re: [Freevo-users] XINE_COMMAND format

2005-04-19 Thread Dylan Hall
Try something like: XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry 1280x720 --no-splash' % (CONF.xine) I think it's complaining that you've passed it three arguments: (CONF.xine, CONF.width, CONF.height) But you are only using the first when you replace the "%sx%s+0+0" with "1280x720".

Re: [Freevo-users] XINE_COMMAND format

2005-04-17 Thread jeff elkins
On Sunday 17 April 2005 06:57 pm, Mike Ruelle wrote: > XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %dx%d+0+0 > --no-splash' % (CONF.xine, CONF.width, CONF.height) Thanks Mike, but still no go. This centers the video and uses about 1/3 of the screen, where passing xine --geometry 128

Re: [Freevo-users] XINE_COMMAND format

2005-04-17 Thread Mike Ruelle
XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %dx%d+0+0 --no-splash' % (CONF.xine, CONF.width, CONF.height) On Sun, 2005-04-17 at 14:45 +, jeff elkins wrote: > On Sunday 17 April 2005 06:09 pm, Mike Ruelle wrote: > > try: > > XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %

Re: [Freevo-users] XINE_COMMAND format

2005-04-17 Thread jeff elkins
On Sunday 17 April 2005 06:09 pm, Mike Ruelle wrote: > try: > XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %ix%i+0+0 > --no-splash' % (CONF.xine, CONF.width, CONF.height) Thanks Mike, unfortunately, that doesn't work. from the command line: xine -pfhqg --geometry 1280x720 content.avi

Re: [Freevo-users] XINE_COMMAND format

2005-04-17 Thread Mike Ruelle
try: XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %ix%i+0+0 --no-splash' % (CONF.xine, CONF.width, CONF.height) On Sun, 2005-04-17 at 13:55 +, jeff elkins wrote: > I need to pass a --geometry parameter to xine. > > The default: > > XINE_COMMAND = '%s --hide-gui -pfhq -g -B --ge

[Freevo-users] XINE_COMMAND format

2005-04-17 Thread jeff elkins
I need to pass a --geometry parameter to xine. The default: XINE_COMMAND = '%s --hide-gui -pfhq -g -B --geometry %sx%s+0+0 --no-splash' % \ (CONF.xine, CONF.width, CONF.height) When I substitute --geometry 1280x720, freevo chokes with: File "./local_conf.py", line 721, in ? XINE_COMMAN