@banou/media-player 0.6.1 → 0.6.2

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/main.tsx +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@banou/media-player",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -39,7 +39,7 @@
39
39
  "@xstate/react": "^5.0.1",
40
40
  "ass-compiler": "^0.1.15",
41
41
  "jassub": "^1.7.18",
42
- "libav-wasm": "^0.6.1",
42
+ "libav-wasm": "^0.6.2",
43
43
  "osra": "^0.1.2",
44
44
  "p-queue": "^7.3.4",
45
45
  "react": "^19.0.0",
package/src/main.tsx CHANGED
@@ -13,7 +13,7 @@ const mountStyle = css`
13
13
  `
14
14
 
15
15
  const BASE_BUFFER_SIZE = 2_500_000
16
- const url = '/video2.mkv'
16
+ const url = '/video.mkv'
17
17
 
18
18
  const Mount = () => {
19
19
  const [contentLength, setContentLength] = useState<number>()
@@ -124,7 +124,7 @@ const globalStyle = css`
124
124
  font-size: 1.6rem;
125
125
  font-family: Fira Sans;
126
126
  color: #fff;
127
-
127
+
128
128
  font-family: Montserrat;
129
129
  }
130
130