Does it work for FSO? Somehow it hangs up my FR. And there&#39;s something like &quot;Your system is too slow&quot; in the console =(<br><br><div class="gmail_quote">On Sun, Jan 11, 2009 at 9:31 PM, pottwal4 <span dir="ltr">&lt;<a href="mailto:pottwal4@web.de">pottwal4@web.de</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi again.<br>
<div class="im">&gt; pottwal4 wrote:<br>
&gt;<br>
&gt;&gt; root@om-gta02:~# mplayer -vo xover:glamo -fs /media/card/big_buck_bunny_320.avi<br>
&gt;&gt;<br>
&gt; mplayer doesn&#39;t know on which display it should open the video.<br>
&gt; Try (one line):<br>
&gt; DISPLAY=:0 mplayer -vo xover:glamo -fs /media/card/big_buck_bunny_320.avi<br>
<br>
</div>Thanks Daniel, you was right! There was a problem concerning the<br>
$DISPLAY-Variable. But there was an other one, which I fixed, choosing<br>
the output device &quot;-vo glamo&quot; instead of &quot;-vo xover:glamo&quot;.<br>
<br>
So for everyone, how cares this what I do to get the example video<br>
running on the freerunner (inspired by<br>
&quot;<a href="http://wiki.openmoko.org/wiki/Video_Player" target="_blank">http://wiki.openmoko.org/wiki/Video_Player</a>&quot;):<br>
<br>
1. Download an unpack mplayer-glamo<br>
(<a href="http://downloads.tuxfamily.org/3v1deb/openmoko/mplayer-glamo.tar.bz2" target="_blank">http://downloads.tuxfamily.org/3v1deb/openmoko/mplayer-glamo.tar.bz2</a>)<br>
<br>
2. Write a short bash-script &quot;vidplay&quot; to start the video (and save it<br>
on the Freerunner and make it executable (with chmod +x vidplay)):<br>
#!/bin/sh<br>
DISPLAY=:0<br>
xrandr -display :0 --output default --mode 240x320<br>
mplayer -vo glamo &quot;$1&quot; &gt; /dev/null<br>
xrandr -display :0 --output default --mode 480x640<br>
reset<br>
<br>
3. Encode a video-file on my PC with:<br>
mencoder video-file -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=300<br>
-vf scale=320:240,eq2=1.2:0.5:-.025,rotate=2 -oac mp3lame -lameopts<br>
br=64:cbr -o video-file-FR.avi<br>
<br>
4. Transfer this file from PC to Freerunner (using scp)<br>
scp video-file root@phone:/media/card/<br>
<br>
5. Considering that the video-start-script and the video-file are now<br>
both located on the Freerunner in directory /media/card/, start the<br>
video with:<br>
cd /media/card<br>
./vidplay video-file<br>
<div><div></div><div class="h5"><br>
_______________________________________________<br>
Openmoko community mailing list<br>
<a href="mailto:community@lists.openmoko.org">community@lists.openmoko.org</a><br>
<a href="http://lists.openmoko.org/mailman/listinfo/community" target="_blank">http://lists.openmoko.org/mailman/listinfo/community</a><br>
</div></div></blockquote></div><br>