Moonfin is an enhanced Jellyfin client built with the Enact/Sandstone framework, optimized for Samsung Smart TVs (Tizen) and LG Smart TVs (webOS). A single shared codebase powers both platforms with native video pipelines tuned for each.
Moonfin builds on the solid foundation of Jellyfin with targeted improvements for the TV viewing experience.
- Samsung AVPlay (Tizen) and Starfish/HTML5 (webOS) native video pipelines
- Smooth playback with proper hardware decoding for H.264, HEVC, HDR10, HLG, and Dolby Vision (where supported)
- Automatic DirectPlay → native transcode → hls.js fallback chain when a format isn't natively supported
- Enhanced player controls optimized for TV remote navigation
- Unified Library Mode — Combine content from all connected Jellyfin servers into a single view
- Browse, search, and play content across multiple servers seamlessly
- Server badges show content origin when unified mode is enabled
- Cross-server playback with proper progress tracking per server
- Favorites, genres, and search aggregate results from all servers
Moonfin is the first smart TV client with native Jellyseerr support.
- Browse trending, popular, and recommended movies/shows and filter by genres, studio, network, and keywords
- Request content in HD or 4K directly from your TV
- NSFW Content Filtering (optional) using Jellyseerr/TMDB metadata
- Smart season selection when requesting TV shows
- View all your pending, approved, and available requests
- Authenticate using your API key (required for TV webview compatibility)
- Global search includes Jellyseerr results
- Rich backdrop images for a cinematic discovery experience
- Quick access home button and search functionality
- Shuffle button for instant random movie/TV show discovery
- Genres menu to browse all media by genre in one place
- Dynamic library buttons automatically populate based on your Jellyfin libraries
- One-click navigation to any library or collection directly from the navbar
- Cleaner icon-based design for frequently used actions
- Theme Music Playback — Background theme music for TV shows and movies with volume control
- Pre-Playback Track Selection — Choose your preferred audio track and subtitle before playback starts
- Next Episode Countdown — Skip button with countdown timer when next episode is available
- Trickplay Preview — Thumbnail previews when scrubbing through video
- Media Segment Skipping — Skip intros, credits, and other segments automatically
- Electronic Program Guide (EPG) — Browse live TV channels with program information in a much simpler interface
- DVR Recordings — Access and play back recorded content with a simple button press
- Metadata organized into clear sections: genres, directors, writers, studios, and runtime
- Taglines displayed above the description where available
- Cast photos appear as circles for a cleaner look
- Fits more useful information on screen without feeling cramped
- Built with Enact/Sandstone — Modern React-based framework optimized for TV experiences
- Accent Color Customization — Personalize the UI with your preferred accent color
- Backdrop Blur Settings — Customizable blur effects for home and details pages
- Item details show up right in the row — no need to open every title to see what it is
- Buttons look better when not focused (transparent instead of distracting)
- Better contrast makes text easier to read
- Transitions and animations feel responsive
- Consistent icons and visual elements throughout
Download the latest release from the Releases page.
| Platform | File | Supported Devices |
|---|---|---|
| Tizen | .wgt |
Samsung Smart TVs (2018+, Tizen 4.0+) |
| webOS | .ipk |
LG Smart TVs (2018+, webOS 4.0+) |
The easiest way to install on Samsung TVs is using the Jellyfin 2 Samsung tool:
- Download Jellyfin 2 Samsung by @PatrickSt1991
- Enable Developer Mode on your Samsung TV:
- Go to Settings → General → System Manager → Developer Mode
- Turn Developer Mode ON
- Enter your PC's IP address
- Restart the TV
- Run the tool, select the Moonfin
.wgtfile, enter your TV's IP address, and install
- Enable Developer Mode on your LG TV via the LG Developer portal
- Install the webOS CLI tools (
@webos-tools/cli) - Set up your TV as a device:
ares-setup-device - Install the IPK:
ares-install --device <your-tv> moonfin.ipk
Seerr/Jellyseerr integration uses the Moonfin Jellyfin Plugin to proxy requests through your Jellyfin server, avoiding CORS and cookie issues on TV webviews.
- Install the Moonfin Plugin on your Jellyfin server
- Configure the plugin with your Seerr/Jellyseerr server URL and API key in the Jellyfin admin dashboard
- In Moonfin on your TV, go to Settings → PLugin and enable the integration — no additional URL or key entry is needed on the TV side, it connects through your Jellyfin server automatically
Note: The plugin acts as a server-side proxy, so your TV only needs to reach your Jellyfin server. Seerr/Jellyseerr does not need to be directly accessible from the TV.
- Node.js 18+ and npm 9+
# Install dependencies
npm install
# Build for Samsung (creates .wgt)
npm run build:tizen
# Build for LG (creates .ipk)
npm run build:webos
# Development server (Tizen mode)
npm run dev:tizen
# Development server (webOS mode)
npm run dev:webos
Build outputs:
- Tizen:
Moonfin-v2.1.0.wgtin the project root - webOS:
org.moonfin.webos_2.1.0_all.ipkinpackages/build-webos/build/
This project uses npm workspaces and Enact to share a single React codebase across both platforms while keeping platform-specific code isolated.
moonfin/
├── packages/
│ ├── app/ # Shared application code
│ │ └── src/
│ │ ├── App/ # Main application component
│ │ ├── components/ # Reusable UI components
│ │ ├── context/ # React context providers
│ │ ├── hooks/ # Custom React hooks
│ │ ├── services/ # API and service modules
│ │ ├── views/ # Page components
│ │ ├── utils/ # Helpers and key handling
│ │ └── styles/ # Global styles and variables
│ ├── platform-tizen/ # Samsung AVPlay, Smart Hub, Tizen storage
│ ├── platform-webos/ # Starfish/HTML5 video, Luna storage
│ ├── build-tizen/ # Tizen build scripts → .wgt
│ └── build-webos/ # webOS build scripts → .ipk
├── package.json # npm workspaces root
└── .eslintrc.js # Shared ESLint config
Shared code in packages/app/ never imports directly from @enact/webos, tizen.*, or webapis.*. Platform-specific behavior is isolated through runtime detection:
import { isTizen, isWebOS, getPlatform } from './platform';
Services like video, storage, and device profiles use getPlatform() to dynamically import the correct platform implementation at runtime.
- Enact/Sandstone provides TV-optimized UI components and Spotlight navigation
- Tizen: AVPlay API for video,
tizen.tvinputdevicefor remote keys - webOS: Shared HTML5 video element with
audioTracksAPI, Luna service calls for storage - Packaged apps (
.wgt/.ipk) bypass CORS restrictions - Cross-origin cookies don't persist in either platform's webview — use API keys instead
- UI changes should be tested on actual TV hardware when possible
We welcome contributions to Moonfin!
- Check existing issues — See if your idea or bug is already reported
- Discuss major changes — Open an issue first for significant features
- Follow code style — Match the existing codebase conventions
- Test on TV devices — Verify changes work on actual hardware when possible
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes with clear commit messages
- Test on Samsung and/or LG TV hardware
- Submit a pull request with a detailed description
- Issues — GitHub Issues for bugs and feature requests
- Discussions — GitHub Discussions for questions and ideas
- Jellyfin — jellyfin.org for server-related questions
Moonfin is built upon the excellent work of:
- Jellyfin Project — The media server
- Enact — React-based framework for TV apps
- Jellyfin Tizen & webOS Contributors — The original client developers
- Moonfin Contributors — Everyone who has contributed to this project
This project is licensed under the MPL 2.0 license. Some parts incorporate content licensed under the Apache 2.0 license. All images are taken from and licensed under the same license as https://github.com/jellyfin/jellyfin-ux. See the LICENSE file for details.
Moonfin for Smart TVs is an independent fork and is not affiliated with the Jellyfin project.
← Back to main Moonfin project

