Skip to main content

Comments

2 comments

  • Loic Verger Del Bove

    Hi Adabel,

    If you are using the UI, you can just drag and drop those files in your own Media Library. If you are using one of our SDK, you will have to use the `resource_type:video` for both videos and audio as explained [here](https://cloudinary.com/documentation/upload_images#asset_types).

    Here is an example in NodeJS:

    cloudinary.uploader.upload("path-to-mymp4file/file.mp4", 
    { resource_type:"video" },
    function(error, result) {console.log(result, error); });

    Hope it helps.

    Best,

    Loic

    0
  • Adabel Berdina

    Thank you for explaining this.

    0

Post is closed for comments.