Free · No API Key Required

Embed CinemaOS
in your website

Drop an iframe into any webpage and stream movies & TV shows instantly. No signup, no API key, no cost.

Live Preview

Try it now

Configure the player and see it in real time.

Options
URLhttps://cinemaos.tech/player/550?theme=ffffff

Configure and click Preview

Why CinemaOS

Built for developers

Zero Setup

No API key or signup. Just paste the iframe and it works.

🔄

Auto-Updated

Links refresh automatically with the best available quality.

📱

Responsive

Works on every device — desktop, mobile, tablet.

🔌

PostMessage API

Control playback and track progress from your own page.

Documentation

Integration guide

Everything you need to embed and control the CinemaOS player.

Endpoints

Moviehttps://cinemaos.tech/player/{tmdb_id}
TV Showhttps://cinemaos.tech/player/{tmdb_id}/{season}/{episode}

Basic

html
<iframe
  src="https://cinemaos.tech/player/550?theme=ffffff"
  width="100%"
  height="100%"
  frameborder="0"
  allowfullscreen
  allow="encrypted-media"
></iframe>

Responsive 16:9

html
<!-- 16:9 Aspect Ratio Container -->
<div style="position:relative;padding-bottom:56.25%;height:0;">
  <iframe
    src="https://cinemaos.tech/player/550?theme=ffffff"
    style="position:absolute;top:0;left:0;width:100%;height:100%;"
    frameborder="0"
    allowfullscreen
    allow="encrypted-media"
  ></iframe>
</div>

Tailwind CSS

jsx
<div className="relative w-full pt-[56.25%]">
  <iframe
    src="https://cinemaos.tech/player/550?theme=ffffff"
    className="absolute top-0 left-0 w-full h-full"
    frameBorder="0"
    allowFullScreen
    allow="encrypted-media"
  ></iframe>
</div>