#ts #dvb #api-bindings

nightly libdvb-rs

Safer and feature-complete pure-Rust interface for DVB-API v5 devices in Linux

5 releases

0.4.5 Mar 30, 2022
0.4.3 Mar 23, 2022
0.4.2 Mar 22, 2022
0.4.1 Mar 21, 2022
0.4.0 Mar 19, 2022

#1514 in Hardware support

Download history 4/week @ 2024-02-26 77/week @ 2024-04-01

77 downloads per month

MIT license

87KB
2K SLoC

libdvb

libdvb is an interface library for DVB-API v5 devices in Linux.

Supports three types of delivery systems:

  • Satellite: DVB-S, DVB-S2
  • Terretrial: DVB-T, DVB-T2, ATSC, ISDB-T
  • Cable: DVB-C

TODO:

  • Cenelec EN 50221 - Common Interface Specification for Conditional Access and other Digital Video BroadcastingDecoder Applications
  • DiSEqC 1.0
  • DiSEqC 1.1
  • EN 50494 - Unicable I
  • EN 50607 - Unicable II

FeDevice

Example DVB-S2 tune:

let fe = FeDevice::open_rw(0, 0)?;
set_dtv_properties!(
    fe, 
    DTV_DELIVERY_SYSTEM(SYS_DVBS2),
    DTV_FREQUENCY((11044 - 9750) * 1000),
    DTV_MODULATION(PSK_8),
    DTV_VOLTAGE(SEC_VOLTAGE_13),
    DTV_TONE(SEC_TONE_OFF),
    DTV_INVERSION(INVERSION_AUTO),
    DTV_SYMBOL_RATE(27500 * 1000),
    DTV_INNER_FEC(FEC_AUTO),
    DTV_PILOT(PILOT_AUTO),
    DTV_ROLLOFF(ROLLOFF_35),
    DTV_TUNE(()),
)?;

Frontend information:

let fe = FeDevice::open_ro(0, 0)?;
println!("{}", &fe);

Frontend status:

let fe = FeDevice::open_ro(0, 0)?;
let mut status = FeStatus::default();
status.read(&fe)?;
println!("{}", &status);

Dependencies

~4MB
~87K SLoC