Chrisj Posted May 20, 2021 Share Posted May 20, 2021 When this code, on an html page, is viewed, via mobile device, you can tap the screen and the mobile device recording full screen successfully appears: <form> ---- <input type="file" name="Upload" id="fileToUpload" accept="video/*" capture="user" onchange="submitForm();"> <input type="submit" value="Upload" name="submit" id="go" style="display: none;"/> ---- </form> how/what can I add so that the less than the full screen appears? Quote Link to comment Share on other sites More sharing options...
requinix Posted May 20, 2021 Share Posted May 20, 2021 You cannot control how the browser gets the video from a capturing <input>. If you need more control of that process then you'll have to get the video another way. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.