import { get } from '@/api/base' import TcVod from "vod-js-sdk-v6" interface OnFunctio { (info: unknown): unknown; } interface UploaderDone { fileId: string; video: { url: string; verify_content: string; }; } export async function uploadflie(file: File,on?: OnFunctio): Promise { const getSignature = () => { return new Promise((res) => { get('signature').then((data) => { console.log(data) res(data.data) }) }) } // const res = await get('signature'); // console.log(res.data) const tcVod = new TcVod({ getSignature: getSignature }) const uploader = tcVod.upload({ mediaFile: file }) if(on != undefined){ uploader.on('media_progress', (info) => { on(info) }) } const data = uploader.done(); return data; }