{"id":16953991,"url":"https://github.com/eliashaeussler/beatlux","last_synced_at":"2026-05-09T01:31:57.001Z","repository":{"id":104812914,"uuid":"74557664","full_name":"eliashaeussler/beatlux","owner":"eliashaeussler","description":"[MIRROR] See the beat. Enter the beat: A simple music visualizer, made with Unity","archived":false,"fork":false,"pushed_at":"2018-08-05T15:14:16.000Z","size":152373,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-21T11:51:04.574Z","etag":null,"topics":["music","music-visualizer","unity","unity3d","visualization"],"latest_commit_sha":null,"homepage":"https://beatlux.elias-haeussler.de","language":"C","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/eliashaeussler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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},"funding":{"github":["eliashaeussler"],"custom":["https://paypal.me/eliashaeussler"]}},"created_at":"2016-11-23T08:44:58.000Z","updated_at":"2025-02-04T12:16:00.000Z","dependencies_parsed_at":"2023-05-30T05:45:17.059Z","dependency_job_id":null,"html_url":"https://github.com/eliashaeussler/beatlux","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/eliashaeussler/beatlux","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliashaeussler%2Fbeatlux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliashaeussler%2Fbeatlux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliashaeussler%2Fbeatlux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliashaeussler%2Fbeatlux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eliashaeussler","download_url":"https://codeload.github.com/eliashaeussler/beatlux/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliashaeussler%2Fbeatlux/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32804088,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"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":["music","music-visualizer","unity","unity3d","visualization"],"created_at":"2024-10-13T22:08:29.774Z","updated_at":"2026-05-09T01:31:56.984Z","avatar_url":"https://github.com/eliashaeussler.png","language":"C","funding_links":["https://github.com/sponsors/eliashaeussler","https://paypal.me/eliashaeussler"],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/eliashaeussler/beatlux.svg?branch=master)](https://travis-ci.org/eliashaeussler/beatlux)\n![license](https://img.shields.io/github/license/eliashaeussler/beatlux.svg)\n[![release](https://img.shields.io/github/release/eliashaeussler/beatlux.svg)](https://github.com/eliashaeussler/beatlux/releases/)\n\n# beatlux\nBeatlux is a music visualisation software. It features a music player with all the standard functions, as well as some visualisations that react to the music that is playing. You are able to create playlists, customize the visualisations and move through the visualisations freely.\n\n## Code Example\n    void Start()\n    {\n        // Initializing the scene, creating a circle of cubes in the radius set above.\n        for (int i = 0; i \u003c numberOfObjects; i++)\n        {\n            float angle = i * Mathf.PI * 2 / numberOfObjects;\n            Vector3 pos = new Vector3 (Mathf.Cos (angle), 0, Mathf.Sin (angle)) * radius;\n            Instantiate (prefab, pos, Quaternion.identity, Settings.MenuManager.vizContents);\n        }\n        cubes = GameObject.FindGameObjectsWithTag (\"Cubes\");\n    }\n    void Update()\n    {\n        // Reading the spectrum from the song put into the AudioListener \n        float[] spectrum = Settings.MenuManager.audio.GetSpectrumData (1024, 0, FFTWindow.Hamming);\n    }\nNew visualisations can be added to the programm as a new scene in Unity. They also have to be added to the class \"Settings\".\n\n## Motivation\nThe creation of Beatlux was the result of a student project of the study course \"Media-Informatics\" at Harz University of Applied Science Wernigerode. The task was to visualize music in any form, so we decided to create a program that does just that.\n\n## Installation\nTo install the program, simply download the appropriate files for your operating system from our website (http://beatlux.hs-harz.de) and run it on your computer.\n\n## API Reference\nhttps://unity3d.com/de/get-unity/download\nhttps://docs.unity3d.com/ScriptReference/\n\n## Tests\nJust build the project in Unity for your operating system, run it and try it out.\n\n## Contributors\nAnyone who wants to participate in the development of Beatlux can simply fork the project and change anything, since it's open source.\n\n## Used packages and resources\n* mpg123.net (http://mpg123.net/)\n* SQLite (https://www.sqlite.org/)\n* TagLib# (https://github.com/mono/taglib-sharp)\n* HSV-Color-Picker-Unity (https://github.com/judah4/HSV-Color-Picker-Unity/tree/master/Assets/HSVPicker)\n* beatlux Font (created using IcoMoon: https://icomoon.io/)\n* Skybox Purple Nebula (https://www.assetstore.unity3d.com/en/#!/content/2967)\n* TextUnicode.cs (http://forum.unity3d.com/threads/image-fonts-fontawesome.281746/#post-1862245)\n* MainThreadDispatcher.cs (https://github.com/PimDeWitte/UnityMainThreadDispatcher)\n* Mutli-Lang Support (https://forum.unity3d.com/threads/add-multiple-language-support-to-your-unity-projects.206271/)\n\n## License\nThe MIT License (MIT)\nCopyright (c) 2016 Judah Perez\n \nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliashaeussler%2Fbeatlux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feliashaeussler%2Fbeatlux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliashaeussler%2Fbeatlux/lists"}