Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/endrl/jellyfin-plugin-edl
Jellyfin .edl file creation plugin
https://github.com/endrl/jellyfin-plugin-edl
Last synced: 2 months ago
JSON representation
Jellyfin .edl file creation plugin
- Host: GitHub
- URL: https://github.com/endrl/jellyfin-plugin-edl
- Owner: endrl
- License: gpl-3.0
- Created: 2023-05-05T16:41:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-04T13:45:12.000Z (about 1 year ago)
- Last Synced: 2024-08-02T16:36:32.539Z (5 months ago)
- Language: C#
- Size: 167 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome-github-stars - endrl/jellyfin-plugin-edl - Jellyfin .edl file creation plugin (C# #)
README
# Jellyfin Plugin EDL
Jellyfin .edl file creation plugin for Kodi and other compatible players. See [Kodi Wiki](https://kodi.wiki/view/Edit_decision_list).
## Requirements
- ⚠️ Jellyfin 10.10 unstable
- A writeable media library! You can't use this plugin with read only media libraries!## Features
- Convert Media Segments (Intro, Outro,...) to .edl files
- Integrated into [Jellyfin Segment Editor](https://github.com/endrl/segment-editor?tab=readme-ov-file#jellyfin-segment-editor)
- Supported Media Types
- TV Shows
- Movies## Installation instructions
1. Add plugin repository to your server: `https://raw.githubusercontent.com/endrl/jellyfin-plugin-repo/master/manifest.json`
2. Install the EDL Creator plugin from the General section
3. Restart Jellyfin
4. Go to Dashboard -> Scheduled Tasks -> Create EDL and click the play button
5. Configure the "Edl Action" for different segment types in plugin settings
6. There is no Task Timer configured, create one if you want to scan daily### Debug Logging
Change your logging.json file to output debug logs for `Jellyfin.Plugin.Edl`. Make sure to add a comma to the end of `"System": "Warning"`
```jsonc
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning",
"Jellyfin.Plugin.Edl": "Debug"
}
}
// other stuff
}
}
```