{"id":13396429,"url":"https://github.com/tyorikan/voice-recording-visualizer","last_synced_at":"2026-01-18T10:11:03.778Z","repository":{"id":33784585,"uuid":"37455705","full_name":"tyorikan/voice-recording-visualizer","owner":"tyorikan","description":"Simple Visualizer from mic input for Android.","archived":false,"fork":false,"pushed_at":"2015-06-22T12:37:05.000Z","size":298,"stargazers_count":545,"open_issues_count":4,"forks_count":93,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-07-31T18:17:27.710Z","etag":null,"topics":[],"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/tyorikan.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":"2015-06-15T09:25:29.000Z","updated_at":"2024-07-22T08:55:32.000Z","dependencies_parsed_at":"2022-09-08T18:01:24.789Z","dependency_job_id":null,"html_url":"https://github.com/tyorikan/voice-recording-visualizer","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/tyorikan%2Fvoice-recording-visualizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyorikan%2Fvoice-recording-visualizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyorikan%2Fvoice-recording-visualizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyorikan%2Fvoice-recording-visualizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tyorikan","download_url":"https://codeload.github.com/tyorikan/voice-recording-visualizer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221421540,"owners_count":16817825,"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":[],"created_at":"2024-07-30T18:00:51.157Z","updated_at":"2026-01-18T10:11:03.760Z","avatar_url":"https://github.com/tyorikan.png","language":"Java","funding_links":[],"categories":["Index `(light-weight pages)`","Index","Java","Libs"],"sub_categories":["\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"\n# Voice Recording Visualizer\n\n[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)\n[![Download](https://api.bintray.com/packages/tyorikan/maven/voice-recording-visualizer/images/download.svg)](https://bintray.com/tyorikan/maven/voice-recording-visualizer/_latestVersion)\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Voice%20Recording%20Visualizer-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/1984)\n\nSimple Visualizer from mic input for Android.\n\n## Usage\n```\n    @Override \n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        ...\n        VisualizerView visualizerView = (VisualizerView) findViewById(R.id.visualizer);\n\n        RecordingSampler recordingSampler = new RecordingSampler();\n        recordingSampler.setVolumeListener(this);  // for custom implements\n        recordingSampler.setSamplingInterval(100); // voice sampling interval\n        recordingSampler.link(visualizerView);     // link to visualizer\n\n        recordingSampler.startRecording();\n    }\n    \n    @Override\n    protected void onPause() {\n        mRecordingSampler.stopRecording();\n        super.onPause();\n    }\n    \n    @Override \n    protected void onDestroy() { \n        mRecordingSampler.release();\n        super.onDestroy(); \n    } \n```\n\n## VisualizerView\n```\n\u003ccom.tyorikan.voicerecordingvisualizer.VisualizerView\n                android:id=\"@+id/visualizer\"\n                android:layout_width=\"100dp\"\n                android:layout_height=\"100dp\"\n                android:background=\"@android:color/black\"\n                app:numColumns=\"4\"\n                app:renderColor=\"@color/renderColor\"\n                app:renderRange=\"top\" /\u003e\n```\n\n### VisualizerView attrs\n| Params        | format | value |\n|:--------------|:------------:|:------------:|\n| numColumns    | integer | num of visualizer column (ex. `5`, `20`, `100`) |\n| renderColor   | color |  visualizer color (ex. `#EFEFEF`, `@color/light_blue`) |\n| renderRange   | enum | render direction `top (default)`, `bottom`, `both` |\n| renderType    | flag | render type `bar (default)`, `pixel`, `fade` |\n\n## demo\n[![IMAGE demo](http://img.youtube.com/vi/fJTl1bgQ3j4/0.jpg)](http://www.youtube.com/watch?v=fJTl1bgQ3j4)\n\n## Samples\n\u003ca href=\"https://play.google.com/store/apps/details?id=com.tyorikan.voicerecordingvisualizer.sample\"\u003e\u003cimg src=\"http://www.android.com/images/brand/get_it_on_play_logo_large.png\"/\u003e\u003c/a\u003e\n\n## Gradle\n```groovy\nrepositories {\n    jcenter()\n}\n\ndependencies {\n    compile 'com.tyorikan:voice-recording-visualizer:1.0.3@aar'\n}\n```\n\n## License\n    Copyright 2015 tyorikan\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyorikan%2Fvoice-recording-visualizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyorikan%2Fvoice-recording-visualizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyorikan%2Fvoice-recording-visualizer/lists"}