{"id":30561028,"url":"https://github.com/0necontroller/stream-sndbox","last_synced_at":"2026-05-19T10:07:58.792Z","repository":{"id":297589044,"uuid":"997264558","full_name":"0necontroller/stream-sndbox","owner":"0necontroller","description":"Custom Video upload (s3), transcoding (ffmpeg) and streaming using HLS","archived":false,"fork":false,"pushed_at":"2025-06-06T12:40:18.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-19T14:05:30.900Z","etag":null,"topics":["docker","hls","minio","video"],"latest_commit_sha":null,"homepage":"","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/0necontroller.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}},"created_at":"2025-06-06T08:26:28.000Z","updated_at":"2025-07-27T09:18:07.000Z","dependencies_parsed_at":"2025-07-22T18:19:44.428Z","dependency_job_id":null,"html_url":"https://github.com/0necontroller/stream-sndbox","commit_stats":null,"previous_names":["codedwells/streamer-sndbox","0necontroller/streamer-sndbox","0necontroller/stream-sndbox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0necontroller/stream-sndbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0necontroller%2Fstream-sndbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0necontroller%2Fstream-sndbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0necontroller%2Fstream-sndbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0necontroller%2Fstream-sndbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0necontroller","download_url":"https://codeload.github.com/0necontroller/stream-sndbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0necontroller%2Fstream-sndbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272487821,"owners_count":24942744,"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","status":"online","status_checked_at":"2025-08-28T02:00:10.768Z","response_time":74,"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":["docker","hls","minio","video"],"created_at":"2025-08-28T11:11:31.457Z","updated_at":"2026-05-19T10:07:58.757Z","avatar_url":"https://github.com/0necontroller.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Streamer Sandbox\n\nStreamer Sandbox is a versatile project designed to handle video streaming and file uploads efficiently. It leverages modern technologies to provide a robust and scalable solution for managing video content.\n\n## Features\n\n- **Video Streaming**: Supports HLS (HTTP Live Streaming) for adaptive bitrate streaming.\n- **Multiple Packager Options**: Choose between FFmpeg or Google's Shaka Packager for HLS content.\n- **Adaptive Bitrate Streaming**: Provides multiple quality levels when using Shaka Packager.\n- **Quality Selection**: Interactive quality selector for videos transcoded with Shaka Packager.\n- **File Uploads**: Handles file uploads with ease, including large files.\n- **AWS S3 Integration**: Utilizes AWS S3 for secure and scalable storage.\n- **Dockerized Environment**: Simplifies development and deployment with Docker.\n- **TypeScript Support**: Ensures type safety and modern JavaScript features.\n\n## Project Structure\n\n```\n├── app.ts\n├── dev.sh\n├── docker-compose.override.yml\n├── docker-compose.yml\n├── Dockerfile\n├── Dockerfile.dev\n├── package.json\n├── pnpm-lock.yaml\n├── prod.sh\n├── README.md\n├── tsconfig.json\n├── controllers/\n│   └── upload.Controller.ts\n├── lib/\n│   ├── environments.ts\n│   └── s3client.ts\n├── public/\n│   └── index.html\n├── router/\n│   └── index.ts\n│\n└──\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js\n- Docker\n- AWS account (for S3 integration)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/your-repo/streamer-sandbox.git\n   ```\n\n2. Install dependencies:\n\n   ```bash\n   pnpm install\n   ```\n\n3. Set up environment variables:\n   - Create a `.env` file in the root directory.\n   - Add your AWS credentials and other necessary configurations.\n\n## Packager Options\n\n### FFmpeg (Default)\n\nFFmpeg is used by default to generate HLS content. It produces a basic HLS stream with segments.\n\n### Google Shaka Packager\n\nShaka Packager is an advanced media packaging tool that offers:\n\n- Multiple video qualities (low, medium, high)\n- Adaptive bitrate streaming\n- DASH and HLS support from the same source content\n- Interactive quality selection in the player\n- Better compatibility with various players and devices\n\nWhen using Shaka Packager, the system will:\n\n1. Create multiple quality renditions of your video\n2. Generate both DASH and HLS manifests\n3. Add quality selection controls to the player\n4. Store packaging metadata for better organization\n\n### Running the Project\n\n#### Development\n\nRun the development server:\n\n```bash\n./dev.sh\n```\n\n#### Production\n\nBuild and run the production server:\n\n```bash\n./prod.sh\n```\n\n#### Docker\n\nBuild and run the Docker container:\n\n```bash\ndocker-compose up\n```\n\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bug fix.\n3. Submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0necontroller%2Fstream-sndbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0necontroller%2Fstream-sndbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0necontroller%2Fstream-sndbox/lists"}