You are not logged in.

Dear visitor, welcome to Dreamboard. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

21

Saturday, November 12th 2011, 5:01pm

i used all 4 files yes, and restarted GUI. And yes problem is with DVD
I tries PAL versions and also a few with custom subs.

When i stream PAL versions though, and menu from the dvd pops up, how do i choose "play" on the dreambox, without any mouse or keyboard attached to the dreambox?

22

Saturday, November 12th 2011, 6:31pm

perhaps if i have the same version af vlc for dreambox as you, the problem is solved?

23

Sunday, November 13th 2011, 6:20pm

I am using VLC 1.11

Problem must be there in VLCServer and your setting:

Source code

1
2
3
4
5
6
if re.match("dvd", filename):
# sout-all only, if is not selected subtitle track or subtitle language
if self.gettypeSubtitles()=="---" or self.gettypeSubtitles()=="-1": 
parameters += " :sout-all"
else:
parameters += " :sout-all"


See on it: parameter " :sout-all" add into stream all subtitles in same time.
I think, you:
1) you streaming grabed DVD
2) you leave set subtitles as none or as -1

Try comment this whole test:

Source code

1
2
3
4
5
6
#if re.match("dvd", filename):
# sout-all only, if is not selected subtitle track or subtitle language
  # if self.gettypeSubtitles()=="---" or self.gettypeSubtitles()=="-1": 
  #  parameters += " :sout-all"
#else:
  #  parameters += " :sout-all"

save and restart gui and let me know.
But in this cases will not be streaming more audio track.

VLC does not know streaming all audio tracks and one selected subtitle track, but only selected audio and selected track or all tracks ( :sout-all )

may be, for testing will be more easy change only lines: parameters += " :sout-all" to parameters += ""

This post has been edited 2 times, last edit by "ims" (Nov 13th 2011, 6:50pm)