Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

rtl-sdr-fm-rds-recorderRTL SDR FM RDS 录音机

Agent Skill

rtl-sdr-fm-rds-recorder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,966

周安装

162

GitHub Stars

公开资料未说明

下载量

1,283
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rtl-sdr-fm-rds-recorder(RTL SDR FM RDS 录音机)
来源仓库:https://github.com/igrikxd/rtl-sdr-fm-rds-recorder
安装命令:
openclaw skills install rtl-sdr-fm-rds-recorder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install rtl-sdr-fm-rds-recorder

简介

使用可靠的 IQ 捕获工作流程,通过离线 WBFM 解调、RDS 电台名称提取和自动录制功能,从 RTL-SDR 录制广播 FM 电台。

SKILL.md

name
rtl-sdr-fm-rds-recorder
description
Record broadcast FM stations from an RTL-SDR using a reliable IQ-capture workflow with offline WBFM demodulation, RDS station-name extraction, and automatic MP3 naming. Use when working with RTL-SDR broadcast FM tasks such as scanning stations, recording radio audio, extracting RDS or PS station names, or saving files with station-name frequency time naming.

RTL-SDR FM RDS Recorder

Overview

Use this skill for reliable broadcast FM recording from an RTL-SDR. The preferred workflow is IQ capture with rtl_sdr, RDS station-name extraction, offline WBFM demodulation, and MP3 export. This skill currently targets Linux environments and should be treated as Linux-only.

Workflow

  1. Run --check to confirm the RTL-SDR is available and reachable before promising the skill is ready to use.
  2. Confirm redsea is installed and reachable, either from PATH or from the expected local fallback path, before promising full RDS-ready behavior.
  3. If redsea is missing, rebuild or reinstall it before running --decode-rds or any staged recording flow that depends on station naming.
  4. When the user wants to discover stations first, run broadcast FM band scan mode and return a list of candidates with frequency and relative strength. Do not promise station names from scan mode alone.
  5. Use scripts/fm_iq_pipeline.py for recording.
  6. If needed, read references/pipeline-notes.md for setup-specific caveats.
  7. Prefer a staged workflow: scan first, then decode RDS for one chosen frequency, then record that same chosen station with --record --freq, using the same --out-dir for both steps.
  8. Return the produced MP3 file(s) to the user and mention station name / frequency.
  9. For Telegram file delivery, send media-only replies when attaching generated files. Do not mix explanatory text with the MEDIA:... token in the same message; send the file attachment as its own message. If one reply contains multiple MEDIA:... tokens, put each token on its own line.

Dependencies

This skill is Linux-only and is only fully ready to use when these tools are present.

  • rtl_sdr
  • rtl_fm
  • rtl_power
  • ffmpeg
  • python3
  • numpy
  • scipy
  • redsea

If redsea is missing, the recording pipeline may still work, but RDS station-name extraction and final file naming will fall back to UnknownStation. If scipy is missing, recording and demodulation are unavailable; --check and --scan-fm still work. The script first tries redsea from PATH, then falls back to the expected local path.

Quick Start

Run --check first:

python3 scripts/fm_iq_pipeline.py --check

--check returns JSON. If a tool reports available: false, inspect probeMessage first; it contains the first useful line from the probe stderr/stdout. probeReturnCode is also included for probe-based checks when available.

Scan FM broadcast band first:

python3 scripts/fm_iq_pipeline.py --scan-fm --gain 19.7 --out-dir ./session

Decode RDS for one selected station and cache the resulting station name for later recording. For station naming, the resolver only uses ps and partial_ps; pi is kept only as auxiliary/debug evidence, and other decoded RDS fields are intentionally ignored for naming:

python3 scripts/fm_iq_pipeline.py --decode-rds --freq 98.7812 --gain 19.7 --out-dir ./session

If --decode-rds returns UnknownStation, inspect rds-debug-<freq>.json, especially rtlFmStderrFirstLine, for diagnostics.

Record one station using the cached result from the earlier decode step. Use the same --out-dir value:

python3 scripts/fm_iq_pipeline.py --record --freq 98.7812 --gain 19.7 --out-dir ./session

For longer recordings, pass --duration 300 (5 minutes):

python3 scripts/fm_iq_pipeline.py --record --freq 98.7812 --gain 19.7 --duration 300 --out-dir ./session

By default, --record captures a short 10-second sample. Treat that as a station sample rather than a full-length recording unless you explicitly provide a longer --duration.

By default, output is written to ./output relative to the current working directory. For staged workflows, prefer passing an explicit shared --out-dir value such as ./session.

By default, successful recording keeps the MP3 and metadata JSON, but removes intermediate .bin and .wav files. Use --keep-intermediate when you need those artifacts for debugging or analysis.

Stdout Output

  • --check prints a JSON object keyed by tool name.
  • --scan-fm prints a JSON array sorted by signal strength (strongest first). Each element includes stationName, frequencyMHz, meanDb, and aboveNoise.
  • --decode-rds prints a JSON array with one element containing frequencyMHz and stationName.
  • --record prints the path to the produced MP3 file as plain text.
  • On Telegram, when returning a generated file to the user, send a separate media-only message containing just the MEDIA:... token so the platform treats it as an actual attachment.
  • If a single reply contains multiple MEDIA:... tokens, put each token on its own line.

Examples:

[{"stationName": "UnknownStation", "frequencyMHz": 98.7812, "meanDb": -28.5, "aboveNoise": 14.2}]
[{"frequencyMHz": 98.7812, "stationName": "TROJKA"}]
./session/TROJKA-98.7812-20260409-143022.mp3

Expected Runtime

  • --scan-fm takes about 30 seconds by default.
  • --decode-rds can take up to about 20 seconds, but may finish earlier when early-exit conditions are met.
  • --record takes roughly the requested --duration plus demodulation and MP3 encoding overhead.
  • Full broadcast-FM orchestration over many stations can take several minutes.

Example User Requests

These are examples of natural-language requests the assistant may receive. The assistant should interpret them as orchestration on top of this skill's atomic commands.

Full broadcast FM band pass

Example request:

Scan the entire broadcast FM band, go through all detected stations, extract the station name for each one, record audio, and send me all resulting MP3 files.

Expected orchestration:

  • run --check
  • run --scan-fm --gain <dB> --out-dir ./session
  • for each found station:

- run --decode-rds --freq <MHz> --gain <dB> --out-dir ./session - run --record --freq <MHz> --gain <dB> --out-dir ./session

  • return all produced audio files to the user

Top-N strongest broadcast FM stations

Example request:

Scan the broadcast FM band, take the 5 strongest stations, extract their station names, record audio for them, and send me the MP3 files.

Expected orchestration:

  • run --check
  • run --scan-fm --gain <dB> --out-dir ./session
  • select the strongest N stations from scan results
  • for each selected station:

- run --decode-rds --freq <MHz> --gain <dB> --out-dir ./session - run --record --freq <MHz> --gain <dB> --out-dir ./session

  • return the produced audio files to the user

Single-station flow

Example request:

Record 90.9688 MHz from the broadcast FM band and label the file with the station name.

Expected orchestration:

  • run --check
  • run --decode-rds --freq 90.9688 --gain <dB> --out-dir ./session
  • run --record --freq 90.9688 --gain <dB> --out-dir ./session
  • return the produced MP3 to the user

Output Expectations

The script should:

  • in --scan-fm mode, save scan results and return frequency candidates only
  • in --decode-rds --freq mode, try to extract the RDS station name and save it to a per-frequency cache file rds-<Frequency>.json plus a diagnostic file rds-debug-<Frequency>.json
  • in --record --freq mode, produce MP3 and metadata JSON (intermediate IQ and WAV are removed by default; pass --keep-intermediate to retain them)
  • --record --freq must use the cached result from the earlier decode step for station naming and must not run a second independent RDS naming pass
  • --decode-rds --freq and --record --freq must use the same --out-dir value when staged naming consistency matters
  • if no cache exists in that --out-dir, --record --freq falls back to UnknownStation
  • name the MP3 as:

- <StationName>-<Frequency>-<RecordingTimeStart>.mp3

When to Read References

Read references/pipeline-notes.md when:

  • the FM result sounds wrong or unstable
  • RDS naming fails or looks inconsistent between decode and record steps
  • redsea location or environment setup is in doubt
  • you need example commands or naming details
  • you need the rationale for staged scan → decode-rds → record usage

Resources

scripts/

  • scripts/fm_iq_pipeline.py — main working FM + RDS pipeline orchestration
  • scripts/fm_config.py — shared DSP, scan, timeout, and path constants
  • scripts/rds_observation.py — RDS evidence collection and station-name sanitizing helpers
  • scripts/station_identity.py — station identity resolver and candidate selection policy
  • scripts/station_identity_debug.py — debug/report generation for RDS identity decisions

references/

  • references/pipeline-notes.md — setup-specific notes, naming, caveats, and examples

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.77%
按下载量换算1,075

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills