Enigma1 Audio Streaming over the Internet

Dreambox information exchange on the best dreambox software images and help with all other operational problems with your Dreambox. The ultimate Dreambox satellite TV support forum.


Reply
 
LinkBack Thread Tools Display Modes
Old 20-03-2009   #1
.
 
Join Date: 21-12-2004
Location: .
Posts: 202
Thanks: 1
Thanked 14 Times in 9 Posts

My System: .
Enigma1 Audio Streaming over the Internet

(NB. I previously posted these files in the DM7000 section but have slightly simplified things and now make them available for any Enigma1 Dreambox)

Hi All,

When I'm not at home, I use my laptop as a 'sort of' portable radio with all the Satellite radio stations (and the audio of all the TV stations) on my Dreambox available wherever I am located (so long as I have an internet connection!).

I have streamed Audio and Video round my LAN using VLC for a long time but it is only recently I have streamed audio over the internet. My broadband upstream bandwidth (256Kb/s) is too slow for video without recoding but audio is fine straight out of the Dreambox!

To do this I set up DynDNS to point to my home internet IP and used 3 Mobile Internet on my laptop but soon found that my Enigma1 Dreambox DM7000S sends its Local LAN IP in the audio.pls file that should start the stream. This, of course, works fine when at home over the LAN but has no meaning when sent to a remote location over the internet. What is needed is the DNS from my DynDNS account.

To solve this problem I wrote a Linux Shell Script and later a Windows Batch File to auto edit the received audio.pls file and change the LAN IP to the DynDNS.

If you have tried internet audio streaming from an Enigma1 Dreambox and failed for this reason, then try using my script/batch file. The script/batch file MUST be edited to suit your Dreambox LAN IP and your DynDNS before it is installed on your PC/Laptop. How to do this and installation instructions are in the 'readme' file contained in the ZIP.

Download the ZIP appropriate to your PC/Laptop OS (Windoze or Linux), extract the files from the ZIP and then open the readme with a text editor. Follow the instructions and you'll soon have a remote/portable Satellite Radio Player!

Please ask if you have any questions or problems.

Best wishes, John.
Attached Files
File Type: zip vlcplsed11_linux.zip (1.1 KB, 7 views)
File Type: zip vlcplsed11_win.zip (22.9 KB, 21 views)
td03-5 is offline   Reply With Quote
The Following 4 Users Say Thank You to td03-5 For This Useful Post:
compufunk (20-03-2009), hungary2006 (04-05-2009), nikos21 (20-03-2009), P3t3r_2 (21-04-2009)
Old 20-03-2009   #2
Specialist Contributor
 
compufunk's Avatar
 
Join Date: 07-05-2008
Location: NW, Ireland
Posts: 1398
Thanks: 126
Thanked 231 Times in 198 Posts

My System: DM 600-S, AB IPBox 9000HD, Moteck SG2100, Fracarro Penta 85 dish, + some puters

Thanks for your efforts john
compufunk is offline   Reply With Quote
Old 21-04-2009   #3
Specialist Contributor
 
compufunk's Avatar
 
Join Date: 07-05-2008
Location: NW, Ireland
Posts: 1398
Thanks: 126
Thanked 231 Times in 198 Posts

My System: DM 600-S, AB IPBox 9000HD, Moteck SG2100, Fracarro Penta 85 dish, + some puters

My favorite radio stations web stream has been dropping off a lot lately, so I decided to try out your method of automatically editing the audio.pls file to insert the dynamic DNS name.

It works a charm and saves the hassle of manually fiddling with the file.

Thanks
compufunk is offline   Reply With Quote
Old 22-04-2009   #4
.
 
Join Date: 21-12-2004
Location: .
Posts: 202
Thanks: 1
Thanked 14 Times in 9 Posts

My System: .

Hi Compufunk,

I'm glad you found it useful.
Which version did you use (Windoze or Linux)?
Was it easy to get it working?
Do you think the instructions are adequate for the average user?

I had begun to think that no one (but me) would ever use it!

Best wishes, John.

BTW: Radio Station 'Sunshine Live' is far easier this way than using their internet stream!

Last edited by td03-5; 22-04-2009 at 09:08 AM.
td03-5 is offline   Reply With Quote
Old 22-04-2009   #5
Specialist Contributor
 
compufunk's Avatar
 
Join Date: 07-05-2008
Location: NW, Ireland
Posts: 1398
Thanks: 126
Thanked 231 Times in 198 Posts

My System: DM 600-S, AB IPBox 9000HD, Moteck SG2100, Fracarro Penta 85 dish, + some puters

John,
I used the windows version and had it working in a few minutes, the instructions easy enough to follow.

I had a bit of time on my hands today, so I wrote a little batch file to automate the installation.

It will prompt you for your DNS and IP settings and write them to the other batch file. It also copies the files to ?:\windows and sets up the file association.

All you need to do is now tell firefox/IE to use the vlcplsed.bat batch file by default.
Code:
@echo off
setlocal

:: Copy the required files 
copy /y .\vlcplsed.bat %systemRoot%
copy /y .\gsar.exe %systemRoot%
copy /y .\cmdow.exe %systemRoot%

:Step1
::Prompt user for Dreambox IP and DNS name.

set OK=Y
cls
set /p DreamIP=Please enter your dreambox IP address:
echo.
set /p DNSname=Please enter your DNS name:
cls
echo "Please check that the following is correct."
echo.
echo Dreambox IP: %DreamIP%
echo DNS name   : %DNSname%
echo.
set /p OK=If you need to change the above type N, otherwise type anything and hit enter:
If "%OK%"=="N" goto Step1
If "%OK%"=="n" goto Step1
cls

:: Modify vlcplsed.bat so that it has the correct DNS and IP.
gsar -s"192.168.0.24" -r%DreamIP% -o %systemRoot%\vlcplsed.bat 
gsar -s"dreamdns.homelinux.net" -r%DNSname% -o %systemRoot%\vlcplsed.bat
echo.
echo DNS and IP settings updated.
echo.

:: DO the file association stuff
set BatchPath=%systemRoot%\vlcplsed.bat

assoc .pls=
assoc .pls=VLCAudio
ftype VLCAudio=%BatchPath% %1
echo.

echo file association stuff done.
echo.
echo.
echo You can now delete the instalation files when you are happy that everything is OK.

Pause
endlocal
Attached Files
File Type: txt install.bat.txt (1.1 KB, 2 views)
compufunk is offline   Reply With Quote
The Following User Says Thank You to compufunk For This Useful Post:
td03-5 (22-04-2009)
Old 22-04-2009   #6
.
 
Join Date: 21-12-2004
Location: .
Posts: 202
Thanks: 1
Thanked 14 Times in 9 Posts

My System: .

Hi compufunk,

Thanks for that and for attaching your installation batch file.
Now people can choose to install the manual way, as per my instructions, or instead use your automated way.

It's important for people to note that your automated batch file installer is for Windoze only!

However the manual Linux installation is quite easy anyway.

Best wishes, John.
td03-5 is offline   Reply With Quote
Old 04-05-2009   #7
Member
 
Join Date: 03-08-2008
Location: Suomi
Posts: 15
Thanks: 5
Thanked 0 Times in 0 Posts

My System: DREAMBOX 7025+

Originally Posted by td03-5 View Post
(NB. I previously posted these files in the DM7000 section but have slightly simplified things and now make them available for any Enigma1 Dreambox)

Hi All,

When I'm not at home, I use my laptop as a 'sort of' portable radio with all the Satellite radio stations (and the audio of all the TV stations) on my Dreambox available wherever I am located (so long as I have an internet connection!).

I have streamed Audio and Video round my LAN using VLC for a long time but it is only recently I have streamed audio over the internet. My broadband upstream bandwidth (256Kb/s) is too slow for video without recoding but audio is fine straight out of the Dreambox!

To do this I set up DynDNS to point to my home internet IP and used 3 Mobile Internet on my laptop but soon found that my Enigma1 Dreambox DM7000S sends its Local LAN IP in the audio.pls file that should start the stream. This, of course, works fine when at home over the LAN but has no meaning when sent to a remote location over the internet. What is needed is the DNS from my DynDNS account.

To solve this problem I wrote a Linux Shell Script and later a Windows Batch File to auto edit the received audio.pls file and change the LAN IP to the DynDNS.

If you have tried internet audio streaming from an Enigma1 Dreambox and failed for this reason, then try using my script/batch file. The script/batch file MUST be edited to suit your Dreambox LAN IP and your DynDNS before it is installed on your PC/Laptop. How to do this and installation instructions are in the 'readme' file contained in the ZIP.

Download the ZIP appropriate to your PC/Laptop OS (Windoze or Linux), extract the files from the ZIP and then open the readme with a text editor. Follow the instructions and you'll soon have a remote/portable Satellite Radio Player!

Please ask if you have any questions or problems.

Best wishes, John.
Hello,

Many user concurrent can DreamBox handle when streaming over the internet?
hungary2006 is offline   Reply With Quote
Old 04-05-2009   #8
.
 
Join Date: 21-12-2004
Location: .
Posts: 202
Thanks: 1
Thanked 14 Times in 9 Posts

My System: .

Hi hungary',

Sorry but using this method it's only one.

You would need a multi-user server/stream, on a PC, to share it with more. However you could still only listen to one station at a time.

This way is simple and suits me. To share it round the factory I use an FM Sender and FM radios to listen.

Hope this answers your question.

Best wishes, John.
td03-5 is offline   Reply With Quote
Old 11-05-2009   #9
Member
 
Join Date: 03-08-2008
Location: Suomi
Posts: 15
Thanks: 5
Thanked 0 Times in 0 Posts

My System: DREAMBOX 7025+

Originally Posted by td03-5 View Post
Hi hungary',

Sorry but using this method it's only one.

You would need a multi-user server/stream, on a PC, to share it with more. However you could still only listen to one station at a time.

This way is simple and suits me. To share it round the factory I use an FM Sender and FM radios to listen.

Hope this answers your question.

Best wishes, John.
Yes, thanks. It answer my question.
hungary2006 is offline   Reply With Quote
Reply

Bookmarks

Tags
audio, enigma1, internet, streaming


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off







All times are GMT +1. The time now is 02:12 PM.


All views and information expressed in users' communications and profiles represent the opinions of the users concerned and do not represent the views of Satellites.co.uk. All images and news content are believed to be in the public domain, except where otherwise stated. Forum software by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Content Relevant URLs by vBSEO 3.3.1