{"id":37136637,"url":"https://github.com/jlondonobo/morse","last_synced_at":"2026-01-14T15:55:35.678Z","repository":{"id":323580093,"uuid":"1092060279","full_name":"jlondonobo/morse","owner":"jlondonobo","description":"A simple CLI tool for translating text to Morse code","archived":false,"fork":false,"pushed_at":"2025-11-18T02:17:08.000Z","size":2687,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-18T02:25:53.538Z","etag":null,"topics":["cli","golang","morsecode","sound","translation"],"latest_commit_sha":null,"homepage":"https://github.com/jlondonobo/morse","language":"Go","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/jlondonobo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-07T23:41:45.000Z","updated_at":"2025-11-18T02:17:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jlondonobo/morse","commit_stats":null,"previous_names":["jlondonobo/go-morse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jlondonobo/morse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlondonobo%2Fmorse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlondonobo%2Fmorse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlondonobo%2Fmorse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlondonobo%2Fmorse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jlondonobo","download_url":"https://codeload.github.com/jlondonobo/morse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlondonobo%2Fmorse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28425571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T15:24:48.085Z","status":"ssl_error","status_checked_at":"2026-01-14T15:23:41.940Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cli","golang","morsecode","sound","translation"],"created_at":"2026-01-14T15:55:35.071Z","updated_at":"2026-01-14T15:55:35.670Z","avatar_url":"https://github.com/jlondonobo.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg width=\"1628\" height=\"677\" alt=\"Untitled\" src=\"https://github.com/user-attachments/assets/ce58515f-e25e-4e50-aa08-1438f3676f7f\" /\u003e\n\u003c/p\u003e\n\n\n## Features\n\n- Output string representation to `stdout`.\n- Output sound representation to a `.wav` file via the `--output` flag.\n- Supports short flags like `-s` (sound) and `-o` (output).\n- Configure sound pitch, speed, and tone.\n\n## Installation\nInstalling `morse` requires that you have Go installed in your system. Then run:\n\n```bash\ngo install github.com/jlondonobo/morse@latest\n```\n\n\n## Quickstart\n\nTo translate text to Morse code, run:\n\n```bash\nmorse 'Vamos' -s\n```\n\nThis command will write the string representation to standard output and play it on your speakers.\n\nTo name the ouput file something different, use the `--file-name` (`-f`) flag. For example:\n\n```bash\nmorse 'Lets go, Carlos, lets go' -sf 'carlitos.wav'\n```\n\n\n## Configuration\n\nBy default, `morse` plays a 700Hz sine wave at 20 words per minute. But you can change its pitch, speed, and tone.\n\nMorse supports configuring the ouptut sound using the `--pitch`, `--speed`, and `--tone` flags.\n\n### Pitch\nYou can set the pitch anywhere from 300Hz to 1000Hz via the `--pitch` flag.\n\n```bash\nmorse 'Ace' -s --pitch 500\n```\n\n### Speed\nMorse code speed is measured in **words per minute** (wpm). Because characters might have different lengths, the convention is to meausre words per minute using the word \"PARIS \" with a space at the end.\n\n`morse` produces sound outputs at 20wpm, try adjusting it to anything between 5-40 wpm.\n\n```bash\nmorse 'What a magnificent shot' -s --speed 35\n```\n\n### Tone\nSet the output tone to one of `sine`, `triangle`, `sawtooth` and `square`. Via the `--tone` flag.\n\n```bash\nmorse 'And the champion of the 2025 Nitto ATP finals is Jannik Sinner' -s --tone triangle\n```\n- `sine`: The base, smooth. Makes up all other waves.\n- `square`: Richer and buzzier.\n- `triangle`: Between sine and square.\n- `sawtooth`: More friction and the buzziest of all.\n\n\n## Roadmap\n\n- [x] Enable saving sound to file\n- [x] Make functions run in parallel\n- [x] Set up short-version flags\n- [x] Extend punctuation\n- [x] Add a default file name for better ergonomics\n- [x] Enable editing sound qualities\n  - [x] Speed\n  - [x] Pitch\n  - [x] Tone\n\n- [ ] Improve efficiency of steream construction / duplication.\n- [ ] Improve error handling in goroutine\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlondonobo%2Fmorse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjlondonobo%2Fmorse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlondonobo%2Fmorse/lists"}