You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that this good library has support for both: Linux DVB internal tuners and HDHomeRun devices.
From some time a new protocol for network tuners is available (almos for DVB sources): SAT>IP.
Commands based on URI like: ?src=1&freq=11347&pol=v&ro=0.35&msys=dvbs2&mtype=8psk&plts=on&sr=22000&fec=23&pids=0,17,18
So, in fact similar to HDHR in functionality:
Both are network tuners.
Both have autodiscovering (SSDP vs 65001/udp), but addressable directly with the IP address.
Both use a message control protocol (RTSP in port 554 vs hdhomerun-binary in 65001/tcp).
Both use similar transport protocol (RTP+RTCP vs RTP/UDP).
Then I feel it can be easy to integrate the support for it. The idea is to use the current code for the HDHR input as an example for the concrete class satip_tuner_device, and use part of the code from the VLC project to complete the implementation.
You think that's a good idea?
I hope you agree to consider this upgrade.
Regards.
The text was updated successfully, but these errors were encountered:
Hi,
I see that this good library has support for both: Linux DVB internal tuners and HDHomeRun devices.
From some time a new protocol for network tuners is available (almos for DVB sources): SAT>IP.
You can get the official specification from here:
http://www.satip.info/sites/satip/files/resource/satip_specification_version_1_2_2.pdf
And a good example code from the last VideoLAN commit (a single file for the input):
https://github.com/videolan/vlc/blob/master/modules/access/satip.c
A brief overview of this standard:
?src=1&freq=11347&pol=v&ro=0.35&msys=dvbs2&mtype=8psk&plts=on&sr=22000&fec=23&pids=0,17,18
So, in fact similar to HDHR in functionality:
Then I feel it can be easy to integrate the support for it. The idea is to use the current code for the HDHR input as an example for the concrete class
satip_tuner_device
, and use part of the code from the VLC project to complete the implementation.You think that's a good idea?
I hope you agree to consider this upgrade.
Regards.
The text was updated successfully, but these errors were encountered: