How to upload video from android
Is it possible to upload video directly from android? I have been using the cloudinary library to upload images from my app and want to extend the feature to include video.
Thanks!
-
Hi,
Sorry for the very late reply, we have noticed that this request was left unattended. I guess this is not relevant anymore but for future reference -Of course:)
It is similar to image upload, just need to set the resource_type to video -
cloudinary.uploader().upload("video.mp4", ObjectUtils.asMap("resource_type", "video"));
0 -
Hello, does cloudinary.uploader() accepts inputs like large videos over 100mb? I need something like "upload_large" like in Rails.
0 -
Hi Pia,
We have uploadLarge method in android. Here is a link: https://github.com/cloudinary/cloudinary_android/blob/52f612044c85256babe5a579d629d95a1d6657b1/lib/src/androidTest/java/com/cloudinary/android/UploaderTest.java
0 -
Can't say I can find the upload large file method on Android SDK?
How do I go about chunked parallel uploading of videos?
0 -
Hi Yarden,
The link Aditi included above links to a test in our SDK code which demonstrates the use of the large file uploader.
The method itself is used like: cloudinary.uploader().uploadLarge()
You can use the same method for videos and images
0
Post is closed for comments.
Comments
5 comments