Hello everyone,
I'm trying to develop a little Client-Server Applikation using JVLC. So far it works pretty fine, but now I have trouble with getting EPG-Data from the DVB-T signal to the client. The App on the server side uses VLM.addBroadcast with the following options:
String[] optionsProSieben = new String[4];
optionsProSieben[0] = "dvb-frequency=746000000";
optionsProSieben[1] = "dvb-adapter=0";
optionsProSieben[2] = "dvb-bandwidth=8";
optionsProSieben[3] = "program=16403";
The output-string looks like this:
String outputTv = "#standard{access=http,mux=ts,dst=localhost:8080/live/tv/tvStation}";
The client is able to show this stream but it seems like there is no EPG-Data in the stream. I tried to open the stream in VLC Player. It plays but also there's no information about the current program. Perhaps anyone knows how to include the EPG-Data?
Christian