{"id":18348300,"url":"https://github.com/bullheadandplato/androidequalizer","last_synced_at":"2025-04-09T16:19:02.578Z","repository":{"id":45731933,"uuid":"128211808","full_name":"bullheadandplato/AndroidEqualizer","owner":"bullheadandplato","description":"Android Equalizer View that can also manage the audio track frequencies ","archived":false,"fork":false,"pushed_at":"2021-09-07T19:10:02.000Z","size":6480,"stargazers_count":242,"open_issues_count":10,"forks_count":72,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-09T16:18:54.404Z","etag":null,"topics":["android","android-equalizer","android-library","audio-track-frequencies","music"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bullheadandplato.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-04-05T13:41:12.000Z","updated_at":"2025-04-02T16:20:02.000Z","dependencies_parsed_at":"2022-09-13T01:22:51.082Z","dependency_job_id":null,"html_url":"https://github.com/bullheadandplato/AndroidEqualizer","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullheadandplato%2FAndroidEqualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullheadandplato%2FAndroidEqualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullheadandplato%2FAndroidEqualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullheadandplato%2FAndroidEqualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bullheadandplato","download_url":"https://codeload.github.com/bullheadandplato/AndroidEqualizer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248065282,"owners_count":21041872,"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":["android","android-equalizer","android-library","audio-track-frequencies","music"],"created_at":"2024-11-05T21:17:22.903Z","updated_at":"2025-04-09T16:19:02.562Z","avatar_url":"https://github.com/bullheadandplato.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AndroidEqualizer   [![](https://jitpack.io/v/mosamabinomar/AndroidEqualizer.svg)](https://jitpack.io/#mosamabinomar/AndroidEqualizer)\n\nAndroid Equalizer View that can also manage the audio track frequencies \n\nAdd Equalizer in your Android app\n\u003cdiv\u003e\n  \u003cimg src=\"https://github.com/bullheadandplato/AndroidEqualizer/blob/master/screenshots/Screenshot_1569785199.png\" width=\"300\" height=\"500\"/\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/mosamabinomar/AndroidEqualizer/master/screenshots/Screenshot_1522935541.png\" width=\"300\" height=\"500\"/\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/mosamabinomar/AndroidEqualizer/master/screenshots/Screenshot_1522962328.png\" width=\"300\" height=\"500\"/\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/mosamabinomar/AndroidEqualizer/master/screenshots/Screenshot_1522962331.png\" width=\"300\" height=\"500\"/\u003e\n\u003c/div\u003e\n\n## How To Use\n### STEP 1\nIn settings.gradle you can add the repositories you want to add to the project:\n```gradle\nrepositories {\n        google()\n        jcenter() // Warning: this repository is going to shut down soon\n        mavenCentral()\n        maven { url 'https://www.jitpack.io' } // this is the line to be added\n    }\n```\nand:\n```gradle\ndependencies {\n      implementation 'com.github.bullheadandplato:AndroidEqualizer:2.2'\n}\n```\n\nif not using **AndroidX**.\n***it will not have `DialogEqualizerFragment` or any other improvements***\n\n```gradle\ndependencies {\n     implementation 'com.github.bullheadandplato:AndroidEqualizer:1.0'\n}\n```\n\n### STEP 2\n#### For Equalizer in dialog\n```\n DialogEqualizerFragment fragment = DialogEqualizerFragment.newBuilder()\n                    .setAudioSessionId(sessionId)\n                    .themeColor(ContextCompat.getColor(this, R.color.primaryColor))\n                    .textColor(ContextCompat.getColor(this, R.color.textColor))\n                    .accentAlpha(ContextCompat.getColor(this, R.color.playingCardColor))\n                    .darkColor(ContextCompat.getColor(this, R.color.primaryDarkColor))\n                    .setAccentColor(ContextCompat.getColor(this, R.color.secondaryColor))\n                    .build();\n            fragment.show(getSupportFragmentManager(), \"eq\");\n```\n#### For Equalizer in your view\nCreate a frame in your layout file. \n```    \n\u003cFrameLayout\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        app:layout_constraintBottom_toBottomOf=\"parent\"\n        app:layout_constraintLeft_toLeftOf=\"parent\"\n        android:id=\"@+id/eqFrame\"\n        app:layout_constraintRight_toRightOf=\"parent\"\n        app:layout_constraintTop_toTopOf=\"parent\" /\u003e\n        \n```\nIn your Activity class\n```\n int sessionId = mediaPlayer.getAudioSessionId();\n        mediaPlayer.setLooping(true);\n        EqualizerFragment equalizerFragment = EqualizerFragment.newBuilder()\n                .setAccentColor(Color.parseColor(\"#4caf50\"))\n                .setAudioSessionId(sessionId)\n                .build();\n        getSupportFragmentManager().beginTransaction()\n                .replace(R.id.eqFrame, equalizerFragment)\n                .commit();\n```\n\n**This work is mostly borrowed from https://github.com/harjot-oberai/MusicDNA**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbullheadandplato%2Fandroidequalizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbullheadandplato%2Fandroidequalizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbullheadandplato%2Fandroidequalizer/lists"}