I am working on the admin section of a website in codeigniter. I am using Grocery CRUD for the
add edit delete operations. I've used 'set_field_upload' function to provide a video upload field inside the form. I need to add a thumbnail for the video, so require another upload field.
Is it possible to implement multiple upload field inside the form using grocery crud? Are there any other methods to create thumbnail other than ffmpeg ?
Asked
Active
Viewed 2,356 times
0

i_nomad
- 795
- 2
- 7
- 9
1 Answers
2
I recommend invoking ffmpeg
on the server once the upload is complete using PHP's exec()
. Have a look at these SE answers for some ideas:
Temporarily store the images generated by ffmpeg
, echo their paths back to the client using AJAX and have them select the one they wish.

Community
- 1
- 1

Jordan Arsenault
- 7,100
- 8
- 53
- 96