trying to fix crashes
This commit is contained in:
@ -72,6 +72,7 @@ export default function VideoPlayer() {
|
||||
src={videoUrl}
|
||||
className="max-w-full max-h-full"
|
||||
controls={false}
|
||||
preload="none"
|
||||
onClick={togglePlay}
|
||||
onError={(e) => {
|
||||
console.error('Audio load error:', e);
|
||||
@ -80,6 +81,9 @@ export default function VideoPlayer() {
|
||||
onLoadStart={() => console.log('Audio load start:', videoUrl)}
|
||||
onLoadedData={() => console.log('Audio loaded data')}
|
||||
onCanPlay={() => console.log('Audio can play')}
|
||||
onProgress={() => console.log('Audio progress event')}
|
||||
onStalled={() => console.log('Audio stalled')}
|
||||
onSuspend={() => console.log('Audio suspended')}
|
||||
/>
|
||||
) : (
|
||||
<video
|
||||
@ -87,6 +91,7 @@ export default function VideoPlayer() {
|
||||
src={videoUrl}
|
||||
className="max-w-full max-h-full object-contain"
|
||||
playsInline
|
||||
preload="none"
|
||||
onClick={togglePlay}
|
||||
onError={(e) => {
|
||||
console.error('Video load error:', e);
|
||||
@ -95,6 +100,9 @@ export default function VideoPlayer() {
|
||||
onLoadStart={() => console.log('Video load start:', videoUrl)}
|
||||
onLoadedData={() => console.log('Video loaded data')}
|
||||
onCanPlay={() => console.log('Video can play')}
|
||||
onProgress={() => console.log('Video progress event')}
|
||||
onStalled={() => console.log('Video stalled')}
|
||||
onSuspend={() => console.log('Video suspended')}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@ -1,3 +1,11 @@
|
||||
@import '@fontsource/inter/300.css';
|
||||
@import '@fontsource/inter/400.css';
|
||||
@import '@fontsource/inter/500.css';
|
||||
@import '@fontsource/inter/600.css';
|
||||
@import '@fontsource/inter/700.css';
|
||||
@import '@fontsource/jetbrains-mono/400.css';
|
||||
@import '@fontsource/jetbrains-mono/500.css';
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@ -116,7 +116,13 @@ export const useEditorStore = create<EditorState & EditorActions>()(
|
||||
|
||||
loadVideo: (path) => {
|
||||
const backend = get().backendUrl;
|
||||
const url = `${backend}/file?path=${encodeURIComponent(path)}`;
|
||||
const buildMediaUrl = (filePath: string) => {
|
||||
const isWav = filePath.toLowerCase().endsWith('.wav');
|
||||
return isWav
|
||||
? `${backend}/file?path=${encodeURIComponent(filePath)}&format=mp3`
|
||||
: `${backend}/file?path=${encodeURIComponent(filePath)}`;
|
||||
};
|
||||
const url = buildMediaUrl(path);
|
||||
set({
|
||||
...initialState,
|
||||
backendUrl: backend,
|
||||
@ -304,7 +310,10 @@ export const useEditorStore = create<EditorState & EditorActions>()(
|
||||
|
||||
loadProject: (data) => {
|
||||
const backend = get().backendUrl;
|
||||
const url = `${backend}/file?path=${encodeURIComponent(data.videoPath)}`;
|
||||
const isWav = data.videoPath.toLowerCase().endsWith('.wav');
|
||||
const url = isWav
|
||||
? `${backend}/file?path=${encodeURIComponent(data.videoPath)}&format=mp3`
|
||||
: `${backend}/file?path=${encodeURIComponent(data.videoPath)}`;
|
||||
|
||||
let globalIdx = 0;
|
||||
const annotatedSegments = (data.segments || []).map((seg: Segment) => {
|
||||
|
||||
Reference in New Issue
Block a user