Problem Solved!
I wrote a quick bash script which uses curl and vlc. Its a mess but it works
excellent. It basically curls the front page then puts all the videos into a
menu, then greps the selected video to extract the mp4's url and then streams
it with vlc. :) Thanks for the help anyway guys. Much appreciated!
Heres the script if anyones interested!
#!/bin/bash
#creates a list of the front page videos
curl -s http://www.liveleak.com/ | grep 'width="120"' > menu.txt
sed -i 's/##g' menu.txt
sed -i "s/^[ \t]*//" menu.txt
awk 'NR%2{printf $0" ";next;}1' menu.txt > menulist.txt
rm menu.txt
sed -i 's/ /_/g' menulist.txt
sed -i 's/_#/#/g' menulist.txt
#creates the select menu of the videos
p=`cat menulist.txt`
rm menulist.txt
select CHOICE in $p
do
#greps the mp4 url from the selected video and plays it with vlc
curl -s "$CHOICE" | grep 'file: "http://edge.liveleak.com' > file.txt
sed -i 's/ file: "//g' file.txt
sed -i 's/",//g' file.txt
file=`cat file.txt`
rm file.txt
vlc --play-and-exit $file > /dev/null 2>&1
done