Renaming service function to mergeVideos

This commit is contained in:
AshAnand34
2025-07-11 15:15:39 -07:00
parent 49b0ecb318
commit f730c0548e
3 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ import { fetchFile } from '@ffmpeg/util';
// This function will use ffmpeg.wasm to merge multiple video files in the browser.
// Returns a Promise that resolves to a Blob of the merged video.
export async function main(
export async function mergeVideos(
input: MergeVideoInput,
options: InitialValuesType
): Promise<MergeVideoOutput> {