Questions tagged [video-upload]
62 questions
0
votes
1 answer
How to upload video on laravel
i am trying to upload video on my laravel project it didn't uploading but when i am trying to upload images it will works perfectly
{
$request->validate([
'file' => 'required',
]);
$fileName = time();
…

Ram Sharma
- 60
- 1
- 8
-1
votes
2 answers
How to optimize video upload from local storage
I'm currently researching any ways to speed up large (~1.5-2Gb) videos from user desktop via browser to the website.
So far I found out that video compression on client sadly is not the best option, although the result is not so bad (19Mb MOV was…

John Doe
- 57
- 8