Skip to content

Commit

Permalink
accept webm + m4a files as fileinput
Browse files Browse the repository at this point in the history
  • Loading branch information
aldrinjenson committed Mar 31, 2024
1 parent 4219d72 commit 5865f24
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ui/src/components/Dropzone.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ export default function Dropzone({ setUploadedFile, uploadedFile }) {
onDrop,
accept: {
// "audio/mpeg": [".mp3", ".mpeg", ".mpga"],
// "audio/mp4": [".m4a"],
// "video/mp4": [".mp4"],
// "video/webm": [".webm"],

"audio/mp4": [".m4a"],
"video/webm": [".webm"],
"audio/wav": [".wav"],
"audio/mpeg": [".mp3"],
"video/mp4": [".mp4"],
Expand Down

0 comments on commit 5865f24

Please sign in to comment.