Reply
Thread Tools
Posts: 2 | Thanked: 0 times | Joined on Nov 2009
#1
i was wondering if anyone can try out the ustream app for nokia n900 and see how the quality is. thanks

http://www.ustream.tv/mobile
 
Posts: 268 | Thanked: 304 times | Joined on Oct 2009 @ Orlando, USA
#2
I don't see the N900 as a supported phone. You got a link to download the app?

Ustream is pretty much unusable on the N900 browser. Anybody else able to load the ustream.tv player on the N900?
 
Posts: 550 | Thanked: 110 times | Joined on Aug 2006
#3
No clue on Ustream, but Qik (a similar live streaming service) is supported. Matt Miller did a brief recording with his prerelease n900 here: http://nokiaexperts.com/educational-...p-held-tacoma/
 
Posts: 2 | Thanked: 0 times | Joined on Nov 2009
#4
i dont have a link but i would of thought it would work because on the supported phones it works until n96.
 
Posts: 268 | Thanked: 304 times | Joined on Oct 2009 @ Orlando, USA
#5
I think this has more to do with the ustream flash player. is it Flash 10?
 
Posts: 14 | Thanked: 5 times | Joined on Dec 2009
#6
i long-click on the ustream video, select "low quality", and it working!
 
Posts: 35 | Thanked: 13 times | Joined on Feb 2010
#7
Originally Posted by Manuel View Post
i long-click on the ustream video, select "low quality", and it working!
Great tip! Thank you!

-Robin
 
Posts: 8 | Thanked: 16 times | Joined on May 2010
#8
Watch Ustream Live using kmplayer.

Code:
#!/bin/sh

FLASHPLAYER=/opt/kmplayer/bin/kmplayer

if [ "x$1" == "x" ]; then
  echo "usage: `basename $0` [channel]"
  exit
fi

TMP=`mktemp /tmp/ustplayer.XXXXXX`
wget -q -O - "http://www.ustream.tv/channel/$1" |\
        /bin/grep "<param name=\"\(flashvars\|movie\)\"" |\
        /bin/grep -v "/irc" |\
        /bin/grep -v " value=\"style" |\
        /bin/sed -e 's/&amp;/\&/g' -e 's/^\s*//g' |\
        /usr/bin/sort |\
        /usr/bin/uniq > $TMP
URL=`cat $TMP | sed -ne 's/^\s*<param name="movie" value=\"\([^\"]\+\)\".*$/\1/p'`
URL=$URL?`cat $TMP | sed -ne 's/^\s*<param name="flashvars" value=\"\([^\"]\+\)\".*/\1/p'`
rm $TMP

if [ "x$URL" == "x" ]; then
  echo "currently offline?"
  exit
fi
echo playing $URL
$FLASHPLAYER "$URL"
Howto use
1. Save shell script to /usr/local/bin/ustplayer
2. Change permission
Code:
chmod +x /usr/local/bin/ustplayer
Usage
ustplayer [channel]

Example
Ustream URL
Code:
http://www.ustream.tv/channel/santaclauslive-outside-cam
Type in X Terminal
Code:
ustplayer santaclauslive-outside-cam
Original script written by mattn.
http://mattn.kaoriya.net/web/ustream/20090711000128.htm
 
Reply


 
Forum Jump


All times are GMT. The time now is 07:39.