{"id":16511194,"url":"https://github.com/danog/libdvb","last_synced_at":"2026-07-15T20:04:44.627Z","repository":{"id":93800686,"uuid":"566011722","full_name":"danog/libdvb","owner":"danog","description":" DVB system bindings ","archived":false,"fork":false,"pushed_at":"2023-12-11T20:22:39.000Z","size":154,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-12T20:13:14.923Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-11-14T19:42:17.000Z","updated_at":"2022-11-14T19:42:32.000Z","dependencies_parsed_at":"2023-03-04T03:00:41.301Z","dependency_job_id":null,"html_url":"https://github.com/danog/libdvb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danog%2Flibdvb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danog%2Flibdvb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danog%2Flibdvb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danog%2Flibdvb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danog","download_url":"https://codeload.github.com/danog/libdvb/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241476435,"owners_count":19968916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T15:59:17.308Z","updated_at":"2025-10-17T07:55:37.633Z","avatar_url":"https://github.com/danog.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libdvb\n\nlibdvb is an interface library for DVB-API v5 devices in Linux.\n\nSupports three types of delivery systems:\n\n- Satellite: DVB-S, DVB-S2\n- Terretrial: DVB-T, DVB-T2, ATSC, ISDB-T\n- Cable: DVB-C\n\nTODO:\n\n- Cenelec EN 50221 - Common Interface Specification for Conditional Access and\n  other Digital Video BroadcastingDecoder Applications\n- DiSEqC 1.0\n- DiSEqC 1.1\n- EN 50494 - Unicable I\n- EN 50607 - Unicable II\n\n## FeDevice\n\nExample DVB-S2 tune:\n\n```rust\nlet fe = FeDevice::open_rw(0, 0)?;\nset_dtv_properties!(\n    fe, \n    DTV_DELIVERY_SYSTEM(SYS_DVBS2),\n    DTV_FREQUENCY((11044 - 9750) * 1000),\n    DTV_MODULATION(PSK_8),\n    DTV_VOLTAGE(SEC_VOLTAGE_13),\n    DTV_TONE(SEC_TONE_OFF),\n    DTV_INVERSION(INVERSION_AUTO),\n    DTV_SYMBOL_RATE(27500 * 1000),\n    DTV_INNER_FEC(FEC_AUTO),\n    DTV_PILOT(PILOT_AUTO),\n    DTV_ROLLOFF(ROLLOFF_35),\n    DTV_TUNE(()),\n)?;\n```\n\nFrontend information:\n\n```rust\nlet fe = FeDevice::open_ro(0, 0)?;\nprintln!(\"{}\", \u0026fe);\n```\n\nFrontend status:\n\n```rust\nlet fe = FeDevice::open_ro(0, 0)?;\nlet mut status = FeStatus::default();\nstatus.read(\u0026fe)?;\nprintln!(\"{}\", \u0026status);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanog%2Flibdvb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanog%2Flibdvb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanog%2Flibdvb/lists"}