{"id":18545327,"url":"https://github.com/xeinebiu/android_audioeffects","last_synced_at":"2025-10-16T05:18:28.048Z","repository":{"id":113102549,"uuid":"258768574","full_name":"xeinebiu/android_audioeffects","owner":"xeinebiu","description":"Add Audio Effects Feature on your Music App very easy and quick.","archived":false,"fork":false,"pushed_at":"2023-04-13T22:17:07.000Z","size":6343,"stargazers_count":15,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-03T15:07:53.895Z","etag":null,"topics":["android","audio","bass","effect","effects","equalizer","free","library","opensource"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xeinebiu.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}},"created_at":"2020-04-25T12:20:09.000Z","updated_at":"2025-05-20T18:45:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"f55341a2-1d30-414a-9886-19695967e0d1","html_url":"https://github.com/xeinebiu/android_audioeffects","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/xeinebiu/android_audioeffects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeinebiu%2Fandroid_audioeffects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeinebiu%2Fandroid_audioeffects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeinebiu%2Fandroid_audioeffects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeinebiu%2Fandroid_audioeffects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xeinebiu","download_url":"https://codeload.github.com/xeinebiu/android_audioeffects/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xeinebiu%2Fandroid_audioeffects/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279159003,"owners_count":26116371,"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","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["android","audio","bass","effect","effects","equalizer","free","library","opensource"],"created_at":"2024-11-06T20:19:45.471Z","updated_at":"2025-10-16T05:18:28.029Z","avatar_url":"https://github.com/xeinebiu.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Audio Effect Manager\n----\nAdd Audio Effects Feature on your Music App very easy and quick.\n\n### Preview\n![](docs/demo.gif)\n\n----\n### Installation\nAdd it in your root build.gradle at the end of repositories:\n````groovy\nallprojects {\n\trepositories {\n\t\tmaven { url 'https://jitpack.io' }\n\t}\n}\n````\nAdd the dependency\n````groovy\ndependencies {\n   implementation 'com.github.xeinebiu:android_audioeffects:1.4.2'\n}\n````\n\n### Change Logs\n    1.4.1 .. 1.4.2\n        - Fix material dependency version\n    1.4.0\n        - Update dependencies\n    1.3.0\n        - Add Listeners when AudioEffectManager is Released\n    1.2.0\n        - Implement custom Listeners\n    1.1.2\n        - Fix wrong pointing listeners\n    1.1.1\n        - Clear all listeners when Release\n    1.1.0\n        - Add listeners for Equalizer \u0026 Bass Boost\n    1.0.1\n        - Improve: AudioEffectManager - Initial flag property \n        - Fix: Equalizer - Remember Current Preset\n        - Fix: EqualizerView - Bands level shown incorrectly\n        - Fix: BassView - Remember state\n    1.0.0\n        - Initial Releaes\n\n----\n### Audio Session Id\nYou can read the Session Id of your Audio from the MediaPlayer\n````kotlin\nval audioSessionId = this.mediaPlayer.audioSessionId\n````\n\n----\n### AudioEffectManager\nAfter we have the ``audioSessionId``, we create `AudioEffectManager`\nHere you will find `equalizer` and `bass boost`.\n````kotlin\nval audioEffectManager = AudioEffectManager(audioSessionId)\n````\n\n----\n### Views\nTo help you more, on this library, we have created simple UI to work with the `AudioEffectManager`\n#### Equalizer View\nA view to work only with the Equalizer\n````kotlin\nval view = EqualizerView(requireContext(), parent, audioEffectManager).createView()\nparent.addView(view)\n````\n![](docs/view_equalizer.jpg) \n\n#### Bass View\nA view to work only with Bass Boost\n````kotlin\nval view = BassView(requireContext(), parent, audioEffectManager).createView()\nparent.addView(view)\n````\n![](docs/view_bass.jpg) \n\n### AudioEffectViewHelper\nA helper to create views for us as Dialog, Bottom Sheet or Child View.\nIt creates a Tabbed Layout with the `equalizer` and `bass` view's.\n````kotlin\nval audioEffectViewHelper = AudioEffectViewHelper(\n    this,\n    supportFragmentManager,\n    audioEffectManager\n)\n// show the tabbed layout as dialog\naudioEffectViewHelper.showAsDialog()\naudioEffectViewHelper.showAsBottomSheet()\n\n// add the tabbed layout on specific container\nval audioEffectView = audioEffectViewHelper.asView(container)\ncontainer.addView(audioEffectView)\n````\n\n### Release\nReleasing the AudioEffectManager must be done when not needed.\n````kotlin\noverride fun onDestroy() {\n    super.onDestroy()\n    mediaPlayer.stop()\n    mediaPlayer.release()\n    audioEffectManager.release()\n}\n````\n\n----\n##### Follow the demo application for more Usage Examples\n\n#### Author\n\u003e xeinebiu\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxeinebiu%2Fandroid_audioeffects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxeinebiu%2Fandroid_audioeffects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxeinebiu%2Fandroid_audioeffects/lists"}