Drop an iframe into any webpage and stream movies & TV shows instantly. No signup, no API key, no cost.
Live Preview
Configure the player and see it in real time.
https://cinemaos.tech/player/550?theme=ffffffConfigure and click Preview
Why CinemaOS
No API key or signup. Just paste the iframe and it works.
Links refresh automatically with the best available quality.
Works on every device — desktop, mobile, tablet.
Control playback and track progress from your own page.
Documentation
Everything you need to embed and control the CinemaOS player.
https://cinemaos.tech/player/{tmdb_id}https://cinemaos.tech/player/{tmdb_id}/{season}/{episode}Basic
<iframe
src="https://cinemaos.tech/player/550?theme=ffffff"
width="100%"
height="100%"
frameborder="0"
allowfullscreen
allow="encrypted-media"
></iframe>Responsive 16:9
<!-- 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
<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>