{"id":23919478,"url":"https://github.com/deemkeen/termostream","last_synced_at":"2026-02-08T11:30:48.735Z","repository":{"id":265560699,"uuid":"896261139","full_name":"deemkeen/termostream","owner":"deemkeen","description":"cli for mediastream playback in terminal","archived":false,"fork":false,"pushed_at":"2024-12-05T15:31:22.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-28T12:36:06.945Z","etag":null,"topics":["chafa","cli","mediastream","qrcode","tui"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/deemkeen.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":"2024-11-29T22:45:27.000Z","updated_at":"2024-12-05T15:24:11.000Z","dependencies_parsed_at":"2025-07-28T12:20:26.911Z","dependency_job_id":"ec725b18-0b80-4a88-b594-3a7a49418e63","html_url":"https://github.com/deemkeen/termostream","commit_stats":null,"previous_names":["deemkeen/termostream"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/deemkeen/termostream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deemkeen%2Ftermostream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deemkeen%2Ftermostream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deemkeen%2Ftermostream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deemkeen%2Ftermostream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deemkeen","download_url":"https://codeload.github.com/deemkeen/termostream/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deemkeen%2Ftermostream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29229290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T09:43:19.170Z","status":"ssl_error","status_checked_at":"2026-02-08T09:42:55.556Z","response_time":57,"last_error":"SSL_read: 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":["chafa","cli","mediastream","qrcode","tui"],"created_at":"2025-01-05T14:52:35.175Z","updated_at":"2026-02-08T11:30:48.720Z","avatar_url":"https://github.com/deemkeen.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# termoStream\n\ntermoStream is a command-line tool that allows you to stream your mobile device's camera to your terminal using QR codes, creating a unique ASCII art video stream.\nIt can also display the stream in a web browser with the -web flag.\n\n## Features\n\n- Live camera streaming to terminal\n- Optional web browser viewing with -web flag\n- ASCII art conversion in real-time\n- Switch between front and back cameras\n- Clean and responsive web interface\n- Secure HTTPS connection\n- Cross-platform (Windows, macOS, Linux)\n\n## Requirements\n\n- Go 1.23 or higher\n- `chafa` command-line tool for ASCII art conversion\n- Modern web browser with camera access\n\n## Installation\n\n```bash\n# Clone the repository\ngit clone \u003cthis repo\u003e\n\ncd termostream\n\n# Build the binary and generate SSL certificates\n./build.sh\n\n# Optional: Copy binary to your PATH to run from anywhere\nsudo cp termostream /usr/local/bin/\n```\n\n## Usage\n\n1. Run the `termostream` binary in your terminal:\n```bash\n./termostream        # For terminal output\n./termostream -web   # For web browser output\n```\n\n2. A QR code will appear in your terminal\n\n3. Scan the QR code with your mobile device's camera\n\n4. Your browser will open with camera controls:\n   - Click \"Start Video Stream\" to begin streaming\n   - Use \"Switch Camera\" to toggle between front/back cameras\n   - Click \"Stop Video Stream\" to end the stream\n\n5. When using -web flag, open the provided view URL in your browser to watch the stream\n\n## Environment Variables\n\n- `HOST_ADDR`: Set a specific IP address or hostname (default: auto-detect)\n- `HOST_PORT`: Set a specific port (default: 8443)\n\nExample:\n```bash\nHOST_ADDR=192.168.1.100 HOST_PORT=3000 ./termostream\n```\n\n## Notes\n\n- HTTPS is required for camera access in modern browsers\n- The stream URL contains a random suffix for basic security\n- Works on any device with a modern browser and camera\n- No need to be on the same Wi-Fi network as long as the device can reach the host IP\n- Video stream is converted to ASCII art using the `chafa` utility when viewing in terminal\n- Web view shows the original video stream without ASCII conversion\n\n## Technical Details\n\n- Uses WebSocket for real-time video streaming\n- Converts frames to JPEG before transmission\n- Optimized for terminal display using `chafa`\n- Responsive web interface with mobile-first design\n\n## Credits\n\n- ASCII art conversion powered by [Chafa](https://hpjansson.org/chafa/)\n- QR code generation using [github.com/skip2/go-qrcode](https://github.com/skip2/go-qrcode)\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeemkeen%2Ftermostream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeemkeen%2Ftermostream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeemkeen%2Ftermostream/lists"}