https://github.com/futo-org/grayjay.desktop
Read-only mirror of Grayjay.Desktop repo for issue tracking
https://github.com/futo-org/grayjay.desktop
desktop futo grayjay
Last synced: 17 days ago
JSON representation
Read-only mirror of Grayjay.Desktop repo for issue tracking
- Host: GitHub
- URL: https://github.com/futo-org/grayjay.desktop
- Owner: futo-org
- License: other
- Created: 2024-12-19T19:42:13.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-03-21T01:19:34.000Z (about 1 month ago)
- Last Synced: 2025-04-01T11:01:54.621Z (24 days ago)
- Topics: desktop, futo, grayjay
- Language: C#
- Homepage: https://gitlab.futo.org/videostreaming/Grayjay.Desktop
- Size: 174 MB
- Stars: 425
- Watchers: 8
- Forks: 29
- Open Issues: 288
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Grayjay Desktop
Grayjay is a multi-platform media application that allows you to watch content from multiple platforms in a single application. Using an extendable plugin system developers can make new integrations with additional platforms. Plugins are cross-compatible between Android and Desktop.FUTO is an organization dedicated to developing, both through in-house engineering and investment, technologies that frustrate centralization and industry consolidation.
For more elaborate showcase of features and downloads, check out the website.
Website: https://grayjay.app/desktop/**NOTE for MacOS Users:** Our Apple signing/notarization is not entirely done yet, thus you have to run the following command once to run the application.
```
xattr -c ./Grayjay_osx-arm64.app```
or
```
xattr -c ./Grayjay_osx-x64.app
```### Home
Here you find the recommendations found on respective applications.
### Sources
Here you install new source plugins, change which sources are used, or configure your source behavior.
### Details
Here is an example of what the video player looks like, we support various views so that you can view the video how you like. By default we show a theater view that becomes smaller when reading comments, while not entirely hiding it.| | |
|--|--|
|  |  |### Downloads
Grayjay also supports downloads, allowing offline viewing of videos, as well as exporting them to files usable outside of Grayjay.
### Channel
### More..
Grayjay Desktop has way more features than this, but for that, check out the website or download it yourself!## NixOS config
Below a NixOS configuration in case you like to use Grayjay on NixOS.
```
(pkgs.buildFHSUserEnv {
name = "fhs";
targetPkgs = _: with pkgs; [
libz
icu
openssl # For updaterxorg.libX11
xorg.libXcomposite
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXrandr
xorg.libxcbgtk3
glib
nss
nspr
dbus
atk
cups
libdrm
expat
libxkbcommon
pango
cairo
udev
alsa-lib
mesa
libGL
libsecret
];
}).env
```