You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix LP-to-docs 404 by prepending basePath to internal links, and update docs content
Internal links in OpenSourceCTA and Footer used plain <a> tags without
the Next.js basePath prefix, causing 404s on GitHub Pages where the
base path is /rollberry-docs. Also updates documentation content for
accuracy and adds multi-page capture docs.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: content/docs/getting-started/introduction.mdx
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Rollberry is a command-line tool that captures full-page scrolling videos of web
11
11
Under the hood, Rollberry launches a real Chromium browser via [Playwright](https://playwright.dev/), navigates to your target URL, and records the viewport as it scrolls through the page. This means every CSS animation, lazy-loaded image, and dynamic element is captured exactly as a real user would see it.
12
12
13
13
```bash
14
-
npx rollberry capture https://example.com
14
+
rollberry capture https://example.com
15
15
```
16
16
17
17
That single command produces a polished MP4 video of the full page in seconds.
@@ -45,13 +45,14 @@ A scrolling video provides a faithful representation of the user experience that
45
45
46
46
-**Zero install** — Run directly with `npx`, no global installation required
47
47
-**Real browser rendering** — Uses Playwright with Chromium for pixel-perfect captures
48
+
-**Multi-page capture** — Stitch multiple URLs into one video sequentially
48
49
-**Localhost support** — Capture local development servers with automatic retry logic
49
50
-**Custom viewport** — Set any resolution to match your target devices
50
51
-**Smooth scrolling** — Configurable scroll speed and duration
51
52
-**FPS control** — Adjust frame rate for quality vs. file size trade-offs
52
53
-**Wait conditions** — Wait for specific selectors or a fixed delay before capturing
53
54
-**Hide overlays** — Remove cookie banners, sticky headers, and other floating elements
54
-
-**Debug mode** — Save individual frames as PNGs for inspection
55
+
-**Debug frames** — Save individual frames as PNGs for inspection
55
56
-**Structured logs** — JSONL output for programmatic processing
56
57
-**MP4 output** — Industry-standard video format that plays everywhere
57
58
@@ -64,7 +65,7 @@ Rollberry follows a straightforward capture pipeline:
0 commit comments