| .github | ||
| .vscode | ||
| assets | ||
| media | ||
| resources | ||
| scripts | ||
| src | ||
| .dockerignore | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .npmrc | ||
| .prettierignore | ||
| .prettierrc.yaml | ||
| .stylelintrc.json | ||
| CHANGELOG.md | ||
| dev-app-update.yml | ||
| docker-compose.yaml | ||
| Dockerfile | ||
| electron-builder-beta.yml | ||
| electron-builder.yml | ||
| electron.vite.config.ts | ||
| eslint.config.mjs | ||
| feishin.desktop.tmpl | ||
| install-feishin-appimage | ||
| LICENSE | ||
| ng.conf.template | ||
| org.jeffvli.feishin.metainfo.xml | ||
| package.json | ||
| pnpm-lock.yaml | ||
| postcss.config.cjs | ||
| README.md | ||
| remote.vite.config.ts | ||
| settings.js.template | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| tsconfig.web.json | ||
| vercel.json | ||
| web.vite.config.ts | ||
Feishin
⚠️ Fork Notice: This is a fork of the original Feishin project. I created this fork primarily to add folder view functionality that the original repo wasn't able to accommodate, along with some other features I found useful. While I'll try to keep this fork in sync with the original repo, that's not the primary focus. Feishin was pretty much perfect for me - I just missed the folder view feature. That said, I'll fix any obvious bugs I encounter, but for full support and the most up-to-date version, please stay with the original repository.
Note: I primarily use Linux desktop, so only Linux issues can be addressed if needed.
Rewrite of Sonixd.
Features
- MPV player backend
- Web player backend
- Modern UI
- Scrobble playback to your server
- Smart playlist editor (Navidrome)
- Synchronized and unsynchronized lyrics support
Screenshots
Getting Started
Linux Desktop
Download the latest desktop client. The desktop client is the recommended way to use Feishin. It supports both the MPV and web player backends, as well as includes built-in fetching for lyrics.
Configuration
-
Upon startup you will be greeted with a prompt to select the path to your MPV binary. If you do not have MPV installed, you can download it here or install it using any package manager supported by your OS. After inputting the path, restart the app.
-
After restarting the app, you will be prompted to select a server. Click the
Open menubutton and selectManage servers. Click theAdd serverbutton in the popup and fill out all applicable details. You will need to enter the full URL to your server, including the protocol and port if applicable (e.g.https://navidrome.my-server.comorhttp://192.168.0.1:4533).
- Navidrome - For the best experience, select "Save password" when creating the server and configure the
SessionTimeoutsetting in your Navidrome config to a larger value (e.g. 72h).- Linux users - The default password store uses
libsecret.kwallet4/5/6are also supported, but must be explicitly set in Settings > Window > Passwords/secret score.
- Linux users - The default password store uses
-
Optional - If you want to host Feishin on a subpath (not
/), then pass in the following environment variable:PUBLIC_PATH=PATH. For example, to host on/feishin, pass inPUBLIC_PATH=/feishin. -
Optional - To hard code the server url, pass the following environment variables:
SERVER_NAME,SERVER_TYPE(one ofjellyfinornavidrome),SERVER_URL. To prevent users from changing these settings, passSERVER_LOCK=true. This can only be set if all three of the previous values are set.
FAQ
MPV is either not working or is rapidly switching between pause/play states
First thing to do is check that your MPV binary path is correct. Navigate to the settings page and re-set the path and restart the app. If your issue still isn't resolved, try reinstalling MPV. Known working versions include v0.35.x and v0.36.x. v0.34.x is a known broken version.
What music servers does Feishin support?
Feishin supports any music server that implements a Navidrome, Jellyfin, or OpenSubsonic compatible API.
- Navidrome
- Jellyfin
- OpenSubsonic compatible servers, such as...
I have the issue "The SUID sandbox helper binary was found, but is not configured correctly" on Linux
This happens when you have user (unprivileged) namespaces disabled (sysctl kernel.unprivileged_userns_clone returns 0). You can fix this by either enabling unprivileged namespaces, or by making the chrome-sandbox Setuid.
chmod 4755 chrome-sandbox
sudo chown root:root chrome-sandbox
Ubuntu 24.04 specifically introduced breaking changes that affect how namespaces work. Please see https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890#:~:text=security%20improvements%20 for possible fixes.
Development
Built and tested using Node v23.11.0.
This project is built off of electron-vite
pnpm run dev- Start the development serverpnpm run dev:watch- Start the development server in watch mode (for main / preload HMR)pnpm run start- Starts the app in production preview modepnpm run build- Builds the app for desktoppnpm run build:electron- Build the electron app (main, preload, and renderer)pnpm run build:remote- Build the remote app (remote)pnpm run build:web- Build the standalone web app (renderer)pnpm run package- Package the projectpnpm run package:dev- Package the project for development locallypnpm run package:linux- Package the project for Linux locallypnpm run package:mac- Package the project for Mac locallypnpm run package:win- Package the project for Windows locallypnpm run publish:linux- Publish the project for Linuxpnpm run publish:linux:beta- Publish the project for Linux (beta channel)pnpm run publish:linux-arm64- Publish the project for Linux ARM64pnpm run publish:linux-arm64:beta- Publish the project for Linux ARM64 (beta channel)pnpm run publish:mac- Publish the project for Macpnpm run publish:mac:beta- Publish the project for Mac (beta channel)pnpm run publish:win- Publish the project for Windowspnpm run publish:win:beta- Publish the project for Windows (beta channel)pnpm run typecheck- Type check the projectpnpm run typecheck:node- Type check the project with tsconfig.node.jsonpnpm run typecheck:web- Type check the project with tsconfig.web.jsonpnpm run lint- Lint the projectpnpm run lint:fix- Lint the project and fix linting errorspnpm run i18next- Generate i18n files



