一键导入
export
Export screenshots, videos, GIFs, and mockups
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Export screenshots, videos, GIFs, and mockups
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search and visualize app knowledge from captured flows
Generate marketing assets from app screenshots
Full mobile testing workflow with Maestro recording
Open the DiscoveryLab web interface
Quickly capture iOS/Android emulator screen
Manage external links, requirements and test maps
| name | export |
| description | Export screenshots, videos, GIFs, and mockups |
| emoji | 📤 |
| version | 1.0.0 |
| category | export |
| requires | {"bins":["ffmpeg"]} |
| os | ["darwin","linux","win32"] |
| install | {"brew":"ffmpeg","apt":"ffmpeg","manual":"Download from https://ffmpeg.org/download.html"} |
| tools | ["dlab.export.video","dlab.export.gif","dlab.export.thumbnail","dlab.export.trim","dlab.export.concat","dlab.export.image","dlab.export.batch","dlab.export.mockups","dlab.export.info","dlab.export.clipboard","dlab.export.reveal","dlab.export.sequence"] |
| tags | ["export","video","gif","image","ffmpeg","mockup"] |
Export and process screenshots, videos, and mockups.
Export recording as video file:
projectId: Project to exportformat: mp4, webm, movquality: low, medium, highTrim video to specific time range:
input: Source videostart: Start time (seconds)end: End time (seconds)Concatenate multiple videos:
inputs: Array of video pathsoutput: Output file pathGet video file information (duration, resolution, codec).
Convert video or sequence to animated GIF:
input: Source video or image folderfps: Frame rate (default: 10)scale: Width in pixelsGenerate thumbnail from video:
input: Source videotime: Timestamp to captureExport single frame as image:
Batch export multiple screenshots.
Export video as image sequence.
Generate device mockups:
Copy image to clipboard.
Open file in Finder/Explorer.
# Export as GIF
dlab.export.gif {
"input": "./recording.mp4",
"fps": 15,
"scale": 480
}
# Create mockup
dlab.export.mockups {
"input": "./screenshot.png",
"device": "iphone14pro"
}
# Trim video
dlab.export.trim {
"input": "./recording.mp4",
"start": 5,
"end": 30
}