Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

VideoUtil.py 184B

1234567
  1. # -*- coding: utf-8 -*-
  2. import magic
  3. def is_mp4_video(video_path):
  4. mime_type = magic.from_buffer(open(video_path, "rb").read(2048), mime=True)
  5. return mime_type == 'video/mp4'