Inline VidFast players on IMDb: styled Episode guide on series pages, per-episode buttons on episode list pages, inline player toggle for movies/episodes if needed (matching official player style).
< Feedback op IMDb to VidFast (Unified Integration)
1. The close button is already there, just press the button again and the player iframe disappears.
2. In the userscript code replace ?sub=en with ?sub=es / > ?sub=fr or any other depending upon language (en = english, es = espanol, fr = french)
Subtitles on VidFast aren't good and in many movies/series there aren't any, or don't work fine. So you can use another userscript I made to have download subtitles button on IMDb directly
https://greatest.deepsurf.us/en/scripts/550028-imdb-to-opensubtitles
1. The close button is already there, just press the button again and the player iframe disappears.
Ha... OK fine!
here a suggestion to make it more explicite by using CSS./* (new58) TEST GM "IMDb to VidFast (Unified Integration)"
https://greatest.deepsurf.us/fr/scripts/548512-imdb-to-vidfast-unified-integration
=== */
#vf-main-btn {
z-index: 500000 !important;
filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 10px 8px);
}
/* VF BUTTON - VIDEO PLAYER OPEN */
body:has(iframe#vidfast-player) #vf-main-btn {
z-index: 500000 !important;
filter: drop-shadow(rgba(225, 15, 15, .74) 0px -10px 8px) !important;
}
body:has(iframe#vidfast-player) #vf-main-btn:before {
content: "❌ Close" !important;
position: absolute !important ;
margin: 0 0 0 10% !important;
padding: 0 4px !important;
z-index: 500000 !important;
background:rgb(18, 87, 132) !important;
}
/* VF BUTTON - EPISODES PLAYER OPEN */
section:has(iframe#vidfast-player, .episode-item-wrapper ) .episode-item-wrapper:has(+iframe) button.vf-ep-btn:before {
content: "❌ Close" !important;
position: absolute !important ;
margin: 0 0 0 -3% !important;
padding: 0 0px !important;
z-index: 500000 !important;
background:rgb(18, 87, 132) !important;
}
Subtitles on VidFast aren't good and in many movies/series there aren't any, or don't work fine. So you can use another userscript I made to have download subtitles button on IMDb directly
Tested and seems work fine:
just always the "problem" when opensubtitles.com don't have the subtitle in the language i want ;-)
Subtitles on VidFast aren't good and in many movies/series there aren't any, or don't work fine. So you can use another userscript I made to have download subtitles button on IMDb directlyTested and seems work fine:
just always the "problem" when opensubtitles.com don't have the subtitle in the language i want ;-)
Cause the userscript is based on English subtitles. opensubtitles.com can auto translate if subs aren't available for the language, and can be filtered for subs in that language.
In the code change this const url = `https://www.opensubtitles.com/en/en/search-all/q-${imdbId}/hearing_impaired-include/machine_translated-/trusted_sources-/`;
Into this (for French)
const url = `https://www.opensubtitles.com/fr/fr/search-all/q-${imdbId}/hearing_impaired-include/machine_translated-/trusted_sources-/`;
For Spanish:-
const url = `https://www.opensubtitles.com/es/es/search-all/q-${imdbId}/hearing_impaired-include/machine_translated-/trusted_sources-/`;
And select the language manually on opensubtitles.com also
I don't think there's a need for another buttton, like I said, the first click shows the player, and second click hides the player, pretty simple toggle button.
Cause the userscript is based on English subtitles. opensubtitles.com can auto translate if subs aren't available for the language, and can be filtered for subs in that language.
With or without your code tweak in FR, i can't find French subtitle
by example for:
https://www.opensubtitles.com/fr/subtitles/laws-of-man-2024-1080p-bluray-ddp5-1-x264-zigzag-sdh
and if i want translate one:
"You have installed our extension, but still need to login / create an account to access this feature "
And i have no account....
I was wrong about the auto translate thing. I guess you need to have their premium member or you need to specifically request translation from English (or other language) into for example French, and that won't happen instantly either. So your best bet is to just find French subtitles. The movie you linked isn't popular and well known and is very unknown, so obviously it won't have subs in French, as you can see it even has only 5-6 subs in English. Your best bet is to use a website or app yo translation subtitles after downloading the English one
:-)
work fine! :-)
Just 2 requests: 1 - Can you add a close bouton to the movie iframe? 2 - Can you add a way to choose and keep always the same langage for the subtitle option?