Reputation: 73
I want to upload video using summernote. I know that, as of now Summernote is allowing only video link's. Is there any way to achieve upload a video like image upload.
Like binding jquery video uploading plugin with sumernote something like that?
Thanks.
Upvotes: 1
Views: 3208
Reputation: 3008
summernote does not handle any backend things. And actually, uploaded images are encoded in base64
and embedded in text itself. This is not suitable for larger images and videos.
I suggest you to make own backend stuff for storing videos. You can use jquery-file-upload
or similar plugins to handle large file uploading.
Upvotes: 1