Sponsored links


Go Back   Sat Industry Forums > Dreambox > Applications Support
Register FAQ Members List Calendar Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-24-2005
daman's Avatar
Registered User
 
Join Date: Apr 2004
Posts: 167
Thanks: 0
Thanked 0 Times in 0 Posts
daman is on a distinguished road
VLC Stream 1.09

VLC Stream 1.09

Release notes

Program to automate starting up the stream from DB with VLC.
You can also choose to use the transcode setting, that will make VLC transcode the stream with settings you choose and sending the stream to other PC's. It also loops so if you change channel on the DB the program stops VLC and starts up again with correct settings.

You also have options like: change channel, put DB into standby, wake up from standby, EPG for current channel, open telnet from program, reboot the db, support for language preference in vlc 0.8.2 and above
New in this version:
- Minimize to tray.
- Change channel from trayicon.

PS! You need of course the VLC media player installed as well, preferably with the installation program they supply (no zip file) as that will set needed parameters into the registry..the pskill.exe and msinet.ocx is not needed in this version but you need .net framework installed.


VLC_Stream.Net.rar
Reply With Quote
Sponsored links
  #2 (permalink)  
Old 07-24-2005
Registered User
 
Join Date: Dec 2004
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
gretchen is on a distinguished road
Great, thanks , works ok
Reply With Quote
  #3 (permalink)  
Old 07-26-2005
Registered User
 
Join Date: Nov 2004
Posts: 149
Thanks: 0
Thanked 0 Times in 0 Posts
harry1322 is on a distinguished road
can you post some onstructions how to set it up please?
Reply With Quote
  #4 (permalink)  
Old 07-26-2005
Registered User
 
Join Date: Apr 2004
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
Freebuster is on a distinguished road
Very good program ! If someone could give the sources, it'll be helpfull for my HCPC (I try to do a program to control it with a remotecontrol for PC...).
Reply With Quote
  #5 (permalink)  
Old 08-17-2005
Registered User
 
Join Date: Oct 2003
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
rodatthebay is on a distinguished road
I think this is a great simple program.

Getting streaming working is pretty easy. I have a simple , similar program working on an EPG based GUI so I can see whats on and click on it to stream.

Some VB6 Code
'this will zap to a service. You need to get your service from the relevant files.

Function zaptoservice(strservice As String)
temp = frmdisplay.Inet1.OpenURL("http://" & dreamboxip & "/?mode=zap&path=" & strservice)
End Function

This little snippet will stream the current channel. It loads all the streaming parameters into an array and then provides them as parameters to the VLC client. I only have it running on the Hydra image. It also writes the parameters to a textfile for debug.

Sub streamcurrentchannel()
On Error GoTo errhan
thefile = FreeFile
Open App.Path & "\streaminfo.txt" For Output As thefile
temp = frmdisplay.Inet1.OpenURL("http://" & dreamboxip & "/cgi-bin/streaminfo")
Dim servarray(30)
servarrayct = 0
While InStr(temp, "</td>") > 0
temp1 = Left(temp, InStr(temp, "</td>") - 1)
temp = Mid(temp, InStr(temp, "</td>") + 5, 2000)
temp1 = Replace(temp1, "<td>", "")
temp1 = Replace(temp1, "<tr>", "")
temp1 = Replace(temp1, "</tr>", "")
servarray(servarrayct) = temp1
servarrayct = servarrayct + 1
'MsgBox temp1
Wend
For i = 1 To 23
Print #thefile, Str(i) & "-" & servarray(i)
Next
Close #thefile
Dim hnd As Integer
hnd = Shell("C:\Program Files\VideoLAN\VLC\vlc.exe http://" & dreamboxip & ":31339/0," & Left(servarray(21), 4) & "," & Left(servarray(7), 4) & "," & Left(servarray(9), 4) & "," & Left(servarray(11), 4), vbNormalFocus)
Exit Sub
errhan:
MsgBox "An error has occured . Report Error " & Error$

End Sub

If you want more code to get the services out of the dreambox files just drop me a PM.

Hope someone makes good use of this info it is very widely available.
Reply With Quote
Reply


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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
No boot after 1.09 update dverkest DM-7000s 20 01-10-2006 02:02 AM
!!!New Hydra7020 Phoenix 1.09 Image!!! Gaj1 The_Hydra Images 165 01-04-2006 09:09 PM
No boot after update 1.09 dverkest DB Images 2 05-05-2005 03:06 AM
No boot after 1.09 Update dverkest Dreambox Hardware 2 05-04-2005 07:57 PM
!!!New Hydra7000 Phoenix 1.09 Image!!! hemertje The_Hydra Images 105 02-19-2005 07:00 AM


All times are GMT +10. The time now is 04:52 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Page generated in 0.22702 seconds with 10 queries