Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
01-10-2009, 04:06 AM
|
#1
|
|
LQ Newbie
Registered: Sep 2008
Location: Malta, EU
Distribution: Ubuntu
Posts: 9
Rep:
|
View Streamed TV
Hi,
I am doing some research that would allow me to create a media centre PC that would get Streamed Channels from (I dont know were to get them help is needed (MYP2P is one but can't get it to work properley)) and show it on my Television. the I have an 8Mb/s ADSL Connection. No HD Quality need for now.
Any help?
Don't wish for other packages with payment from cable companies etc.
|
|
|
|
01-11-2009, 02:40 PM
|
#2
|
|
Senior Member
Registered: Jan 2005
Location: Nottingham, UK
Distribution: Mageia 2 / CrunchBang Linux 10 Statler / Easy Peasy
Posts: 4,287
|
Zattoo streams channels, it's also free. Depending on your location you may or maynot get all available streams. I don't know how you would get it to stream to your tv and they have a player of their own.
|
|
|
|
01-11-2009, 02:56 PM
|
#3
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Rep:
|
|
|
|
|
01-12-2009, 03:56 AM
|
#4
|
|
LQ Newbie
Registered: Sep 2008
Location: Malta, EU
Distribution: Ubuntu
Posts: 9
Original Poster
Rep:
|
I am from Malta so Zattoo is no good for me.
frenchn00b. can't access that link.
|
|
|
|
01-12-2009, 05:12 AM
|
#5
|
|
Senior Member
Registered: Mar 2007
Location: Russia
Distribution: Slackware 12.2
Posts: 1,202
Rep:
|
Quote:
Originally Posted by trumbun
Any help?
|
http://www.beelinetv.com/
Also search for "free internet tv" or "free streaming tv" with google. There are many sites that give links to streams, it all depends on what quality do you need.
|
|
|
|
01-16-2009, 06:40 PM
|
#6
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Rep:
|
Quote:
Originally Posted by trumbun
I am from Malta so Zattoo is no good for me.
frenchn00b. can't access that link.
|
Quote:
#/bin/sh --
#set -vxe
while [ 1 ] ; do
echo " Country: pl, be, fr, au, at , uk "
echo "The country ?"
read ACT
#ACT="$1"
if [ "$ACT" == "pl" ] ; then
ACT="http://wwitv.com/television/168.htm"
fi
if [ "$ACT" == "be" ] ; then
ACT="http://wwitv.com/television/21.htm"
fi
if [ "$ACT" == "fr" ] ; then
ACT="http://wwitv.com/television/73.htm"
fi
if [ "$ACT" == "de" ] ; then
ACT="http://wwitv.com/television/81.htm"
fi
if [ "$ACT" == "au" ] ; then
ACT="http://wwitv.com/television/13.htm"
fi
if [ "$ACT" == "at" ] ; then
ACT="http://wwitv.com/television/14.htm"
fi
if [ "$ACT" == "uk" ] ; then
ACT="http://wwitv.com/television/217.htm"
fi
if [ "$ACT" == "--help" ] ; then
echo "Help:"
echo "--help for help"
echo "--debug for running with debug"
echo "Use:"
echo "script URL"
exit -1
fi
for req in links zenity vlc mplayer ; do which $req >/dev/null 2>&1 || exit 1; done
TEMPDIR="${HOME}/tmp"
[ -d "${TEMPDIR}" ] || { mkdir "${TEMPDIR}" || exit 1; }
TEMPF="${TEMPDIR}/.wwitvsh.$$.tmp"
__haveTemp() { [ -e "${TEMPF}" ] || exit 1; }
__rmTemp() { rm -f "${TEMPF}.list"; rm -f "${TEMPF}"; }
__displayErr() { zenity --title="FCOL" --error --text "You failed miserably."; exit 1; }
__reqPage() { if [ "$ACT" == "" ] || [ "$ACT" == "--debug" ] ; then
ADDR=`zenity --title="Stage One: URI" --entry --text "Give me the full address of the webpage:" \
--entry-text "http://www.si.te/dir/page.html" 2>/dev/null`
fi
if [ "$ACT" != "" ] ; then
[ "$ACT" != "--debug" ] && ADDR="$ACT"
fi
echo "The address retrieving: ${ADDR}"
[ -n "${ADDR}" ] || __displayErr; [ "${ADDR}" = "http://www.si.te/dir/page.html" ] && __displayErr
[ "${ADDR:0:4}" = "http" ] || __displayErr; [ "${ADDR:4:3}" = "://" ] || __displayErr;
[ "${ADDR:0:28}" = "http://wwitv.com/television/" ] || __displayErr; }
__dumpPage() { which links >/dev/null 2>&1 || exit 1; elinks -dump "${ADDR}" 2>/dev/null|\
tr -s ' ' > "${TEMPF}" || exit 1; }
__parsePage() { __haveTemp; row=0; grep "\[[0-9]\{1,3\}\]" "${TEMPF}"|cut -d "[" -f 2|tr "]" " "\
|while read seq title; do hrefseq=$[${seq}+1]; href=`grep "^[[:blank:]]${hrefseq}\.[[:blank:]]javascript.l" \
"${TEMPF}"|egrep "\.(ram|asx)"|awk -F"'" '{print $4}'`; [ -z $href ] || { ((row++)); \
echo "${row};${href};\"${title}\""; }; done > "${TEMPF}".list; }
__displayGo() { __haveTemp; RES=($(awk -F';' '{print $1, $NF}' "${TEMPF}.list"|zenity --title="Channel list" \
--width=600 --height=800 --list --text "Channel list" --radiolist --column "Nr" --column "Channel" --separator=" "))
RES=`grep -m1 "^${RES[0]};" "${TEMPF}.list"|awk -F';' '{print $2}'`; [ -z $RES ] || {
if "$ACT" = "--debug" ; then
zenity --title="Access channel?" \
--question --text "Access channel: \""${RES}"\"?";
fi
echo " the links is : ${RES%} ${RES} "
echo ${RES} | grep http
if [ "${RES%.ram}" = "${RES%}" ] ; then
vlc -f ${RES}
else
mplayer \
${RES};
fi
}; }; __rmTemp; __reqPage; __dumpPage; __parsePage; __displayGo; __rmTemp;
# exit 0
done
|
you can add more countries ... if you want liek malta
it is easy but please share us the last version  !!
|
|
|
|
01-16-2009, 06:41 PM
|
#7
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Rep:
|
here is a new script:
Code:
#!/bin/sh
# - maandag
# - dinsdag
# - woensdag
# - donderdag
# - vrijdag
# - zondag
# vrijdag"
date
if [ "$(date +%A)" == "Friday" ] ; then
DATEINFO="donderdag"
fi
if [ "$(date +%A)" == "Saturday" ] ; then
DATEINFO="vrijdag"
fi
if [ "$(date +%A)" == "Sunday" ] ; then
DATEINFO="samstag"
fi
if [ "$(date +%A)" == "Monday" ] ; then
DATEINFO="zontag"
fi
if [ "$(date +%A)" == "Tuesday" ] ; then
DATEINFO="maandag"
fi
if [ "$(date +%A)" == "Wednesday" ] ; then
DATEINFO="dinsdag"
fi
if [ "$(date +%A)" == "Thursday" ] ; then
DATEINFO="woensdag"
fi
echo " Today is $DATEINFO "
echo "http://www.avs.be/documenten/video/${DATEINFO}.asx"
LINKURL=` wget -k -O - http://www.avs.be/documenten/video/${DATEINFO}.asx `
LINK2=` echo $LINKURL | grep -o 'mms:[^"]*'`
echo "$LINKURL"
echo "Playing: $LINK2"
mplayer -fs -zoom "$LINK2"
|
|
|
|
01-17-2009, 01:59 AM
|
#8
|
|
LQ Newbie
Registered: Sep 2008
Location: Malta, EU
Distribution: Ubuntu
Posts: 9
Original Poster
Rep:
|
what is that script for? and what to do with it?
|
|
|
|
02-10-2011, 01:05 PM
|
#9
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Rep:
|
Quote:
Originally Posted by trumbun
what is that script for? and what to do with it?
|
The script to watch Tv Online is now much much better. It is totally embedded into a powerful theming under fvwm. Enjoy watching TV ONLINE: there is bloomberg, asx videos, wwtv, and lot of channels. It is interesting apparently for some users according to their interested feedbacks.
The config /program is here:
http://box-look.org/content/show.php...content=127893
All the best!
|
|
|
|
02-09-2012, 02:29 AM
|
#10
|
|
LQ Newbie
Registered: Jan 2012
Posts: 2
Rep: 
|
You can try this website:
http://www.wsltv.com/
It provide lot of free TV streams.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:03 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|