{"id":37880120,"url":"https://github.com/hacel/jfsh","last_synced_at":"2026-01-16T16:47:55.446Z","repository":{"id":263575431,"uuid":"876953478","full_name":"hacel/jfsh","owner":"hacel","description":"A terminal-based client for Jellyfin","archived":false,"fork":false,"pushed_at":"2025-12-17T04:25:19.000Z","size":1086,"stargazers_count":31,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-20T07:38:26.698Z","etag":null,"topics":["bubbletea","cli","go","golang","jellyfin","jellyfin-client","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hacel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-22T20:41:41.000Z","updated_at":"2025-12-17T08:58:28.000Z","dependencies_parsed_at":"2025-12-06T03:10:55.225Z","dependency_job_id":null,"html_url":"https://github.com/hacel/jfsh","commit_stats":null,"previous_names":["hacel/jfsh"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/hacel/jfsh","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacel%2Fjfsh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacel%2Fjfsh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacel%2Fjfsh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacel%2Fjfsh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacel","download_url":"https://codeload.github.com/hacel/jfsh/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacel%2Fjfsh/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28480081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bubbletea","cli","go","golang","jellyfin","jellyfin-client","tui"],"created_at":"2026-01-16T16:47:55.351Z","updated_at":"2026-01-16T16:47:55.428Z","avatar_url":"https://github.com/hacel.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jfsh\n\nA terminal-based client for [Jellyfin](https://jellyfin.org) that lets you browse your media library and play videos via [mpv](https://mpv.io).\nInspired by [jftui](https://github.com/Aanok/jftui).\n\n![Demo](demo/demo.gif)\n\n## Features\n\n- Uses _your_ mpv config!\n- Resumes playback!\n- Tracks playback progress and updates jellyfin!\n- Automatic segment (intro, etc.) skipping!\n- No mouse required!\n\n## Installation\n\n### Prerequisites\n\n- A running [Jellyfin](https://jellyfin.org) instance.\n- [mpv](https://mpv.io) available in PATH.\n\n#### Install from AUR\n\nOn Arch Linux, jfsh can be installed from the [AUR](https://aur.archlinux.org/packages/jfsh)\n\n```sh\nyay -S jfsh\n```\n\n#### Download a release\n\nDownload the latest pre-built binary for your platform from the [releases page](https://github.com/hacel/jfsh/releases/latest).\n\n#### Install via go\n\n```sh\ngo install github.com/hacel/jfsh@latest\n```\n\n## Usage\n\n1. **Start jfsh**\n\n   ```sh\n   jfsh\n   ```\n\n2. **Login**\n\n   On first launch, you'll be prompted to enter:\n\n   - **Host**: e.g., `http://localhost:8096`\n   - **Username**\n   - **Password**\n\n3. **Play Media**\n\n   - Select an item and press **Enter** or **Space** to play it.\n   - `mpv` will launch and begin streaming.\n\n4. **Quit**\n\n   - Press **`q`** at any time to exit jfsh.\n\n## Configuration\n\nBy default, the configuration file is stored in `$XDG_CONFIG_HOME/jfsh/jfsh.yaml`. If `$XDG_CONFIG_HOME` is not set it defaults to:\n\n- **Linux**: `~/.config/jfsh/jfsh.yaml`\n- **macOS**: `~/Library/Application Support/jfsh/jfsh.yaml`\n- **Windows**: `%APPDATA%/jfsh/jfsh.yaml`\n\n```yaml\nhost: http://localhost:8096\nusername: me\npassword: hunter2\ndevice: mycomputer # Device name to report to jellyfin (default: hostname)\nskip_segments: # Segments to automatically skip (default: [])\n  - Recap\n  - Preview\n  - Intro\n  - Outro\n```\n\n### Segment skipping\n\nBy default, no segments are automatically skipped. To enable skipping segments you must add `skip_segments` to the configuration file. Possible values for `skip_segments` are the segment types in Jellyfin which are: `Unknown`, `Commercial`, `Preview`, `Recap`, `Outro` and `Intro`.\n\n## Plans\n\n- Configuration through TUI\n- Complete library browsing\n- Sorting\n- Better search: Filter by media type, watched status, and metadata\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacel%2Fjfsh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacel%2Fjfsh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacel%2Fjfsh/lists"}