mukundzha/rendly

Create stunning demo videos through help of simple code lines.

0

stars

0

commits

TypeScript

primary language

Sep 13, 2026

updated

rendly-one.vercel.app/

README

Rendly - Code-First Video Creation Tool

Rendly is a powerful code-first video creation tool that lets you create stunning videos using a simple DSL (Domain Specific Language). Write code, preview in real-time, and export professional videos.

GitHub Vercel


Table of Contents


Features

  • Code-First Video Creation: Write simple DSL code to create professional videos
  • Real-Time Preview: See your changes instantly in the preview panel
  • Multiple Scenes: Create complex videos with multiple scenes
  • Custom Animations: Add fade, slide, pop, and bounce animations
  • Custom Fonts: Use any font family for your text
  • Custom Colors: Set any color for text and backgrounds
  • Video Export: Export your videos in WebM format
  • Open Source: Free and open source under MIT license

Getting Started

Prerequisites

  • Node.js 18+
  • npm or yarn

Installation

  1. Clone the repository
git clone https://github.com/mukundzha/rendly.git
cd rendly
  1. Install dependencies
npm install
# or
yarn install
  1. Start the development server
npm run dev
  1. Open your browser

Navigate to http://localhost:3000


How It Works

Rendly uses a simple DSL (Domain Specific Language) to define video scenes. Each scene consists of:

  • TEXT: The content to display on screen
  • FONT: The font family to use
  • SIZE: The font size in pixels
  • COLOR: The text color (hex or named color)
  • BACKGROUND: The background color
  • ANIMATION: The entrance animation
  • DURATION: How long the scene lasts

Basic Example

TEXT "Hello World"
FONT Inter
SIZE 64
COLOR #FF4D00
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 1.5s

DSL Reference

Commands

CommandDescriptionExample
TEXTDisplay text on screenTEXT "Hello World"
SHAPEAdd a geometric shapeSHAPE circle
FONTSet font familyFONT Inter
SIZEFont size in pixelsSIZE 48
COLORText or shape colorCOLOR #FF4D00
BACKGROUNDCanvas backgroundBACKGROUND #000000
ANIMATIONAnimation typeANIMATION fade in
DURATIONScene durationDURATION 1.5s

Animations

AnimationDescription
fade inFade in from transparent (default)
slide upSlide up from bottom
popPop in with scale effect
bounceBounce in from top

Shapes

ShapeDescription
circleCircle shape
squareSquare shape
rectRectangle shape
diamondDiamond/rotated square

Creating Multiple Scenes

To create multiple scenes, separate each scene with 2 or more empty lines.

TEXT "Scene 1"
COLOR #FF4D00
ANIMATION fade in
DURATION 1.5s


TEXT "Scene 2"
COLOR #00AAFF
ANIMATION slide up
DURATION 2s

Each scene can have its own:

  • Text content or shape
  • Font, size, and color
  • Background color
  • Animation type
  • Duration

Example Projects

Simple Text Animation

TEXT "Welcome"
FONT Inter
COLOR #1A1A1A
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 1.5s

Multi-Scene Video

TEXT "Welcome to Rendly"
FONT Inter
SIZE 48
COLOR #FF4D00
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 2s


TEXT "Code-first video creation"
FONT Inter
SIZE 36
COLOR #1A1A1A
ANIMATION slide up
DURATION 1.5s


SHAPE circle
COLOR #00AFFF
ANIMATION pop
DURATION 1s

Custom Brand Video

TEXT "Your Brand"
FONT Poppins
SIZE 72
COLOR #FF4D00
BACKGROUND #000000
ANIMATION fade in
DURATION 2s


SHAPE rect
COLOR #FF4D00
ANIMATION bounce
DURATION 1s

Tech Stack

  • Framework: Next.js 14 (App Router)
  • Language: TypeScript
  • Styling: Tailwind CSS
  • Icons: Lucide React
  • Deployment: Vercel
  • License: MIT

Development

Available Scripts

CommandDescription
npm run devStart development server
npm run buildBuild for production
npm run startStart production server
npm run lintRun ESLint
npm run lint:fixFix ESLint errors

Project Structure

rendly/
├── src/
│   ├── app/              # Next.js App Router pages
│   │   ├── editor/      # Code editor page
│   │   ├── dashboard/  # User dashboard
│   │   ├── examples/   # Example projects
│   │   └── page.tsx   # Landing page
│   ├── components/     # React components
│   └── styles/        # Global styles
├── public/             # Static assets
├── package.json       # Dependencies
└── README.md         # This file

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

Development Workflow

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.


Contact


Made with for developers who love code-first tools.

mukundzha/rendly

Create stunning demo videos through help of simple code lines.

0

stars

0

commits

TypeScript

primary language

Sep 13, 2026

updated

rendly-one.vercel.app/

README

Rendly - Code-First Video Creation Tool

Rendly is a powerful code-first video creation tool that lets you create stunning videos using a simple DSL (Domain Specific Language). Write code, preview in real-time, and export professional videos.

GitHub Vercel


Table of Contents


Features

  • Code-First Video Creation: Write simple DSL code to create professional videos
  • Real-Time Preview: See your changes instantly in the preview panel
  • Multiple Scenes: Create complex videos with multiple scenes
  • Custom Animations: Add fade, slide, pop, and bounce animations
  • Custom Fonts: Use any font family for your text
  • Custom Colors: Set any color for text and backgrounds
  • Video Export: Export your videos in WebM format
  • Open Source: Free and open source under MIT license

Getting Started

Prerequisites

  • Node.js 18+
  • npm or yarn

Installation

  1. Clone the repository
git clone https://github.com/mukundzha/rendly.git
cd rendly
  1. Install dependencies
npm install
# or
yarn install
  1. Start the development server
npm run dev
  1. Open your browser

Navigate to http://localhost:3000


How It Works

Rendly uses a simple DSL (Domain Specific Language) to define video scenes. Each scene consists of:

  • TEXT: The content to display on screen
  • FONT: The font family to use
  • SIZE: The font size in pixels
  • COLOR: The text color (hex or named color)
  • BACKGROUND: The background color
  • ANIMATION: The entrance animation
  • DURATION: How long the scene lasts

Basic Example

TEXT "Hello World"
FONT Inter
SIZE 64
COLOR #FF4D00
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 1.5s

DSL Reference

Commands

CommandDescriptionExample
TEXTDisplay text on screenTEXT "Hello World"
SHAPEAdd a geometric shapeSHAPE circle
FONTSet font familyFONT Inter
SIZEFont size in pixelsSIZE 48
COLORText or shape colorCOLOR #FF4D00
BACKGROUNDCanvas backgroundBACKGROUND #000000
ANIMATIONAnimation typeANIMATION fade in
DURATIONScene durationDURATION 1.5s

Animations

AnimationDescription
fade inFade in from transparent (default)
slide upSlide up from bottom
popPop in with scale effect
bounceBounce in from top

Shapes

ShapeDescription
circleCircle shape
squareSquare shape
rectRectangle shape
diamondDiamond/rotated square

Creating Multiple Scenes

To create multiple scenes, separate each scene with 2 or more empty lines.

TEXT "Scene 1"
COLOR #FF4D00
ANIMATION fade in
DURATION 1.5s


TEXT "Scene 2"
COLOR #00AAFF
ANIMATION slide up
DURATION 2s

Each scene can have its own:

  • Text content or shape
  • Font, size, and color
  • Background color
  • Animation type
  • Duration

Example Projects

Simple Text Animation

TEXT "Welcome"
FONT Inter
COLOR #1A1A1A
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 1.5s

Multi-Scene Video

TEXT "Welcome to Rendly"
FONT Inter
SIZE 48
COLOR #FF4D00
BACKGROUND #FFFFFF
ANIMATION fade in
DURATION 2s


TEXT "Code-first video creation"
FONT Inter
SIZE 36
COLOR #1A1A1A
ANIMATION slide up
DURATION 1.5s


SHAPE circle
COLOR #00AFFF
ANIMATION pop
DURATION 1s

Custom Brand Video

TEXT "Your Brand"
FONT Poppins
SIZE 72
COLOR #FF4D00
BACKGROUND #000000
ANIMATION fade in
DURATION 2s


SHAPE rect
COLOR #FF4D00
ANIMATION bounce
DURATION 1s

Tech Stack

  • Framework: Next.js 14 (App Router)
  • Language: TypeScript
  • Styling: Tailwind CSS
  • Icons: Lucide React
  • Deployment: Vercel
  • License: MIT

Development

Available Scripts

CommandDescription
npm run devStart development server
npm run buildBuild for production
npm run startStart production server
npm run lintRun ESLint
npm run lint:fixFix ESLint errors

Project Structure

rendly/
├── src/
│   ├── app/              # Next.js App Router pages
│   │   ├── editor/      # Code editor page
│   │   ├── dashboard/  # User dashboard
│   │   ├── examples/   # Example projects
│   │   └── page.tsx   # Landing page
│   ├── components/     # React components
│   └── styles/        # Global styles
├── public/             # Static assets
├── package.json       # Dependencies
└── README.md         # This file

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

Development Workflow

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.


Contact


Made with for developers who love code-first tools.

Languages

TypeScript

96.0%

CSS

3.6%