How to remove Take Video Option on input type file in iOS?

I am using below code in one of my html page.

<input type=“file” formControlName=“file” (change)=“onVideoSelected($event)” accept=“video/*”>

I only need to upload a video from the gallery. But this is giving an option as Take Video. I need to disable that option only need to keep other options.

Is it possible to achieve this ?