Batch Video Frame Rate Enhancement

Batch increase video frame rates through frame interpolation, making low-frame-rate footage appear smoother and more fluid.

meitu batch video-framerate-enhance

Note: Batch processing is available from meitu-cli v2.1.1 onward. Please upgrade if you're on an older version.

Usage Examples

# Scenario 1: Directory scan mode
meitu batch video-framerate-enhance \
  --input-dir ./low-fps \
  --output-dir ./high-fps \
  --frame-rate 60 \
  --json

# Scenario 2: Config file mode
meitu batch video-framerate-enhance \
  --config ./batch.video-framerate-enhance.yaml \
  --output-dir ./high-fps \
  --json

Config File Example

version: 1
defaults:
  outputDir: ./high-fps
  frameRate: 60
items:
  - input: ./videos/low1.mp4
  - input: ./videos/low2.mp4

Parameter Reference

ParameterRequiredDescription
--input-dirNoInput directory, recursively scan for video files
--output-dirYesOutput directory
--configNoPath to YAML/JSON config file
--concurrencyNoType: number; Default: 3; Number of parallel tasks (recommended 1-2 for videos)
--max-retriesNoType: number; Default: 0; Number of retries on failure
--skip-existNoSkip existing output files
--dry-runNoPreview the plan without executing
--no-progressNoDisable per-task progress logging
--jsonNoOutput results in JSON format
--json-outputNoWrite results to a specified JSON file
--skill-nameNoServer-side skill identifier
--frame-rateNoType: number; Target frame rate (24/30/60)