You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
184B

  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'