video-framerate-enhance

Increases video frame rate via frame interpolation (e.g., upscaling from 24 fps to 60 fps). Do not invoke this feature when the target frame rate is at or below the original frame rate.

meitu video-framerate-enhance

Usage Examples

# Default interpolation to 60 fps (required parameters only)
meitu video-framerate-enhance \
  --video_url ./sample.mp4 \
  --json

# Specify target frame rate
meitu video-framerate-enhance \
  --video_url ./sample.mp4 \
  --frame_rate 30 \
  --json

# Full parameters with result download
meitu video-framerate-enhance \
  --video_url ./sample.mp4 \
  --frame_rate 60 \
  --json \
  --download-dir ./output

Parameters

ParameterRequiredDescription
--video_urlYesType: string; the video for frame interpolation
--frame_rateNoAlias: --fps; type: number; default: 60; options: 24 / 30 / 60; invalid values are automatically clamped to the nearest valid value
--download-dirNoType: string; downloads result files to the specified local directory
--outputNoType: string[]; specifies output file paths, mapped in order to data.result.urls
--jsonNoOutputs results in JSON format for script or agent parsing