LogoVid+

Welcome to

Vid+ LogoVID+

Your ultimate destination for movies, TV shows, and anime. Stream your favorites with our advanced customizable player.

Explore Content
Direct URL
https://filmfans.online/embed?tmdb=10195&type=movie
HTML Embed
<iframe
src="https://filmfans.online/embed?tmdb=10195&type=movie"
width="100%"
height="100%"
frameborder="0"
allowfullscreen
></iframe>
API Documentation

Embed a Movie

To embed a movie, append tmdb (The Movie Database ID) and specify type=movie.

https://filmfans.online/embed?tmdb=597&type=movie

Embed a TV Series

For TV shows, include the tmdb ID, specify type=tv, and provide the s (season) and e (episode) parameters.

https://filmfans.online/embed?tmdb=1396&type=tv&s=1&e=1
Code Examples

Ready-to-use integration examples for popular programming languages and frameworks. Simply copy and customize for your project.

Select a language or framework to view the integration code.

PHP Embed
1<?php
2/**
3 * Video Player Embed Helper
4 */
5class VideoPlayerEmbed {
6    private $baseUrl;
7    
8    public function __construct() {
9        $this->baseUrl = 'https://filmfans.online/embed';
10    }
11    
12    /**
13     * Generate embed HTML for a movie
14     */
15    public function embedMovie($tmdbId, $width = '100%', $height = '500px') {
16        $embedUrl = $this->baseUrl . '?tmdb=' . urlencode($tmdbId) . '&type=movie';
17        return $this->generateIframe($embedUrl, $width, $height);
18    }
19    
20    /**
21     * Generate embed HTML for a TV series episode
22     */
23    public function embedTVEpisode($tmdbId, $season, $episode, $width = '100%', $height = '500px') {
24        $embedUrl = $this->baseUrl . '?tmdb=' . urlencode($tmdbId) 
25                  . '&type=tv&s=' . intval($season) 
26                  . '&e=' . intval($episode);
27        return $this->generateIframe($embedUrl, $width, $height);
28    }
29    
30    /**
31     * Generate iframe HTML
32     */
33    private function generateIframe($url, $width, $height) {
34        return sprintf(
35            '<iframe src="%s" width="%s" height="%s" frameborder="0" allowfullscreen allow="autoplay; fullscreen; picture-in-picture" style="border-radius: 12px;"></iframe>',
36            htmlspecialchars($url),
37            htmlspecialchars($width),
38            htmlspecialchars($height)
39        );
40    }
41}
42
43// Usage Example
44$player = new VideoPlayerEmbed();
45
46// Embed a movie
47echo $player->embedMovie('597');
48
49// Embed a TV show episode
50echo $player->embedTVEpisode('1396', 1, 1);
51?>
Frequently Asked Questions

How do I embed the player on my website?

Simply fetch the desired movie or TV show above, copy the generated HTML iframe code snippet, and paste it into your website's source code where you want the player to appear.

Is there any cost to using the embedded player?

No, our embed player is fully free to use! We provide a seamless video streaming experience so developers can easily integrate media playback.

Why isn't the assigned video loading or displaying "Not Found"?

Ensure you are supplying the correct TMDB ID. Occasionally, some episodes or obscure titles might be processing or unavailable right away. If the problem persists, please contact our community on Telegram to report the missing media.

Does the player support autoplay?

Most modern browsers restrict video from playing automatically with sound. If you need autoplay, you'll generally have to append standard HTML iframe attributes like allow="autoplay" or initialize it with a muted query if supported.