wip
This commit is contained in:
parent
9fb25cd860
commit
f88592f72b
@ -15,16 +15,6 @@ function select(src: any, label: string | null, multiple: boolean): Promise<Driv
|
|||||||
const input = document.createElement('input');
|
const input = document.createElement('input');
|
||||||
input.type = 'file';
|
input.type = 'file';
|
||||||
input.onchange = () => {
|
input.onchange = () => {
|
||||||
const promises = Array.from(input.files).map(file => os.upload(file, defaultStore.state.uploadFolder));
|
|
||||||
|
|
||||||
Promise.all(promises).then(driveFiles => {
|
|
||||||
res(multiple ? driveFiles : driveFiles[0]);
|
|
||||||
}).catch(e => {
|
|
||||||
os.alert({
|
|
||||||
type: 'error',
|
|
||||||
text: e
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const readFromBlobOrFile = (blob) => (
|
const readFromBlobOrFile = (blob) => (
|
||||||
new Promise((resolve, reject) => {
|
new Promise((resolve, reject) => {
|
||||||
@ -55,6 +45,17 @@ function select(src: any, label: string | null, multiple: boolean): Promise<Driv
|
|||||||
os.upload(aftFile, defaultStore.state.uploadFolder).then(res).catch(e => {os.alert({type: 'error', text: e})});
|
os.upload(aftFile, defaultStore.state.uploadFolder).then(res).catch(e => {os.alert({type: 'error', text: e})});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const promises = Array.from(input.files).map(file => os.upload(file, defaultStore.state.uploadFolder));
|
||||||
|
|
||||||
|
Promise.all(promises).then(driveFiles => {
|
||||||
|
res(multiple ? driveFiles : driveFiles[0]);
|
||||||
|
}).catch(e => {
|
||||||
|
os.alert({
|
||||||
|
type: 'error',
|
||||||
|
text: e
|
||||||
|
});
|
||||||
|
});
|
||||||
|
os.toast('Try use FFmpeg.wasm')
|
||||||
ffmpegconv(input.files[0]);
|
ffmpegconv(input.files[0]);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user