In my understanding, you have to change neither.
If you just store the video files using move_uploaded_file
, you will not need to increase your max_execution_time
as upload time does not count towards execution time.
The manual says the following about max_input_time
(emphasis mine):
This sets the maximum time in seconds a script is allowed to parse input data, like POST, GET and file uploads.
I have not tested this, but to me this sounds like it doesn't include the actual time the client spends uploading the file, just the time it takes to copy it to the temporary directory. I can't vouch for this though, and I can't find any info on it. The default of 60 seconds should be ample time to parse many hundreds of megabytes of files.
I'd recommend to find out the perfect value using real-life tests. If your connection is too fast, use a tool to slow it down. See this SO question for suggestions:
Network tools that simulate slow network connection