mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(server): support 3gpp format (#582)
* feat(server): support 3gpp format * feat(web): add 3gp ext * Support 3gp video format. video/3gpp mimetype added to supported video format. * feat(mobile): add tif ext Co-authored-by: Alexandre Bouijoux <alexandre@bouijoux.fr>
This commit is contained in:
parent
caa7b07398
commit
a81ef7497c
3 changed files with 8 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ export const openFileUploadDialog = (uploadType: UploadType) => {
|
|||
|
||||
fileSelector.type = 'file';
|
||||
fileSelector.multiple = true;
|
||||
fileSelector.accept = 'image/*,video/*,.heic,.heif,.dng';
|
||||
fileSelector.accept = 'image/*,video/*,.heic,.heif,.dng,.3gp';
|
||||
|
||||
fileSelector.onchange = async (e: any) => {
|
||||
const files = Array.from<File>(e.target.files);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue