Jellyfin Forum
intro-skipper project dead? - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Development (https://forum.jellyfin.org/f-development)
+--- Forum: Plugin Development (https://forum.jellyfin.org/f-plugin-development)
+--- Thread: intro-skipper project dead? (/t-intro-skipper-project-dead)

Pages: 1 2 3 4 5 6 7 8


RE: intro-skipper project dead? - MegaUltraGigaChad - 2023-12-20

Outro detection should trigger the "Up next" popup honnestly (if possible)


RE: intro-skipper project dead? - sek0n - 2023-12-23

(2023-12-20, 11:58 PM)MegaUltraGigaChad Wrote: Outro detection should trigger the "Up next" popup honnestly (if possible)

Generally this would be good, but I've come across the occasional episode that has a mid-credit or end credit scene. Currently it'll skip to the scene, but with up-next it likely skip the credit-scenes i'd assume.
An option for it wouldn't hurt tho, imo.


Also, thanks a TON for you guys for keeping this working. I legit was thinking about using plex again cause I was getting annoyed when it first broke lol


RE: intro-skipper project dead? - aurelmarius - 2023-12-30

(2023-12-01, 10:21 PM)Ala Ibrahim Wrote: Ok, so I created a patch (https://pastebin.com/EEgvReaw) to apply the changes locally without needing to wait for anyone to update their repo, if any body wants to have a similar setup.

You need git and nodejs on the machine you are doing this setup on, steps to get this setup


    git clone https://github.com/jellyfin/jellyfin-web.git
    cd jellyfin-web
    git checkout v10.8.13 # <- This is to check out the version to apply it to
   
    # Fetch the patch and apply it
    curl -s https://pastebin.com/raw/EEgvReaw > skipintro.patch
    git apply skipintro.patch
   
    # regular build steps
    npm install
    npm run build:production


At this point you have your build ready in the dist folder

If you also want to install Jellyscrub, now would be the time to edit dist/index.html to add the script tag.

then you can use the dist folder as the /jellyfin/jellyfin-web folder, for example I have


  - ./jellyfin-web/distConfused-facejellyfin/jellyfin-web


in the volumes section in my docker-compose.yml file

Hope this helps someone.

I tried your patch but can't apply.

LE: This worked: git apply --ignore-whitespace --ignore-space-change skipintro.patch

Code:
root@storage:~/jelly/jellyfin-web# git checkout v10.8.13
HEAD is now at 8e37078b6 Bump version to 10.8.13
root@storage:~/jelly/jellyfin-web# git apply skipintro.patch
error: patch failed: src/assets/css/videoosd.scss:375
error: src/assets/css/videoosd.scss: patch does not apply
error: patch failed: src/controllers/playback/video/index.html:6
error: src/controllers/playback/video/index.html: patch does not apply
error: patch failed: src/controllers/playback/video/index.js:462
error: src/controllers/playback/video/index.js: patch does not apply
root@storage:~/jelly/jellyfin-web#



RE: intro-skipper project dead? - Swami - 2023-12-30

(2023-12-11, 02:55 PM)javifeer Wrote: does it work on android tv app?

Doesn't seem to for me, it claims to have worked but skips nothing.  It does work in Firefox though if you hit the button.


RE: intro-skipper project dead? - MegaUltraGigaChad - 2024-01-02

Same, the updated script displays the "automatically skipped intro" but nothing happen


RE: intro-skipper project dead? - xupd39baw - 2024-02-12

seriously hope this plugin isnt dead. not a developer but would love to see this keep advancing and would test to help.


RE: intro-skipper project dead? - Rubén Navarro López - 2024-02-21

Hi! I don't really like auto skip the intro of my tv shows/animes, I want to press the button "skip intro", but when I do it, the jellyfin client "freezes" and i need to reopen it, then it seems to have the intro skipped...

Anyone with the same problem?

Regards!


RE: intro-skipper project dead? - quixotic120 - 2024-02-22

(2023-12-30, 09:39 AM)aurelmarius Wrote: [quote="Ala Ibrahim" pid='10197' dateline='1701469261']

LE: This worked: git apply --ignore-whitespace --ignore-space-change skipintro.patch

this fixed for me, got everything working on unraid, thanks!!

fyi for anyone else trying - if you're using jellyskin the "skip" button may be misaligned. I had to disable custom css to get everything working. with jellyskin the skip button works but it's initially displayed very low on the screen to the point I was not seeing it and thought I had messed something up. eventually I realized it was there and pressed it; once pressed it jumps to the spot it should be. I'm just going to leave the custom css off for now because I'm having other minor issues with it but figured i'd mention it just in case someone else had that.

edit: with further testing this works most of the time but sometimes it breaks the UI - most of my shows work as they should and I can skip the intro and credits even but it appears sometimes the intro skip button fails to respond; when this occurs I can still watch but it breaks the ability to seek through the episode on the webOS app (although can still seek when accessing through other platforms like my laptop and play/pause still work on all). will def investigate further but kind of a deal breaker especially if there's no one maintaining Confused-face

double edit: appears to be limited to the webOS client or maybe the file?. editing the time fingerprints for offending shows a bit gets them working in all platforms except for webOS. not sure how to get logs off of the webOS client so I'm stuck at this point. tried deleting the fingerprints altogether and still have the scrubbing not available issues so not sure if it was ever an issue with the plugin


RE: intro-skipper project dead? - Nils Leo - 2024-03-07

Theres still a way to install it in 2024. This guide helped me figure it out https://youtu.be/revYQ4Z3XrI


RE: intro-skipper project dead? - Galahad - 2024-03-11

Is there a way to do the intro skip button with just using jellyfin server on windows, or do I have to use a docker / ubuntu?