Hello,
I've tried the VNSI plugin, but we have an issue in France, it does not seem to work with our HD channels : the sound is in EAC3, and not AC3.
In the demuxer_AC3.c of the vnsi-plugin, there is this line (271)
LOGCONSOLE("Detected EAC3 stream, not implemented yet");
Do you know if someone is working on that? Is there a lot to do?
Is there a big difference between AC3 and EAC3?
Because in the vdrstream plugin, we solved this by adding a line in pat.c
case SI::AC3DescriptorTag:
+ case SI::EnhancedAC3DescriptorTag:
dpid = stream.getPid();
and in livestreamer.c
case SI::AC3DescriptorTag:
+ case SI::EnhancedAC3DescriptorTag:
Dprintf("cStreamdevPatFilter PMT scanner: adding PID %d (%s) %s\n",
Unfortunatly, I can not manage to do something likewise with vnsi.
Can anyone help?
Mulb