Public
Like
veo-feed
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
A web application that converts URLs into TikTok-style videos using AI-generated summaries and screenshots.
- Convert any URL into a video using Google's Veo 3 AI model
- Fetch markdown content and screenshots from URLs
- Generate AI summaries using Gemini API
- TikTok-style scrolling feed with scroll-snap
- Customizable video generation prompts
├── backend/
│ ├── index.ts # Main Hono server
│ ├── routes/
│ │ ├── videos.ts # Video generation endpoints
│ │ └── static.ts # Static file serving
│ └── database/
│ ├── migrations.ts # SQLite schema
│ └── queries.ts # Database operations
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React app entry point
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── VideoFeed.tsx # TikTok-style feed
│ │ ├── VideoCard.tsx # Individual video component
│ │ └── URLInput.tsx # URL input form
│ └── style.css # Custom styles
└── shared/
├── types.ts # Shared TypeScript types
└── utils.ts # Shared utility functions
POST /api/videos/generate
- Generate video from URLGET /api/videos
- Get all generated videosGET /api/videos/:id
- Get specific videoDELETE /api/videos/:id
- Delete video
GEMINI_API_KEY
- Google Gemini API key for summariesVEO_API_KEY
- Veo API key for video generation (if required)
- Enter URLs in the input form
- Videos are generated automatically using:
- Markdown content from the URL
- Screenshot of the page
- AI-generated summary
- Custom video generation prompt
- Scroll through the TikTok-style feed
- Customize video prompts in the settings