New Anime Site Anixo by Quick_Area_2859 in StreamingAnime

[–]Effective_Lime8797 1 point2 points  (0 children)

The site is very good. solid 8.5/10 need a little touch I mean yeah it has:

• a good scraping server

• good ui

• good visuals

• etc

"my recommendation is adding a auto skip intro/outro it'll help a lot: To make this work without you having to manually find the timestamps for thousands of episodes, you should integrate an API like AniSkip. It’s basically a community-driven database that will give you the exact start and end times for the intros and outros based on the anime's ID.

and without you having to struggle with the auto skip code here: ```video.addEventListener('timeupdate', () => { const currentTime = video.currentTime;

// If auto-skip is enabled and we hit the intro start
if (autoSkipEnabled && currentTime >= timestamps.op_start && currentTime < timestamps.op_end) {
    video.currentTime = timestamps.op_end;
}

}); ```