You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say we have these streaming sources (A, B, C, D, E, F). This is what happenes whenever user wants to watch an episode:
1. Source A fetches and fails.
2. Source B fetches and fails.
3. Source C fetches and fails.
4. Source D fetches and fails.
5. Source **E** fetches and **success**.
6. Source plays.
7. Next episode.
1. Source A fetches and fails.
2. Source B fetches and fails.
3. Source C fetches and fails.
4. Source D fetches and fails.
5. Source **E** fetches and **success**.
6. Source plays.
7. Next episode.
Instead, a feature can be added to memorize which streaming source was successful and used previously. Result:
1. Source A fetches and fails.
2. Source B fetches and fails.
3. Source C fetches and fails.
4. Source D fetches and fails.
5. Source **E** fetches and **success**.
6. Source plays.
7. Next episode.
1. Source **E** fetches and **success**.
2. Source plays.
3. Next episode.
How should it work? Simply momerise the previously used seccessfull streaming source and whenever a new episode plays, sort the sources array and put the previously used seccessfull streaming source at the begening of the list.
Why do you want to have this feature?
It can sometimes be annoying to wait for source selection (when you already know the top ones are going to fail and the bottom one is going to succeed).
Any other details to share?
Benefits:
Prevents unnecessary API calls.
Better UX.
The text was updated successfully, but these errors were encountered:
What feature do you want to add?
Hi 👋
Let's say we have these streaming sources (A, B, C, D, E, F). This is what happenes whenever user wants to watch an episode:
Instead, a feature can be added to memorize which streaming source was successful and used previously. Result:
How should it work? Simply momerise the previously used seccessfull streaming source and whenever a new episode plays, sort the sources array and put the previously used seccessfull streaming source at the begening of the list.
Why do you want to have this feature?
It can sometimes be annoying to wait for source selection (when you already know the top ones are going to fail and the bottom one is going to succeed).
Any other details to share?
Benefits:
The text was updated successfully, but these errors were encountered: