'Is it possible to upload videos with filepond?

I am trying to use filepond in a Modal to upload image and video. The image uploading is working, but the video is not. So, I am not sure if filepond works with videos.

<div className='uploadMedia'>
              <div className='uploadImg'>
                <FilePond
                  files={image}
                  onupdatefiles={setImage}
                  allowMultiple={false}
                  maxFiles={1}
                 
                  name="imagePost" 
                  labelIdle= "Elige o arrastra tus imágenes"
                  className='imageInput'
                />
              </div>
              <div className='uploadVideo'>
                <FilePond
                  files={video}
                  onupdatefiles={setVideo}
                  allowMultiple={false}
                  maxFiles={1}
                  name="videoPost" 
                  labelIdle= "Elige o arrastra tu video"
                  className='videoInput'
                />
              </div>
            </div>



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source