我想用ffmpeg从dvb-t (live tv stream - udp)中提取EPG。我有一台dvb-t设备,可以用udp接收数据流。
发布于 2016-02-26 20:29:59
我有一个用mumudvb生成的dvb-t udp .ts流,我可以用epgrab - https://github.com/hiroshiyui/epgrab提取XMLTV格式的EPG指南信息。
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希望这能有所帮助!
发布于 2017-03-01 19:31:32
我编写了一个名为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信息)的事件
https://stackoverflow.com/questions/35362103
复制相似问题