{"id":13758328,"url":"https://github.com/alamminsalo/orion","last_synced_at":"2025-05-10T07:30:50.082Z","repository":{"id":73902610,"uuid":"30507772","full_name":"alamminsalo/orion","owner":"alamminsalo","description":"Cross platform Twitch.tv client","archived":true,"fork":false,"pushed_at":"2020-04-20T12:30:20.000Z","size":26851,"stargazers_count":315,"open_issues_count":80,"forks_count":60,"subscribers_count":25,"default_branch":"master","last_synced_at":"2025-05-01T10:02:17.554Z","etag":null,"topics":["client","cross-platform","desktop","linux","mpv","orion","osx","stream","twitch","windows"],"latest_commit_sha":null,"homepage":"","language":"C++","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/alamminsalo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2015-02-08T22:09:18.000Z","updated_at":"2025-04-27T01:20:11.000Z","dependencies_parsed_at":"2023-02-25T14:30:29.330Z","dependency_job_id":null,"html_url":"https://github.com/alamminsalo/orion","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alamminsalo%2Forion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alamminsalo%2Forion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alamminsalo%2Forion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alamminsalo%2Forion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alamminsalo","download_url":"https://codeload.github.com/alamminsalo/orion/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252931535,"owners_count":21827111,"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","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":["client","cross-platform","desktop","linux","mpv","orion","osx","stream","twitch","windows"],"created_at":"2024-08-03T13:00:27.539Z","updated_at":"2025-05-10T07:30:49.686Z","avatar_url":"https://github.com/alamminsalo.png","language":"C++","funding_links":[],"categories":["Libraries","Other"],"sub_categories":["C++"],"readme":"\n# Orion\n\n[![Build status](https://ci.appveyor.com/api/projects/status/u8vstv96djis8twq/branch/master?svg=true)](https://ci.appveyor.com/project/alamminsalo/orion/branch/master)\n[![Build Status](https://travis-ci.org/alamminsalo/orion.svg?branch=master)](https://travis-ci.org/alamminsalo/orion)\n\n[Webpage](https://alamminsalo.github.io/orion)\n\nQML/C++-written desktop client for Twitch.tv\n\n## Features: \n\n* Login by twitch credentials\n* Desktop notifications\n* Integrated player\n* Chat support\n* Support for live streams and vods\n\nAvailable on [Play Store](https://play.google.com/store/apps/details?id=app.orion.android)\n\n## Screencaptures\n\n\u003cimg src=\"https://user-images.githubusercontent.com/5585454/27839943-cc1834ae-60fd-11e7-9b87-d3aaf5f7483c.png\" width=\"128\"\u003e\t\u003cimg src=\"https://user-images.githubusercontent.com/5585454/27839974-fb7a6d3e-60fd-11e7-8638-9214fe5a1355.png\" width=\"128\"\u003e\t\u003cimg src=\"https://user-images.githubusercontent.com/5585454/27840060-adef907a-60fe-11e7-88c5-72c83ec60d1d.png\" width=\"128\"\u003e\t\u003cimg src=\"https://user-images.githubusercontent.com/5585454/27840062-b2f14eba-60fe-11e7-9e04-7d12477519d7.png\" width=\"128\"\u003e\t\u003cimg src=\"https://user-images.githubusercontent.com/5585454/27840063-b6429fce-60fe-11e7-9e96-54d6d0657953.png\" width=\"128\"\u003e\n\n## Dependencies\n\n* `mpv` (default), `qtav` or `qt5-multimedia`\n\n## Building on linux\n\n(Using arch linux examples, but can be applied to other distros as well)\n\n#### Install needed libraries and software\n\n```\nsudo pacman -S git gcc qt5-base qt5-quickcontrols qt5-svg qt5-quickcontrols2 qt5-graphicaleffects mpv\n```\n\nIf using backend other than mpv, install those packages instead.\n\n#### Choosing player backend (optional)\nTo select a backend used, pass CONFIG-variable a suitable backend for qmake (alternatively edit straight to .pro file):\n\n* MPV: `CONFIG+=mpv`\n* QtAV: `CONFIG+=qtav`\n* Qt5 Multimedia: `CONFIG+=multimedia`\n\nAs default, mpv is used (if nothing is passed)\n\n#### Get orion from github and install\n\n```\ngit clone https://github.com/alamminsalo/orion\ncd orion\nmkdir build \u0026\u0026 cd build\nqmake ../\nmake \u0026\u0026 sudo make install\n```\n\n## Building on MacOS\n\n#### Install needed libraries and software\n\n```\nbrew install qt mpv\nbrew link --force qt\n```\nYou need to force link qt to get qmake. Note that this can cause problems with other make tools. For more information see `brew info qt`.\n\n#### Get orion from github and install\n\n```\ngit clone https://github.com/alamminsalo/orion\ncd orion\nmkdir build \u0026\u0026 cd build\nqmake ../\nmake\n```\n\nThere will now be an orion.app application in the build directory.\n\n## Qt version\n\nMinimum supported Qt version is currently 5.8\n\n\n## Misc\n\nSupports environment variables such as `QT_QUICK_CONTROLS_MATERIAL_ACCENT`, to customize UI colors. \n\n### Example\n\n```\n# linux example, but similar in other OSes\nQT_QUICK_CONTROLS_MATERIAL_BACKGROUND=\"#00101f\" QT_QUICK_CONTROLS_MATERIAL_ACCENT=\"#FF5722\" orion\n```\n\nAnd this looks like:\n\n\u003cimg src=\"https://user-images.githubusercontent.com/5585454/42691905-8438a3fe-86b2-11e8-821e-c4a6bbb8ff08.png\" width=\"256\"\u003e\n\nSee more on [qt material docs](https://doc.qt.io/qt-5/qtquickcontrols2-material.html).\n\n\n## Windows troubleshooting\n\nYou need Visual C++ 2015-runtime installed. \n\nInstaller can be found in the application's install directory (I'll make it install automatically in the next version)\n\n## Known issues\n\n* If network goes down while Orion is running, the images stop loading until application restart. Otherwise the application should work fine after network is back up\n* Sometimes the stream hangs and doesn't load on start. Restarting the stream should work\n* Vods are sometimes having issues, skipping some parts of the video. Needs further investigating\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falamminsalo%2Forion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falamminsalo%2Forion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falamminsalo%2Forion/lists"}