{"id":23803310,"url":"https://github.com/seelook/metronomek","last_synced_at":"2025-11-10T21:31:59.873Z","repository":{"id":137573932,"uuid":"254182603","full_name":"SeeLook/metronomek","owner":"SeeLook","description":"Simple, trivially looking metronome with natural sounds. Qt QML","archived":false,"fork":false,"pushed_at":"2024-02-14T21:19:52.000Z","size":5221,"stargazers_count":2,"open_issues_count":3,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-01T22:32:19.286Z","etag":null,"topics":["metronome","qml","qt5","sounds"],"latest_commit_sha":null,"homepage":"https://metronomek.sourceforge.io","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SeeLook.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2020-04-08T19:34:22.000Z","updated_at":"2024-09-16T02:14:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"485818ad-8871-4560-b792-9cc3adeae5e1","html_url":"https://github.com/SeeLook/metronomek","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/SeeLook%2Fmetronomek","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeeLook%2Fmetronomek/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeeLook%2Fmetronomek/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeeLook%2Fmetronomek/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeeLook","download_url":"https://codeload.github.com/SeeLook/metronomek/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240054100,"owners_count":19740766,"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":["metronome","qml","qt5","sounds"],"created_at":"2025-01-01T22:30:14.125Z","updated_at":"2025-11-10T21:31:59.866Z","avatar_url":"https://github.com/SeeLook.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MetronomeK\n\n\u003cimg src=\"resources/metronomek.png\" width=\"20%\" height=\"20%\" /\u003e\n\nMetronome that works and sounds similar to mechanical devices\nbut with all goods of computer program.\n\n--------------------------\n\n## Features:\n  - natural (real audio) sounds\n  - selectable beat and ring sounds (i.e.: real metronome, clapping, snapping, etc.)\n  - programmable tempo changes (aka accelerando and rallentando)\n  - possibility to change meter\n  - counting out loud in different languages\n  - option to record own counting or download some already prepared\n  - determining tempo BPM by tapping\n  - cross-platform: Android, Linux, Mac, Windows\n  - ... see [TODO](TODO.md) for more planed features\n\n--------------------------\n\n## Download and installation\n**Binary packages**  (Linux AppImage, Mac Os dmg, Windows installer and Android apk)  \nand **sources** are hosted  \n [at SourceForge](https://sourceforge.net/projects/metronomek/files/)\n [\u003cimg src=\"https://a.fsdn.com/con/app/sf-download-button\" alt=\"SF\" width=\"17%\"\u003e](https://sourceforge.net/projects/metronomek/files/)\n\n**Metronomek is also available at:**\n\n  - [Google Play Store](https://play.google.com/store/apps/details?id=net.sf.metronomek)\n    [\u003cimg src=\"https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png\"\n    alt=\"Get it on Google Play\"\n    width=\"15%\"\u003e](https://play.google.com/store/apps/details?id=net.sf.metronomek)\n\n  - [Arch Linux (AUR)](https://aur.archlinux.org/packages/metronomek/)\n    [\u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Archlinux-icon-crystal-64.svg\" alt=\"AUR\" width=\"5%\"\u003e](https://aur.archlinux.org/packages/metronomek/)  \n    ```\n    yay -S metronomek\n    ```\n\n  - [Flatpak](https://flathub.org/apps/details/net.sf.metronomek)\n    [\u003cimg src=\"https://flathub.org/assets/themes/flathub/flathub-logo-toolbar.svg\"\n    alt=\"Metronomek FlatPak\"\n    width=\"100\"\u003e](https://flathub.org/apps/details/net.sf.metronomek)  \n    ```\n    flatpak install flathub net.sf.metronomek\n    ```\n\n--------------------------\n## Building from sources\n\n**MetronomeK** can be compiled with Qt framework [https://www.qt.io/](https://www.qt.io/).\n\nUnder Linux, dev packages (with headers) of ALSA and/or PulseAudio are also required.\n\nTo build the application perform (inside sources directory):\n\n```\n$cmake .\n$make -jX # where X is number of CPU cores\nor\n$ninja\n```\nTo install it, invoke:\n\n```\n$make install\nor\n$ninja install\n```\n\nor, just to simply launch it where it was compiled without installation:\n\n - invoke once:\n\n    ```\n    $make runinplace\n    or\n    $ninja runinplace\n    ```\n\n - and launch the app this way:\n\n    ```\n    $./src/metronomek\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseelook%2Fmetronomek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseelook%2Fmetronomek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseelook%2Fmetronomek/lists"}