{"id":13549854,"url":"https://github.com/jellyfin/jellyfin-tizen","last_synced_at":"2025-05-14T07:10:38.781Z","repository":{"id":37074189,"uuid":"214660352","full_name":"jellyfin/jellyfin-tizen","owner":"jellyfin","description":"Jellyfin Samsung TV Client","archived":false,"fork":false,"pushed_at":"2025-05-13T18:52:00.000Z","size":292,"stargazers_count":1188,"open_issues_count":144,"forks_count":86,"subscribers_count":36,"default_branch":"master","last_synced_at":"2025-05-13T19:54:17.035Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jellyfin.org","language":"JavaScript","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/jellyfin.png","metadata":{"funding":{"open_collective":"jellyfin"},"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":"2019-10-12T14:24:00.000Z","updated_at":"2025-05-12T19:00:08.000Z","dependencies_parsed_at":"2024-11-09T17:28:13.525Z","dependency_job_id":"8bb84e5d-a530-440a-88bc-9cf2bac80c4d","html_url":"https://github.com/jellyfin/jellyfin-tizen","commit_stats":{"total_commits":71,"total_committers":8,"mean_commits":8.875,"dds":0.2816901408450704,"last_synced_commit":"fe6ebbd3821965be6d0e4a16ad22bf0c50cbce0f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyfin%2Fjellyfin-tizen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyfin%2Fjellyfin-tizen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyfin%2Fjellyfin-tizen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellyfin%2Fjellyfin-tizen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jellyfin","download_url":"https://codeload.github.com/jellyfin/jellyfin-tizen/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254026949,"owners_count":22001958,"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":[],"created_at":"2024-08-01T12:01:26.325Z","updated_at":"2025-05-14T07:10:38.715Z","avatar_url":"https://github.com/jellyfin.png","language":"JavaScript","funding_links":["https://opencollective.com/jellyfin"],"categories":["JavaScript"],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eJellyfin for Tizen\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003ePart of the \u003ca href=\"https://jellyfin.org\"\u003eJellyfin Project\u003c/a\u003e\u003c/h3\u003e\n\n---\n\n\u003cp align=\"center\"\u003e\n\u003cimg alt=\"Logo Banner\" src=\"https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true\"/\u003e\n\u003c/p\u003e\n\n## Build Process\n_Also look [Wiki](https://github.com/jellyfin/jellyfin-tizen/wiki)._\n\n### Prerequisites\n* Tizen Studio 4.6+ with IDE or Tizen Studio 4.6+ with CLI. See [Installing TV SDK](https://developer.samsung.com/smarttv/develop/getting-started/setting-up-sdk/installing-tv-sdk.html).\n* Git\n* Node.js 20+\n\n### Getting Started\n\n1. Install prerequisites.\n2. Install Certificate Manager using Tizen Studio Package Manager. See [Installing Required Extensions](https://developer.samsung.com/smarttv/develop/getting-started/setting-up-sdk/installing-tv-sdk.html#Installing-Required-Extensions).\n3. Setup Tizen certificate in Certificate Manager. See [Creating Certificates](https://developer.samsung.com/smarttv/develop/getting-started/setting-up-sdk/creating-certificates.html).\n   \u003e If you have installation problems with the Tizen certificate, try creating a Samsung certificate. In this case, you will also need a Samsung account.\n4. Clone or download [Jellyfin Web repository](https://github.com/jellyfin/jellyfin-web).\n\n   \u003e It is recommended that the web version match the server version.\n\n   ```sh\n   git clone -b release-10.10.z https://github.com/jellyfin/jellyfin-web.git\n   ```\n   \u003e Replace `release-10.10.z` with the name of the branch you want to build.\n\n   \u003e You can also use `git checkout` to switch branches.\n5. Clone or download Jellyfin Tizen (this) repository.\n   ```sh\n   git clone https://github.com/jellyfin/jellyfin-tizen.git\n   ```\n\n### Build Jellyfin Web\n\n```sh\ncd jellyfin-web\nnpm ci --no-audit\nUSE_SYSTEM_FONTS=1 npm run build:production\n```\n\n\u003e You should get `jellyfin-web/dist/` directory.\n\n\u003e `USE_SYSTEM_FONTS=1` is required to discard unused fonts and to reduce the size of the app. (Since Jellyfin Web 10.9)\n\n\u003e Use `npm run build:development` if you want to debug the app.\n\nIf any changes are made to `jellyfin-web/`, the `jellyfin-web/dist/` directory will need to be rebuilt using the command above.\n\n### Prepare Interface\n\n```sh\ncd jellyfin-tizen\nJELLYFIN_WEB_DIR=../jellyfin-web/dist npm ci --no-audit\n```\n\n\u003e You should get `jellyfin-tizen/www/` directory.\n\n\u003e The `JELLYFIN_WEB_DIR` environment variable can be used to override the location of `jellyfin-web`.\n\n\u003e Add `DISCARD_UNUSED_FONTS=1` environment variable to discard unused fonts and to reduce the size of the app. (Until Jellyfin Web 10.9)  \n\u003e Don't use it with Jellyfin Web 10.9+. Instead, use `USE_SYSTEM_FONTS=1` environment variable when building Jellyfin Web.\n\nIf any changes are made to `jellyfin-web/dist/`, the `jellyfin-tizen/www/` directory will need to be rebuilt using the command above.\n\n### Build WGT\n\n\u003e Make sure you select the appropriate Certificate Profile in Tizen Certificate Manager. This determines which devices you can install the widget on.\n\n```sh\ntizen build-web -e \".*\" -e gulpfile.babel.js -e README.md -e \"node_modules/*\" -e \"package*.json\" -e \"yarn.lock\"\ntizen package -t wgt -o . -- .buildResult\n```\n\n\u003e You should get `Jellyfin.wgt`.\n\n## Deployment\n\n### Deploy to Emulator\n\n1. Run emulator.\n2. Install package.\n   ```sh\n   tizen install -n Jellyfin.wgt -t T-samsung-5.5-x86\n   ```\n   \u003e Specify target with `-t` option. Use `sdb devices` to list them.\n\n### Deploy to TV\n\n1. Run TV.\n2. Activate Developer Mode on TV. See [Enable Developer Mode on the TV](https://developer.samsung.com/smarttv/develop/getting-started/using-sdk/tv-device.html#Connecting-the-TV-and-SDK).\n3. Connect to TV with one of the following options:\n   * Device Manager from `Tools -\u003e Device Manager` in Tizen Studio.\n\n   * sdb:\n      ```sh\n      sdb connect YOUR_TV_IP\n      ```\n4. If you are using a Samsung certificate, allow installs onto your TV using your certificate with one of the following options:\n   \u003e If you need to change or create a new Samsung certificate (see [Getting-Started](#getting-started) step 3), you will need to [re-build WGT](#build-wgt) once you have the Samsung certificate you'll use for the install.\n\n   * Device Manager from `Tools -\u003e Device Manager` in Tizen Studio:\n      * Right-click on the connected device, and select `Permit to install applications`.\n\n   * Tizen CLI:\n      ```sh\n      tizen install-permit -t UE65NU7400\n      ```\n      \u003e Specify target with `-t` option. Use `sdb devices` to list them.\n\n   * sdb:\n      ```sh\n      sdb push ~/SamsungCertificate/\u003cPROFILE_NAME\u003e/*.xml /home/developer\n      ```\n5. Install package.\n   ```sh\n   tizen install -n Jellyfin.wgt -t UE65NU7400\n   ```\n   \u003e Specify target with `-t` option. Use `sdb devices` to list them.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellyfin%2Fjellyfin-tizen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjellyfin%2Fjellyfin-tizen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellyfin%2Fjellyfin-tizen/lists"}