frameproof
Агент смотрит видео без слепых зон и доказывает тайм-кодом, что видел. Офлайн, без API-ключей.
File Explorer
- marketplace.json
- plugin.json
- ci.yml
- publish.yml
- benchmark.py
- RESULTS.md
- frameproof-adversary.md
- SKILL.md
- __init__.py
- __main__.py
- analyze.py
- budget.py
- extract.py
- fetch.py
- index.py
- kinescope.py
- ocr.py
- probe.py
- py.typed
- report.py
- select.py
- transcribe.py
- util.py
- verify.py
- SKILL.md
- test_budget_and_parsing.py
- test_fetch_cookies_and_version.py
- test_fetch_format_fallback.py
- test_fetch_kinescope.py
- test_fetch_retry.py
- test_kinescope.py
- test_packaging.py
- test_select.py
- test_verify.py
- .gitignore
- AGENTS.md
- CLAIMS.md
- LICENSE
- pyproject.toml
- README.md
- README.ru.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
ffmpeg
View Details ▼
ffmpeg
Video conversion tool.
See also: `gst-launch-1.0`.
ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}
Extract the sound from a video and save it as MP3:
ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}
Transcode a FLAC file to Red Book CD format (44100kHz, 16bit):
ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}
Save a video as GIF, scaling the height to 1000px and setting framerate to 15:
mp4decrypt
View Details ▼
mp4decrypt
Decrypt an MP4 file.
Part of the Bento4 tools.
mp4decrypt --key {{key_id_hex}}:{{key_hex}} {{path/to/input_file.mp4}} {{path/to/output_file.mp4}}
Decrypt a file using a specific key (key ID in hex, key in hex):
mp4decrypt --key {{track_id}}:{{key_hex}} {{path/to/input_file.mp4}} {{path/to/output_file.mp4}}
Decrypt a file using a specific key for a track ID (track ID in decimal, key in hex):
mp4decrypt --key {{key_id_1}}:{{key_1}} --key {{key_id_2}}:{{key_2}} --show-progress {{path/to/input_file.mp4}} {{path/to/output_file.mp4}}
Decrypt a file using multiple keys while displaying the progress of the decryption:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
yt-dlp
View Details ▼
yt-dlp
A youtube-dl fork with additional features and fixes.
Download videos from YouTube and other websites.
See also: `ytfzf`.
yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist (with the default options from command below):
yt-dlp {{[-F|--list-formats]}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
List the available downloadable formats for a video:
yt-dlp {{[-f|--format]}} "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist using the best MP4 video available (default is "bv\*+ba/b"):
