Remove all video files and use github instead

This commit is contained in:
Jerome Wu
2023-08-22 22:31:40 +08:00
parent 0a96b78c74
commit 9ab958d822
7 changed files with 7 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ import FileSystemManager from "./FileSystemManager";
import { SAMPLE_FILES } from "../const";
import Editor from "./Editor";
const defaultArgs = JSON.stringify(["-i", "video.avi", "video.mp4"], null, 2);
const defaultArgs = JSON.stringify(["-i", "video.webm", "video.mp4"], null, 2);
interface WorkspaceProps {
ffmpeg: MutableRefObject<FFmpeg>;

View File

@@ -12,6 +12,6 @@ export const CORE_SIZE = {
};
export const SAMPLE_FILES = {
"video.avi":
"https://raw.githubusercontent.com/ffmpegwasm/testdata/master/video-3s.avi",
"video.webm":
"https://raw.githubusercontent.com/ffmpegwasm/testdata/master/Big_Buck_Bunny_180_10s.webm",
};