{"id":13584256,"url":"https://github.com/KYDronePilot/hdfm","last_synced_at":"2025-04-07T01:31:48.074Z","repository":{"id":105901432,"uuid":"109531287","full_name":"KYDronePilot/hdfm","owner":"KYDronePilot","description":"UI for live weather/traffic/meta data collected from HD Radio stations","archived":false,"fork":false,"pushed_at":"2023-10-30T22:56:35.000Z","size":39723,"stargazers_count":177,"open_issues_count":10,"forks_count":12,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-03-22T05:31:44.869Z","etag":null,"topics":["hd-radio","iced-rs","rtl-sdr","rust"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KYDronePilot.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-04T21:23:50.000Z","updated_at":"2025-03-09T07:16:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"9ed74f4a-46e1-4fc4-b1b9-6de5dc0d760f","html_url":"https://github.com/KYDronePilot/hdfm","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KYDronePilot%2Fhdfm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KYDronePilot%2Fhdfm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KYDronePilot%2Fhdfm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KYDronePilot%2Fhdfm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KYDronePilot","download_url":"https://codeload.github.com/KYDronePilot/hdfm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247577982,"owners_count":20961211,"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":["hd-radio","iced-rs","rtl-sdr","rust"],"created_at":"2024-08-01T15:04:07.381Z","updated_at":"2025-04-07T01:31:43.064Z","avatar_url":"https://github.com/KYDronePilot.png","language":null,"funding_links":["https://github.com/sponsors/KYDronePilot/sponsorships?sponsor=KYDronePilot\u0026tier_id=208482"],"categories":["Others","Productivity Tools"],"sub_categories":["Weather"],"readme":"# HDFM - HD Radio GUI\n\nView live data collected from HD Radio stations\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"App window\" src=\"img/main_screen.png\"\u003e\n\u003c/p\u003e\n\u003chr\u003e\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"GitHub release (latest by SemVer)\" src=\"https://img.shields.io/github/downloads/KYDronePilot/hdfm/v2.2.0/total\"\u003e\n  \u003cimg alt=\"Language\" src=\"https://img.shields.io/badge/language-Rust-orange\"\u003e\n\u003c/p\u003e\n\n## Features\n\nUses [NRSC-5](https://github.com/theori-io/nrsc5) with an [RTL-SDR dongle](https://www.rtl-sdr.com/buy-rtl-sdr-dvb-t-dongles/) to display live data captured from HD Radio stations\n\nBlazing fast, fully native Rust GUI application\n\nGUI is styled like a digital car stereo system, displaying:\n\n- Traffic map\n- Weather radar\n- Station/artist artwork\n- Other station/song metadata\n\nRequires no internet connection, so it can be used off the grid\n\n## Pre-requisites\n\n- An [rtl-sdr dongle](https://www.rtl-sdr.com/buy-rtl-sdr-dvb-t-dongles/)\n- The [nrsc5 program](https://github.com/theori-io/nrsc5) installed\n\n## Installation\n\n### macOS\n\nM1:\n\n```bash\nsudo curl -sSL 'https://github.com/KYDronePilot/hdfm/releases/download/v2.2.0/hdfm-aarch64-apple-darwin.tgz' | sudo tar xzv -C /usr/local/bin\n```\n\nIntel:\n\n```bash\nsudo curl -sSL 'https://github.com/KYDronePilot/hdfm/releases/download/v2.2.0/hdfm-x86_64-apple-darwin.tgz' | sudo tar xzv -C /usr/local/bin\n```\n\n### Windows\n\nRun from an Administrator powershell prompt:\n\n```powershell\nInvoke-WebRequest -Uri \"https://github.com/KYDronePilot/hdfm/releases/download/v2.2.0/hdfm-x86_64-pc-windows-msvc.zip\" -OutFile \"$env:temp\\hdfm.zip\"\nExpand-Archive -Path \"$env:temp\\hdfm.zip\" -DestinationPath C:\\Windows\n```\n\n### Linux\n\n**Note**: Requires Vulkan graphics.\n\nx86_64:\n\n```bash\nsudo curl -sSL 'https://github.com/KYDronePilot/hdfm/releases/download/v2.2.0/hdfm-x86_64-unknown-linux-musl.tgz' | sudo tar xzv -C /usr/local/bin\n```\n\naarch64:\n\n```bash\nsudo curl -sSL 'https://github.com/KYDronePilot/hdfm/releases/download/v2.2.0/hdfm-aarch64-unknown-linux-musl.tgz' | sudo tar xzv -C /usr/local/bin\n```\n\n## Usage\n\n```\nhdfm-rs 2.2.0\n\nUSAGE:\n    hdfm [OPTIONS] \u003cfrequency\u003e \u003cprogram\u003e\n\nARGS:\n    \u003cfrequency\u003e    Frequency of HD radio station\n    \u003cprogram\u003e      HD radio program to tune (e.g. 1 for HD1, 2 for HD2, etc.) [possible values:\n                   1, 2, 3, 4]\n\nOPTIONS:\n    -b, --nrsc5-bin \u003cnrsc5_bin\u003e    Path to nrsc5 binary (use if nrsc5 is not in your PATH) [default:\n                                   nrsc5]\n    -g \u003cgain\u003e                      Gain (automatic gain selection if not specified)\n    -h, --help                     Print help information\n    -l, --log-level \u003clog_level\u003e    Logging level (1=error, 2=warn, 3=info, 4=debug) [default: 2]\n                                   [possible values: 1, 2, 3, 4]\n        --layout \u003clayout\u003e          GUI layout (compact, grid) [default: compact] [possible values:\n                                   compact, grid]\n    -s                             Disable audio output\n    -V, --version                  Print version information\n```\n\n## Source code access\n\nThis project is released as \"Pay-source\" software. Precompiled binaries are provided under the [Releases](https://github.com/KYDronePilot/hdfm/releases) page for anyone to use.\n\nIf you would like to access the source code, please pay a one-time fee of $20 though GitHub Sponsors. You will then be given access to the private repository containing the code. With this access, you have permission to:\n\n- Fork/clone and make modifications\n- Build and distribute your own binaries\n- Contribute back to the project and official binaries\n\nYou will not be permitted to distribute/publish the original and/or modified versions of the source code.\n\n### [Click here to get source code access](https://github.com/sponsors/KYDronePilot/sponsorships?sponsor=KYDronePilot\u0026tier_id=208482)\n\n## Compatible radio stations\n\nA list of nearby HD Radio stations can be found at: \u003chttps://hdradio.com/stations\u003e\n\nIn addition, the station must be operated by iHeartRadio to access weather and traffic data. A list of iHeartRadio-owned stations in the US can be found here: \u003chttps://en.wikipedia.org/wiki/List_of_radio_stations_owned_by_iHeartMedia\u003e\n\n## Copyright\n\nCopyright (c) 2022 Michael Galliers. All Rights Reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKYDronePilot%2Fhdfm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKYDronePilot%2Fhdfm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKYDronePilot%2Fhdfm/lists"}