Streaming dvb subtitles and epg over ts
Posted: 14 Jan 2011 11:53
by adammw
Hi.
I've been trying various combinations of commands to try and stream a channel from dvb to another computer.
I can get video and audio to stream ok, however no subtitles or epg is sent, even if --sout-all is specified instead of specific --programs. I've also tried to specify the subtitle id in --programs as well as the channel id, but still no luck.
What is the correct syntax for streaming subtitles and epg?
The channel program id i'm streaming is 1074, video id 517, audio id 700, teletext 581, and something else is 258.
Thanks.
Re: Streaming dvb subtitles and epg over ts
Posted: 14 Jan 2011 13:27
by realjobe
I've managed to get "burned" subtitles from .ts by this
Code: Select all
vlc.exe -I http -vvv --http-caching=5000 --sub-language=fi input.ts --sout \"#transcode{.....
Re: Streaming dvb subtitles and epg over ts
Posted: 19 Jul 2011 17:57
by igino.manfre
It a lot time from january, I do not know wether anyone will answer me.
I'm not a programmer.
I'd like to stream a program and all its related. Gatewaying from a WInTV stick, I'm able to stream the entire DTT MUX (using the undocumented parameter --ts-out) through the following line
c:\program files\vlc\vlc.exe" dvb-t://frequency=506000000 --ts-out=239.168.20.100:2000 ttl=3
It streams over udp the entire multicast composed of the following items
diff 0 video id orig 333
diff 1 audio id orig 344
diff 2 sottotitolo id orig 353
diff 3 video id orig 332
diff 4 audio id orig 342
diff 5 sottotitolo id orig 352
diff 6 video id orig 335
diff 7 audio id orig 346
diff 8 video id orig 334
diff 9 audio id orig 345
diff 10 sottotitolo id orig 354
diff 11 video id orig 520
diff 12 audio id orig 690
3411 RaiNews24
8571 RaiUno (=3401, ES: 014c, 0156, 0160)
8572 RaiDue
8573 RaiTre
8574 RaiStoria
EPG RaiStoria 8574
EPG RaiDue 8572
EPG RaiNews 3411
EPG RaiTre 8573
Opening this stream, you are able to select the program and within it you get all, teletext, EPG and whatever.
but this MPTS over IP cannot be opened by an IP SetTopBox.
In order to break it I re-stream one of its channels through the line
"c:\program files\vlc 1.1.10\vlc" udp://@239.168.20.100:2000 :udp-caching=300 :sout=#udp{mux=ts,dst=239.168.20.6:2000} --sout-ts-es-id-pid --sout-ts-muxpmt=143 :no-sout-standard-sap :no-sout-rtp-sap :ttl=3 :sout-keep
(or --sout-ts-program-pmt=8571 or in place of --sout-ts-muxpmt=8571)
you get the audio and video but no subtitle. Reading the stream with TS analyzer, you see there is nothing else than video and audio.
I tried to "append" other programs (--program=8571,353), but unsuccesfully
Can anybody help me?