{"id":36789322,"url":"https://github.com/jo-hoe/mp3-joiner","last_synced_at":"2026-01-12T13:24:04.975Z","repository":{"id":65804515,"uuid":"594734996","full_name":"jo-hoe/mp3-joiner","owner":"jo-hoe","description":"Allow the merge of MP3 files while honoring chapter metadata.","archived":false,"fork":false,"pushed_at":"2025-12-15T21:30:03.000Z","size":13724,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-19T04:50:27.222Z","etag":null,"topics":["chapters","ffmpeg","golang","join","merge","mp3"],"latest_commit_sha":null,"homepage":"","language":"Go","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/jo-hoe.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-01-29T13:40:54.000Z","updated_at":"2025-12-15T21:22:03.000Z","dependencies_parsed_at":"2024-05-06T11:27:21.735Z","dependency_job_id":"4f1da2bb-3f55-4801-8bfd-8a6e5bb402ba","html_url":"https://github.com/jo-hoe/mp3-joiner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jo-hoe/mp3-joiner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo-hoe%2Fmp3-joiner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo-hoe%2Fmp3-joiner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo-hoe%2Fmp3-joiner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo-hoe%2Fmp3-joiner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jo-hoe","download_url":"https://codeload.github.com/jo-hoe/mp3-joiner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jo-hoe%2Fmp3-joiner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338996,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"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":["chapters","ffmpeg","golang","join","merge","mp3"],"created_at":"2026-01-12T13:24:04.198Z","updated_at":"2026-01-12T13:24:04.968Z","avatar_url":"https://github.com/jo-hoe.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MP3 Joiner\r\n\r\n[![GoDoc](https://godoc.org/github.com/jo-hoe/mp3-joiner?status.svg)](https://godoc.org/github.com/jo-hoe/mp3-joiner)\r\n[![Test Status](https://github.com/jo-hoe/mp3-joiner/workflows/test/badge.svg)](https://github.com/jo-hoe/mp3-joiner/actions?workflow=test)\r\n[![Coverage Status](https://coveralls.io/repos/github/jo-hoe/mp3-joiner/badge.svg?branch=main)](https://coveralls.io/github/jo-hoe/mp3-joiner?branch=main)\r\n[![Lint Status](https://github.com/jo-hoe/mp3-joiner/workflows/lint/badge.svg)](https://github.com/jo-hoe/mp3-joiner/actions?workflow=lint)\r\n[![Go Report Card](https://goreportcard.com/badge/github.com/jo-hoe/mp3-joiner)](https://goreportcard.com/report/github.com/jo-hoe/mp3-joiner)\r\n\r\nAllow the merge of MP3 files while honoring chapter metadata. This library requires FFmeg to be installed on the target system.\r\n\r\n## Requirements\r\n\r\n- [FFmeg](https://ffmpeg.org/download.html)\r\n\r\n## Example\r\n\r\n```go\r\npackage main\r\n\r\nimport (\r\n \"github.com/jo-hoe/mp3-joiner\"\r\n)\r\n\r\nfunc main() {\r\n builder := NewMP3Builder()\r\n builder.Append(\"/path/to/myAudioFile.mp3\", 0, 10)\r\n builder.Append(\"/path/to/myOtherAudioFile.mp3\", 0, -1)\r\n builder.Build(\"/path/to/mergedAudioFile.mp3\")\r\n}\r\n```\r\n\r\n## Development\r\n\r\n### Linting\r\n\r\nProject used `golangci-lint` for linting.\r\n\r\n#### Installation\r\n\r\n\u003chttps://golangci-lint.run/usage/install/\u003e\r\n\r\n#### Execution\r\n\r\nRun the linting locally by executing\r\n\r\n```cli\r\ngolangci-lint run ./...\r\n```\r\n\r\nin the working directory\r\n\r\n## Further Details\r\n\r\n- [How to apply chapters](https://dev.to/montekaka/add-chapter-markers-to-podcast-audio-using-ffmpeg-3c46)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjo-hoe%2Fmp3-joiner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjo-hoe%2Fmp3-joiner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjo-hoe%2Fmp3-joiner/lists"}