{"id":51195200,"url":"https://github.com/lingfish/vlc-emby-play-sync","last_synced_at":"2026-06-27T19:31:40.453Z","repository":{"id":366286211,"uuid":"1274965028","full_name":"lingfish/vlc-emby-play-sync","owner":"lingfish","description":"VLC Lua extension that syncs playback position (resume point) to Emby server","archived":false,"fork":false,"pushed_at":"2026-06-21T05:01:46.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-21T06:24:27.193Z","etag":null,"topics":["emby","emby-server","lua","playback-sync","resume-playback","vlc","vlc-extension"],"latest_commit_sha":null,"homepage":null,"language":"Lua","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/lingfish.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":[],"custom":["https://buymeacoffee.com/lingfish"]}},"created_at":"2026-06-20T04:58:14.000Z","updated_at":"2026-06-21T05:01:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lingfish/vlc-emby-play-sync","commit_stats":null,"previous_names":["lingfish/vlc-emby-play-sync"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/lingfish/vlc-emby-play-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lingfish%2Fvlc-emby-play-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lingfish%2Fvlc-emby-play-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lingfish%2Fvlc-emby-play-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lingfish%2Fvlc-emby-play-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lingfish","download_url":"https://codeload.github.com/lingfish/vlc-emby-play-sync/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lingfish%2Fvlc-emby-play-sync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34866118,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["emby","emby-server","lua","playback-sync","resume-playback","vlc","vlc-extension"],"created_at":"2026-06-27T19:31:40.046Z","updated_at":"2026-06-27T19:31:40.446Z","avatar_url":"https://github.com/lingfish.png","language":"Lua","funding_links":["https://buymeacoffee.com/lingfish"],"categories":[],"sub_categories":[],"readme":"# vlc-emby-play-sync\n\n![VLC 3.x](https://img.shields.io/badge/VLC-3.x-orange)\n![Lua 5.1](https://img.shields.io/badge/Lua-5.1-blue)\n![Emby 4.x](https://img.shields.io/badge/Emby-4.x-green)\n[![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-donate-ffdd00?logo=buymeacoffee)](https://buymeacoffee.com/lingfish)\n\nVLC Lua extension that syncs playback position to Emby as a resume point.\n\n## Installation\n\n```bash\ngit clone https://github.com/lingfish/vlc-emby-play-sync\ncd vlc-emby-play-sync\n./install.sh\n```\n\nRestart VLC, then enable the extension via **View → Extension Manager** or the **Extensions** menu.\n\n## Configuration\n\nOpen **View → Extension Manager → Emby Play Sync → Configure** and fill in:\n\n| Field | Required | Description |\n|-------|----------|-------------|\n| **Emby Server URL** | Yes | `http://host:8096` |\n| **API Key** | Yes | From Emby Admin → Advanced → Security |\n| **User ID** | Yes | Emby username or UUID |\n| **Local path prefix** | No | VLC-side mount path (e.g. `/mnt/nas/`) |\n| **Emby path prefix** | No | Emby-side library path (e.g. `/shared/`) |\n\nPath prefixes let VLC find the right Emby item when the file path differs (e.g. NFS mount vs Emby's internal path).\n\n## How it works\n\n1. When a file starts playing, VLC fires `input_changed()` → match file path to an Emby item via `GET /Items?Path=`\n2. Plays, pauses, and stops push position ticks to Emby via the standard `/Sessions/Playing` endpoints\n3. On stop, position is also written directly to Emby's `POST /Users/{UserId}/Items/{ItemId}/UserData` API for reliable resume-point storage\n\n## Requirements\n\n- VLC 3.x\n- Emby Server 4.x\n\n## Files\n\n| File | Purpose |\n|------|---------|\n| `emby-play-sync.lua` | VLC Lua extension (single file) |\n| `install.sh` | Symlinks extension into `~/.local/share/vlc/lua/extensions/` |\n| `AGENTS.md` | Architecture notes for AI coding assistants |\n\n## Support\n\nIf this extension helps you, consider buying me a coffee:\n\n[![Buy Me a Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://buymeacoffee.com/lingfish)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flingfish%2Fvlc-emby-play-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flingfish%2Fvlc-emby-play-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flingfish%2Fvlc-emby-play-sync/lists"}