@remotion/media-utils 3.0.22 → 3.0.25
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { AudioData } from '
|
|
1
|
+
import type { AudioData } from '../types';
|
|
2
2
|
export declare const getMaxPossibleMagnitude: (metadata: AudioData) => number;
|
package/dist/get-audio-data.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { AudioData } from './types';
|
|
1
|
+
import type { AudioData } from './types';
|
|
2
2
|
export declare const getAudioData: (src: string) => Promise<AudioData>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { VideoMetadata } from './types';
|
|
1
|
+
import type { VideoMetadata } from './types';
|
|
2
2
|
export declare const getVideoMetadata: (src: string) => Promise<VideoMetadata>;
|
package/dist/use-audio-data.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { AudioData } from './types';
|
|
1
|
+
import type { AudioData } from './types';
|
|
2
2
|
export declare const useAudioData: (src: string) => AudioData | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/media-utils",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.25",
|
|
4
4
|
"description": "Utility functions for audio and video",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"remotion": "3.0.
|
|
21
|
+
"remotion": "3.0.25"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": ">=16.8.0",
|
|
25
25
|
"react-dom": ">=16.8.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@jonny/eslint-config": "3.0.
|
|
28
|
+
"@jonny/eslint-config": "3.0.266",
|
|
29
29
|
"@types/node": "^16.7.5",
|
|
30
30
|
"@types/react": "18.0.1",
|
|
31
31
|
"eslint": "8.13.0",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "27ec369ebe9cf3d063095383c1e30dc83c60f010"
|
|
48
48
|
}
|