On my web page, I have an input tag that restricts the content type to be only video.
With the new photo picker in iOS 14, I noticed the following behavior:
After selecting the video I want to upload from the grid, I am presented with a page that allows me to scrub the video before finalizing my selection by tapping "Choose".
On iOS 13, there was a play button in the center of the bottom toolbar to preview the video.
On iOS 14, this play button is gone. This means there's no way to preview the video except by scrubbing through the frames with the top slider bar. This isn't ideal because it's a choppy experience and the user cannot preview the audio.
After some testing, I noticed that multi-select input tags do allow videos to be played, so it seems to be a bug with single select inputs.
Can anyone confirm if this is a bug and whether there is a workaround?
Code Block HTML <input id="file-input" type="file" accept="video/*"/>
With the new photo picker in iOS 14, I noticed the following behavior:
After selecting the video I want to upload from the grid, I am presented with a page that allows me to scrub the video before finalizing my selection by tapping "Choose".
On iOS 13, there was a play button in the center of the bottom toolbar to preview the video.
On iOS 14, this play button is gone. This means there's no way to preview the video except by scrubbing through the frames with the top slider bar. This isn't ideal because it's a choppy experience and the user cannot preview the audio.
After some testing, I noticed that multi-select input tags do allow videos to be played, so it seems to be a bug with single select inputs.
Can anyone confirm if this is a bug and whether there is a workaround?