python获取网页播放视频时长_用ffmpeg在python中获取视频时长
我建议使用FFprobe(附带FFmpeg)。查马斯给出的答案非常接近,但最终对我来说失败了。如前所述,我使用的是Python3.5和3.6,这对我很有用。import subprocessdef get_duration(file):"""Get the duration of a video using ffprobe."""cmd = 'ffprobe -i {} -show_entries...