{"id":44914935,"url":"https://github.com/truelockmc/streambert","last_synced_at":"2026-02-20T12:02:01.989Z","repository":{"id":339063931,"uuid":"1160232942","full_name":"truelockmc/streambert","owner":"truelockmc","description":"In Beta","archived":false,"fork":false,"pushed_at":"2026-02-17T23:56:14.000Z","size":1496,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-18T01:25:43.062Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/truelockmc.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":"2026-02-17T17:40:47.000Z","updated_at":"2026-02-17T23:56:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/truelockmc/streambert","commit_stats":null,"previous_names":["truelockmc/streambert"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/truelockmc/streambert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truelockmc%2Fstreambert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truelockmc%2Fstreambert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truelockmc%2Fstreambert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truelockmc%2Fstreambert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/truelockmc","download_url":"https://codeload.github.com/truelockmc/streambert/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/truelockmc%2Fstreambert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29650504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T09:27:29.698Z","status":"ssl_error","status_checked_at":"2026-02-20T09:26:12.373Z","response_time":59,"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":[],"created_at":"2026-02-18T01:19:23.947Z","updated_at":"2026-02-20T12:02:01.984Z","avatar_url":"https://github.com/truelockmc.png","language":"JavaScript","funding_links":[],"categories":["⚙️ Backend \u0026 APIs"],"sub_categories":[],"readme":"# Streambert\nA cross-platform Electron Desktop App to stream and download any Movie or TV Series in the World. \u003cbr\u003e\u003c/br\u003e\n![Logo](public/logo.svg)\n\n![Watch TV Series](screenshots/series.png)\n![Download Everything](screenshots/download.png)\n---\n---\n## Streaming\nThe Application gets Video Streams from videasy.net (more Providers will follow). \u003cbr\u003e\u003c/br\u003e\nIt fetches Information for Images, Info Texts, Search and Homepage from [tmdb](https://www.themoviedb.org/).\n\n---\n\n## Downloading\nYou can download those Video Streams because the Program sources Links to their .m3u8 Playlist Files ([similar to this Browser Extension](https://addons.mozilla.org/en-US/firefox/addon/m3u8-link-finder/)). \u003cbr\u003e\u003c/br\u003e\nOnce you click 'Download' these Links are used to download the Full Movie/TV Episode using [this Program](https://github.com/truelockmc/video-downloader). You can then watch them In-App or take the Files on any Storage Medium you want.\n\n---\n\n## Requirements\n\n- [Node.js](https://nodejs.org/) (\u003e=22.12.0) installed (only if you aren't using [prebuilt Binaries](https://github.com/truelockmc/streambert/releases/latest))\n- A free [TMDB API key](https://www.themoviedb.org/settings/api)\n- For downloading, [this Program](https://github.com/truelockmc/video-downloader/releases/latest) somewhere on your PC and [ffmpeg](https://ffmpeg.org/download.html) installed\n\n---\n\n## Setup \u0026 Run\nOption 1: \nUse a prebuilt Binary from [Releases](https://github.com/truelockmc/streambert/releases/latest)\n\nOption 2:\nUse the Source Code\n```bash\n# 1. Open a terminal in the Code Folder, then install dependencies:\nnpm install\n\n# 2. Start the dev server:\nnpm start\n\n```\n\nOn first launch you'll be prompted to enter your TMDB API key. It's saved locally, you only need to do this once.\n\n---\n\n\n## Build from Source\n\n```bash\nnpm run dist:win\n```\nor\n```bash\nnpm run dist:linux\n```\n\n---\n\n## Project Structure\n```\nProject Root\n├── index.html\n├── main.js\n├── package.json\n├── package-lock.json\n├── preload.js\n├── public\n│   └── logo.svg\n├── README.md\n├── screenshots\n│   ├── download.png\n│   └── series.png\n├── src\n│   ├── App.jsx\n│   ├── components\n│   │   ├── DownloadModal.jsx\n│   │   ├── Icons.jsx\n│   │   ├── MediaCard.jsx\n│   │   ├── SearchModal.jsx\n│   │   ├── SetupScreen.jsx\n│   │   └── Sidebar.jsx\n│   ├── main.jsx\n│   ├── pages\n│   │   ├── DownloadsPage.jsx\n│   │   ├── HomePage.jsx\n│   │   ├── LibraryPage.jsx\n│   │   ├── MoviePage.jsx\n│   │   ├── SettingsPage.jsx\n│   │   └── TVPage.jsx\n│   ├── styles\n│   │   └── global.css\n│   └── utils\n│       ├── api.js\n│       └── storage.js\n└── vite.config.js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruelockmc%2Fstreambert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftruelockmc%2Fstreambert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftruelockmc%2Fstreambert/lists"}