{"id":37021327,"url":"https://github.com/glaciall/acodec","last_synced_at":"2026-01-14T02:30:53.306Z","repository":{"id":57716077,"uuid":"231645721","full_name":"glaciall/acodec","owner":"glaciall","description":"A Java Audio Codec for G711A/G711U/ADPCM","archived":false,"fork":false,"pushed_at":"2023-12-07T01:37:12.000Z","size":12,"stargazers_count":15,"open_issues_count":1,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-03T18:07:28.073Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/glaciall.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":"2020-01-03T18:45:48.000Z","updated_at":"2025-06-13T10:33:12.000Z","dependencies_parsed_at":"2022-08-25T11:01:08.067Z","dependency_job_id":null,"html_url":"https://github.com/glaciall/acodec","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/glaciall/acodec","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glaciall%2Facodec","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glaciall%2Facodec/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glaciall%2Facodec/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glaciall%2Facodec/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glaciall","download_url":"https://codeload.github.com/glaciall/acodec/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glaciall%2Facodec/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"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":[],"created_at":"2026-01-14T02:30:52.721Z","updated_at":"2026-01-14T02:30:53.301Z","avatar_url":"https://github.com/glaciall.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## acodec\nA Java Audio Codec for G711A/G711U/ADPCM. Pure java implements, no any other 3rd-party library required.\n\n### Audio Codec\n\n|Codec|Support?|\n|---|---|\n|ADPCM|Y|\n|G711A (alaw)|Y|\n|G711U (ulaw)|Y|\n|G726|N|\n\n### Maven\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ecn.org.hentai\u003c/groupId\u003e\n  \u003cartifactId\u003eacodec\u003c/artifactId\u003e\n  \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Example\n\n```java\nclass Test\n{\n    public static void main(String[] args) throws Exception\n    {\n        // create AudioCodec instance by name\n        AudioCodec codec = CodecFactory.getCodec(\"adpcm\");\n        \n        // prepare some encodec adpcm data\n        byte[] rawADPCMData;\n        \n        // decode adpcm to pcm\n        byte[] pcmData = codec.toPCM(rawADPCMData);\n        \n        // encode pcm to adpcm\n        byte[] adpcmData = codec.fromPCM(pcmData);\n    }\n}\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglaciall%2Facodec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglaciall%2Facodec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglaciall%2Facodec/lists"}