
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Create stunning videos programmatically with Remotion-powered automation
Vidosy is a powerful, configuration-driven video generation tool that leverages Remotion to create professional-quality videos with minimal effort. Define your video structure in JSON, add your media assets, and let Vidosy handle the rest.
object-fit: cover for perfect framing# Clone the repository
git clone <repository-url>
cd vidosy
# Install dependencies
npm install
# Build the project
npm run build
Create a vidosy.json configuration file:
{
"video": {
"width": 1920,
"height": 1080,
"fps": 30,
"duration": 15
},
"audio": {
"background": "background-music.mp3",
"volume": 0.3,
"fadeIn": 2,
"fadeOut": 3
},
"scenes": [
{
"id": "intro",
"duration": 5,
"background": {
"type": "image",
"value": "intro-background.png"
},
"text": {
"content": "Welcome to Vidosy",
"fontSize": 72,
"color": "#ffffff",
"position": "center"
},
"audio": {
"file": "intro-narration.mp3",
"volume": 0.9
}
}
]
}
Place your media files in the public/ directory:
public/
├── background-music.mp3
├── intro-background.png
└── intro-narration.mp3
# Using npm script
npm run render
# Using CLI directly
npx vidosy render
# With custom config file
npx vidosy render my-video.json
# With custom output and quality
npx vidosy render -o my-video.mp4 -q high
| Property | Type | Description | Default |
|---|---|---|---|
width | number | Video width in pixels | Required |
height | number | Video height in pixels | Required |
fps | number | Frames per second | Required |
duration | number | Total duration in seconds | Required |
Color Background
{
"background": {
"type": "color",
"value": "#000000"
}
}
Image Background
{
"background": {
"type": "image",
"value": "path/to/image.png"
}
}
Video Background
{
"background": {
"type": "video",
"value": "path/to/video.mp4"
}
}
{
"text": {
"content": "Your text here",
"fontSize": 64,
"color": "#ffffff",
"position": "center"
}
}
Position Options: top, center, bottom, left, right
{
"audio": {
"file": "narration.mp3",
"volume": 0.8,
"startTime": 0
}
}
{
"audio": {
"background": "music.mp3",
"volume": 0.4,
"fadeIn": 2,
"fadeOut": 3
}
}
Properties:
background: Path to background music filevolume: Volume level (0.0 to 1.0)fadeIn: Fade in duration in secondsfadeOut: Fade out duration in seconds{
"output": {
"format": "mp4",
"quality": "high",
"filename": "my-video.mp4"
}
}
Quality Presets:
low: 1280x720, 24fpsmedium: 1920x1080, 30fpshigh: 1920x1080, 60fpsvidosy render [config] [options]
Arguments:
config: Path to configuration file (default: vidosy.json)Options:
-o, --output <path>: Output file path-q, --quality <quality>: Video quality (low, medium, high)Examples:
# Basic render
vidosy render
# Custom config file
vidosy render my-video.json
# Custom output and quality
vidosy render -o output.mp4 -q high
# Full path specification
vidosy render /path/to/config.json -o /path/to/output.mp4
vidosy preview [config]
Note: Preview functionality is coming soon! This will allow you to preview your video composition in the browser before rendering.
vidosy/
├── src/
│ ├── cli/ # Command-line interface
│ │ ├── commands/ # CLI commands (render, preview)
│ │ └── utils/ # CLI utilities
│ ├── remotion/ # Video composition engine
│ │ ├── components/ # React components
│ │ ├── hooks/ # Custom React hooks
│ │ └── utils/ # Remotion utilities
│ └── shared/ # Shared types and schemas
├── public/ # Media assets directory
├── dist/ # Compiled JavaScript output
├── bin/ # CLI executable
└── examples/ # Example configurations
# Install dependencies
npm install
# Start development mode
npm run dev
# Build the project
npm run build
# Run tests
npm test
# Lint code
npm run lint
# Format code
npm run format
| Script | Description |
|---|---|
build | Compile TypeScript to JavaScript |
dev | Start Remotion preview mode |
render | Render video from configuration |
preview | Preview video in browser |
test | Run test suite |
lint | Check code quality |
format | Format code with Prettier |
| Type | Formats | Max Size |
|---|---|---|
| Video | MP4, MOV, AVI, MKV, WebM | 500MB |
| Audio | MP3, WAV, AAC, OGG, M4A | 100MB |
| Images | JPG, JPEG, PNG, GIF, WebP | 50MB |
| Format | Codec | Quality |
|---|---|---|
| MP4 | H.264 | Configurable |
| MOV | H.264 | Configurable |
| AVI | H.264 | Configurable |
"Configuration file not found"
"Asset file not found"
public/ directory"Render failed"
"Audio not playing"
We welcome contributions! Please see our contributing guidelines for details on:
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by the Vidosy Team
For support, questions, or feature requests, please open an issue on GitHub.
FAQs
Video generation tool using Remotion
We found that vidosy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.