Fix testing for duration in video metadata
This commit is contained in:
		@ -248,7 +248,7 @@ class Photo(object):
 | 
				
			|||||||
			if 'codec_type' in s and s['codec_type'] == 'video':
 | 
								if 'codec_type' in s and s['codec_type'] == 'video':
 | 
				
			||||||
				self._attributes["mediaType"] = "video"
 | 
									self._attributes["mediaType"] = "video"
 | 
				
			||||||
				self._attributes["size"] = (int(s["width"]), int(s["height"]))
 | 
									self._attributes["size"] = (int(s["width"]), int(s["height"]))
 | 
				
			||||||
				if s["duration"]:
 | 
									if "duration" in s:
 | 
				
			||||||
					self._attributes["duration"] = s["duration"]
 | 
										self._attributes["duration"] = s["duration"]
 | 
				
			||||||
				if "tags" in s and "rotate" in s["tags"]:
 | 
									if "tags" in s and "rotate" in s["tags"]:
 | 
				
			||||||
					self._attributes["rotate"] = s["tags"]["rotate"]
 | 
										self._attributes["rotate"] = s["tags"]["rotate"]
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user