Vimeo Script Builder
Generate custom Vimeo player embeds using natural language
Chat
Describe the Vimeo player you want to build...
"Give me a simple player with just a play button"
"Create a playlist with 4 videos in a grid"
"Build a gated video series that unlocks on completion"
Press Enter to send, Shift+Enter for new line
Generated Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vimeo Player</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #1a1a1a;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.player-wrapper {
width: 100%;
max-width: 800px;
aspect-ratio: 16 / 9;
}
.player-wrapper iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 8px;
}
</style>
</head>
<body>
<div class="player-wrapper">
<iframe
src="https://player.vimeo.com/video/1154063892"
allow="autoplay; fullscreen; picture-in-picture"
allowfullscreen
></iframe>
</div>
<script src="https://player.vimeo.com/api/player.js"></script>
</body>
</html>Live Preview
Playback
UI Elements
Control Bar
Other
Play Button
Colors
Primary
Accent
Icon/Text
Background