Ok... i'm not a .net programmer but i think i figured some of the logic...
First of all.. the Dreambox Bouquets are stored in /var/tuxbox/config/enigma/
with a .tv extention (for TV) and .radio
a sample of my Movies bouquet is
Match that with the services file, located also there, and you can get the Channel name that corresponds to the thing in the .tv file.
This can be automated by getting the necessary files via FTP from the dreambox, and parsing let's say only the user bouquets for a tidy channel list. (default user/pass on any dbox is root/dreambox)
After doing that, we'll need to figure out a way to automate channel changing.
A quick and dirty approach i can think of right now is simulate the Web interface button presses.
That is found on http://DreamboxIP/showRemoteControl
A show source and some basic javascript skills can show how to simulate the button presses programmatically
Hope i've helped somewhat anyone that may develop the dbox plugin...
Hope i'll find some other way to remote control
First of all.. the Dreambox Bouquets are stored in /var/tuxbox/config/enigma/
with a .tv extention (for TV) and .radio
a sample of my Movies bouquet is
Code:
#NAME Movies
#SERVICE: 1:0:1:13d:157c:13e:820000:0:0:0:
#SERVICE: 1:0:1:1d53:2f44:13e:820000:0:0:0:
#SERVICE: 1:0:1:1bc2:17d4:13e:820000:0:0:0:
#SERVICE: 1:0:1:1d51:2f44:13e:820000:0:0:0:
#SERVICE: 1:0:1:162:1c84:13e:820000:0:0:0:
#SERVICE: 1:0:1:516:3db8:b0:820000:0:0:0:
#SERVICE: 1:0:1:517:3db8:b0:820000:0:0:0:
#SERVICE: 1:0:1:518:3db8:b0:820000:0:0:0:
Match that with the services file, located also there, and you can get the Channel name that corresponds to the thing in the .tv file.
This can be automated by getting the necessary files via FTP from the dreambox, and parsing let's say only the user bouquets for a tidy channel list. (default user/pass on any dbox is root/dreambox)
After doing that, we'll need to figure out a way to automate channel changing.
A quick and dirty approach i can think of right now is simulate the Web interface button presses.
That is found on http://DreamboxIP/showRemoteControl
A show source and some basic javascript skills can show how to simulate the button presses programmatically
Hope i've helped somewhat anyone that may develop the dbox plugin...
Hope i'll find some other way to remote control