我可以 select 哪个 DVB-T 音频频道 VLC 流?

Can I select which DVB-T audio channel VLC streams?

在 Debian Wheezy 上使用 DVB-T 棒,我正在尝试使用 VLC 流式传输 DVB-T 频道。

服务器端的流式传输效果很好。在客户端上,我可以使用 URL http://my_ip:8080/tv_channel 打开一个流,我会立即获得视频。

但是,问题在于音轨。在服务器端,VLC 流式传输 2 个音轨,其中第二个是我想听的。 但是在客户端,VLC 始终默认为第一个音轨。

有没有办法强制服务器 VLC 仅播放第二首曲目,或者通过 URL 告诉客户端使用第二首曲目?

我想要实现的是在客户端打开一个 link 并使用正确的轨道,而无需手动将其从第一个更改为第二个。 另外,我的移动客户端无法 select 音频流,它总是使用第一个。

请注意,有些 DVB-T 频道只有一个音轨,而其他频道有两个。这意味着在 VLC 客户端中将第二首曲目设置为默认曲目会导致其他频道的音频被禁用。

我的服务器端 VLC 配置文件:

new dvbt1 broadcast enabled
setup dvbt1 input "dvb-t://"
setup dvbt1 option dvb-adapter=0
setup dvbt1 option dvb-frequency=602000000
setup dvbt1 option dvb-bandwidth=8
setup dvbt1 option programs=513,514,770,773,2050
setup dvbt1 option ts-es-id-pid

setup dvbt1 output
#duplicate{dst=std{access=http,mux=ts,dst=:8080/nova},select="program=513",
dst=std{access=http,mux=ts,dst=:8080/nova-cinema},select="program=514",
dst=std{access=http,mux=ts,dst=:8080/prima-cool},select="program=770",
dst=std{access=http,mux=ts,dst=:8080/prima},select="program=773",
dst=std{access=http,mux=ts,dst=:8080/barrandov-tv},select="program=2050"}

control dvbt1 play

注意:我已经尝试通过将此添加到配置文件来手动 select pid-audio,但这实际上什么也没做。

dst=std{access=http,mux=ts{pid-audio=112},dst=:8080/nova},select="program=513"

最终我最终使用 MuMuDVB 进行单播流传输,它正确地完成了工作 - 主要频道被正确标记为主要频道,以便播放器可以默认使用它。

此外,CPU MuMuDVB 的足迹如果远小于 VLC。