如何使用ffmpeg从dvb-t(直播电视流 - udp)中提取EPG?

时间:2016-02-12 11:59:44

标签: ffmpeg streaming dvb epg

我想用ffmpeg从dvb-t(live tv stream - udp)中提取EPG。 我有一个dvb-t设备并使用udp接收流。

2 个答案:

答案 0 :(得分:2)

我有一个用mumudvb生成的dvb-t udp .ts流,我可以用epgrab提取XML格式的EPG指南信息 - https://github.com/hiroshiyui/epgrab

git clone https://github.com/hiroshiyui/epgrab.git
cd epgrab/
cmake .
make
# Point epgrab to your dvb adapter
./epgrab -i /dev/dvb/adapter0/demux0 > out.xml

希望这有帮助!

答案 1 :(得分:0)

我编写了一个名为dvbtee的实用程序,可以用作c ++库,跨平台命令行实用程序或node.js模块。

命令行实用程序将解析您的流并输出EPG,具体取决于您指定的参数,它可以生成纯文本或JSON数据块。

dvbtee: a digital television streamer / parser / service information aggregator supporting various interfaces including telnet CLI & http control

node.js模块将发出包含PSIP表数据的事件(以及EPG信息)

node-dvbtee: MPEG2 transport stream parser for Node.js with support for television broadcast PSIP tables