79700665

Date: 2025-07-14 09:30:38
Score: 1.5
Natty:
Report link

# Load the uploaded video to confirm the file is accessible and inspect metadata

import moviepy.editor as mp

# Load video

video_path = '/mnt/data/51e28b415dd6ed91304dc69abcee182e.mp4'

video_clip = mp.VideoFileClip(video_path)

# Extract basic metadata

video_duration = video_clip.duration

video_fps = video_clip.fps

video_resolution = video_clip.size

(video_duration, video_fps, video_resolution)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sigit Pamungkas