Changed DASH parser to look for 'mimeType'.

Change-Id: I9cd62fa7df7ab7893cfa296be2d7ad9538acdaaf
diff --git a/adaptive/dash_parser.js b/adaptive/dash_parser.js
index c0a1baa..21aa3ef 100755
--- a/adaptive/dash_parser.js
+++ b/adaptive/dash_parser.js
@@ -35,7 +35,7 @@
  * @return {string} version.
  */
 DashParser.version = function() {
-  return '0.1.0.0';
+  return '0.1.0.1';
 };
 
 /**
@@ -583,7 +583,7 @@
   this.height_ = parseInt(node.getAttribute('height'));
   this.id = node.getAttribute('id');
   this.lang = node.getAttribute('lang');
-  this.mimetype_ = node.getAttribute('mimetype');
+  this.mimetype_ = node.getAttribute('mimeType');
   this.segmentAlignment = node.getAttribute('segmentAlignment') === 'true';
   this.subsegmentAlignment_ =
       node.getAttribute('subsegmentAlignment') === 'true';