glenn-jocher commited on
Commit
5c2cd71
1 Parent(s): 0a09882

vid_formats bug fix #146

Browse files
Files changed (1) hide show
  1. utils/datasets.py +1 -1
utils/datasets.py CHANGED
@@ -18,7 +18,7 @@ from utils.utils import xyxy2xywh, xywh2xyxy
18
 
19
  help_url = 'https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data'
20
  img_formats = ['.bmp', '.jpg', '.jpeg', '.png', '.tif', '.dng']
21
- vid_formats = ['.mov', '.avi', '.mp4']
22
 
23
  # Get orientation exif tag
24
  for orientation in ExifTags.TAGS.keys():
 
18
 
19
  help_url = 'https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data'
20
  img_formats = ['.bmp', '.jpg', '.jpeg', '.png', '.tif', '.dng']
21
+ vid_formats = ['.mov', '.avi', '.mp4', '.mpg']
22
 
23
  # Get orientation exif tag
24
  for orientation in ExifTags.TAGS.keys():