Getting Ffplay To Work Well


Logomachist

Still Fresh
Joined
Oct 21, 2007
Messages
16
Age
45
Location
Pa
Website
www.myspace.com
Trying to get FFPlay to work so I can play media unsupported by the built in player and it is a frustrating experience. Is there a secret method to get it working? I edited the music mp3 file gpu but when I run it from myF200 all I get is a black screen for a second or two and then it drops me back in the GP2x's menu.

This is the GPU file as I edited it:

CODE

#!/bin/sh
./ffplay ..\..\the_coming_economic_collapse\01 - the_coming_economic_collapse.speex.ogg
cd /usr/gp2x
exec ./gp2xmenu
 
Linux directory separator is / and spaces must be escaped so try

./ffplay ../../the_coming_economic_collapse/01\ -\ the_coming_economic_collapse.speex.ogg
 
Back
Top