如何在不下载完整视频的情况下获取在线视频的持续时间?



为了获得视频的持续时间和分辨率,我有这个功能:

def getvideosize(url, verbose=False):
try:
    if url.startswith('http:') or url.startswith('https:'):
        ffprobe_command = ['ffprobe', '-icy', '0', '-loglevel', 'repeat+warning' if verbose else 'repeat+error', '-print_format', 'json', '-select_streams', 'v', '-show_streams', '-timeout', '60000000', '-user-agent', BILIGRAB_UA, url]
    else:
        ffprobe_command = ['ffprobe', '-loglevel', 'repeat+warning' if verbose else 'repeat+error', '-print_format', 'json', '-select_streams', 'v', '-show_streams', url]
    logcommand(ffprobe_command)
    ffprobe_process = subprocess.Popen(ffprobe_command, stdout=subprocess.PIPE)
    try:
        ffprobe_output = json.loads(ffprobe_process.communicate()[0].decode('utf-8', 'replace'))
    except KeyboardInterrupt:
        logging.warning('Cancelling getting video size, press Ctrl-C again to terminate.')
        ffprobe_process.terminate()
        return 0, 0
    width, height, widthxheight, duration = 0, 0, 0, 0
    for stream in dict.get(ffprobe_output, 'streams') or []:
        if dict.get(stream, 'duration') > duration:
            duration = dict.get(stream, 'duration')
        if dict.get(stream, 'width')*dict.get(stream, 'height') > widthxheight:
            width, height = dict.get(stream, 'width'), dict.get(stream, 'height')
    if duration == 0:
        duration = 1800
    return [[int(width), int(height)], int(float(duration))+1]
except Exception as e:
    logorraise(e)
    return [[0, 0], 0]

但是有些在线视频没有duration标签。我们可以做点什么来获得它的持续时间吗?

如果您有直接链接到视频本身(如 http://www.dl.com/xxx.mp4),则可以使用以下方法直接使用 ffprobe 获取此视频的持续时间:

ffprobe -i some_video_direct_link -show_entries format=duration -v quiet -of csv="p=0"
import cv2
data = cv2.VideoCapture('https://v.buddyku.id/ugc/m3YXvl-61837b3d8a0706e1ee0ab139.mp4')
frames = data.get(cv2.CAP_PROP_FRAME_COUNT)
fps = int(data.get(cv2.CAP_PROP_FPS))
seconds = int(frames / fps)
print("duration in seconds:", seconds)
我知道

这个问题很老,但有一个更好的方法可以做到这一点。

通过将 einverne 的答案与一些实际的 Python(在本例中为 Python 3.5)相结合,我们可以创建一个短函数来返回视频中的秒数(持续时间)。

import subprocess
def get_duration(file):
    """Get the duration of a video using ffprobe."""
    cmd = ['ffprobe', '-i', file, '-show_entries', 'format=duration',
           '-v', 'quiet', '-of', 'csv="p=0"']
    output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
    output = float(output)
    return round(output)

并调用此函数:

video_length_in_seconds = get_duration('/path/to/your/file') # mp4, avi, etc

这将为您提供总秒数,四舍五入到最接近的完整秒数。因此,如果您的视频是 30.6 秒,这将返回 31 .

FFMpeg 命令ffprobe -i video_file_here -show_entries format=duration -v quiet -of csv="p=0"将为您获取视频持续时间,不应下载整个视频。

最新更新