Scan Report
5 /100
auto-video-cut
抖音/视频自动剪辑Skill - 自动识别视频中的废话、沉默片段,生成粗剪版本
Video auto-editing skill using FFmpeg and Whisper for silence detection and segment scoring. All capabilities are legitimate, documented, and necessary for the stated purpose. No malicious indicators found.
Safe to install
Approve for use. All subprocess calls are for documented CLI tools (FFmpeg, Whisper). File operations scoped to user-provided output directories. No credential access or data exfiltration detected.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | Version mismatch between filename and internal version | video_editor_auto_v4.6.py:1 |
| Info | openai-whisper dependency version not pinned | requirements.txt:1 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Shell | WRITE | WRITE | ✓ Aligned | video_editor_auto_v4.6.py:85 - subprocess.run(ffmpeg/ffprobe) |
| Filesystem | READ | READ | ✓ Aligned | video_editor_auto_v4.6.py - reads input video, writes output/md reports |
| Filesystem | WRITE | WRITE | ✓ Aligned | video_editor_auto_v4.6.py - clip output, reports |
| Network | NONE | NONE | — | No network calls detected |
| Environment | NONE | NONE | — | No os.environ iteration for secrets |
| Skill Invoke | NONE | NONE | — | No skill_invoke calls |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser automation |
| Database | NONE | NONE | — | No database access |
1 findings
Medium External URL 外部 URL
https://ffmpeg.org/download.html SKILL.md:37 File Tree
10 files · 29.2 KB · 730 lines Python 1f · 629L
Markdown 1f · 87L
Text 8f · 14L
├─
▾
video_work
│ ├─
▾
VID_20260318_064448
│ │ ├─
segment_0.txt
Text
│ │ ├─
segment_1.txt
Text
│ │ ├─
segment_2.txt
Text
│ │ ├─
segment_4.txt
Text
│ │ └─
segment_5.txt
Text
│ └─
▾
VID_20260318_064448_clip
│ ├─
segment_0.txt
Text
│ └─
segment_1.txt
Text
├─
requirements.txt
Text
├─
SKILL.md
Markdown
└─
video_editor_auto_v4.6.py
Python
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
openai-whisper | * | pip | No | Version not pinned - minor reproducibility concern |
Security Positives
✓ No credential harvesting - no access to ~/.ssh, ~/.aws, .env, or os.environ key iteration
✓ No data exfiltration - no external IP connections, no network POSTs of any kind
✓ No obfuscation techniques - no base64, no eval, no atob patterns
✓ No remote script execution - no curl|bash or wget|sh patterns
✓ No hidden instructions in HTML comments or elsewhere
✓ All subprocess calls are for documented, publicly-known CLI tools (FFmpeg, Whisper)
✓ File I/O scoped entirely to user-specified input/output directories
✓ Code is readable and well-structured with clear separation of concerns
✓ No sensitive file paths accessed (no ~/.ssh, ~/.aws, .env traversal)