{"id":31554651,"url":"https://github.com/wiedymi/mediafox","last_synced_at":"2026-05-05T14:03:41.592Z","repository":{"id":315912045,"uuid":"1060611803","full_name":"wiedymi/mediafox","owner":"wiedymi","description":"Framework-agnostic, TypeScript-first media player powered by MediaBunny. Full control over rendering and UI.","archived":false,"fork":false,"pushed_at":"2026-02-02T16:49:27.000Z","size":1553,"stargazers_count":51,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-02T21:14:44.150Z","etag":null,"topics":["audio","bun","mediabunny","npm","playback","player","react","typescript","video","webcodecs"],"latest_commit_sha":null,"homepage":"https://mediafox.pages.dev","language":"TypeScript","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/wiedymi.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-20T08:31:51.000Z","updated_at":"2026-02-02T16:49:46.000Z","dependencies_parsed_at":"2025-12-16T10:01:05.377Z","dependency_job_id":null,"html_url":"https://github.com/wiedymi/mediafox","commit_stats":null,"previous_names":["wiedymi/xiaomei","wiedymi/mediafox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wiedymi/mediafox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiedymi%2Fmediafox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiedymi%2Fmediafox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiedymi%2Fmediafox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiedymi%2Fmediafox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiedymi","download_url":"https://codeload.github.com/wiedymi/mediafox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiedymi%2Fmediafox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32652489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["audio","bun","mediabunny","npm","playback","player","react","typescript","video","webcodecs"],"created_at":"2025-10-04T21:11:57.825Z","updated_at":"2026-05-05T14:03:41.585Z","avatar_url":"https://github.com/wiedymi.png","language":"TypeScript","funding_links":["https://github.com/sponsors/vivy-company"],"categories":[],"sub_categories":[],"readme":"# MediaFox - Monorepo\n\n[![GitHub](https://img.shields.io/badge/-GitHub-181717?style=flat-square\u0026logo=github\u0026logoColor=white)](https://github.com/wiedymi)\n[![Twitter](https://img.shields.io/badge/-Twitter-1DA1F2?style=flat-square\u0026logo=twitter\u0026logoColor=white)](https://x.com/wiedymi)\n[![Email](https://img.shields.io/badge/-Email-EA4335?style=flat-square\u0026logo=gmail\u0026logoColor=white)](mailto:contact@wiedymi.com)\n[![Discord](https://img.shields.io/badge/-Discord-5865F2?style=flat-square\u0026logo=discord\u0026logoColor=white)](https://discord.gg/zemMZtrkSb)\n[![Support me](https://img.shields.io/badge/-Support%20me-ff69b4?style=flat-square\u0026logo=githubsponsors\u0026logoColor=white)](https://github.com/sponsors/vivy-company)\n\nA monorepo for MediaFox, a framework-agnostic, TypeScript-first Media Player library powered by [Mediabunny](https://github.com/Vanilagy/mediabunny).\n\n```bash\nbun add @mediafox/core mediabunny\n```\n\n## Packages\n\n- **[@mediafox/core](./packages/mediafox)** - Core Media Player library\n- **[@mediafox/react](./packages/react)** - React hooks for MediaFox\n\n## Getting Started\n\nThis is a Bun workspace monorepo. To get started:\n\n```bash\n# Install dependencies\nbun install\n\n# Build all packages\nbun run build\n\n# Run development\nbun run dev\n\n# Run type checking\nbun run typecheck\n\n# Build documentation\nbun run docs:build\n```\n\n## Workspace Structure\n\n```\nmediafox/\n├── packages/\n│   ├── mediafox/         # Core player library (@mediafox/core)\n│   └── react/          # React hooks (@mediafox/react)\n├── docs/               # Documentation site\n├── scripts/            # Build and utility scripts\n└── package.json        # Workspace configuration\n```\n\n## Development\n\n### Adding a New Package\n\n1. Create a new directory under `packages/`\n2. Add a `package.json` with the package configuration\n3. Run `bun install` from the root to link the package\n\n### Running Commands\n\nYou can run commands for specific packages using filters:\n\n```bash\n# Run build for @mediafox/core package only\nbun run --filter @mediafox/core build\n\n# Run tests for all packages\nbun run test\n```\n\n## Documentation\n\nVisit the documentation site for detailed guides and API references.\n\nTo run the documentation locally:\n\n```bash\nbun run docs:dev\n```\n\n## License\n\nMIT\n\n## Credits\n\nPowered by [Mediabunny](https://github.com/Vanilagy/mediabunny) - the powerful media processing library for the web.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiedymi%2Fmediafox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiedymi%2Fmediafox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiedymi%2Fmediafox/lists"}