ai 5.0.13 → 5.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # ai
2
2
 
3
+ ## 5.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 7729e32: fix(ai): expand mp3 detection to support all mpeg frame headers
8
+
3
9
  ## 5.0.13
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -600,6 +600,31 @@ var audioMediaTypeSignatures = [
600
600
  bytesPrefix: [255, 251],
601
601
  base64Prefix: "//s="
602
602
  },
603
+ {
604
+ mediaType: "audio/mpeg",
605
+ bytesPrefix: [255, 250],
606
+ base64Prefix: "//o="
607
+ },
608
+ {
609
+ mediaType: "audio/mpeg",
610
+ bytesPrefix: [255, 243],
611
+ base64Prefix: "//M="
612
+ },
613
+ {
614
+ mediaType: "audio/mpeg",
615
+ bytesPrefix: [255, 242],
616
+ base64Prefix: "//I="
617
+ },
618
+ {
619
+ mediaType: "audio/mpeg",
620
+ bytesPrefix: [255, 227],
621
+ base64Prefix: "/+M="
622
+ },
623
+ {
624
+ mediaType: "audio/mpeg",
625
+ bytesPrefix: [255, 226],
626
+ base64Prefix: "/+I="
627
+ },
603
628
  {
604
629
  mediaType: "audio/wav",
605
630
  bytesPrefix: [82, 73, 70, 70],