This support forum is no longer in use. Please use the Cloudinary Community at https://community.cloudinary.com/ to receive assistance from other members of the community and from Cloudinary's support team. For account-specific questions or if you believe that you've encountered a bug, please contact the Cloudinary team directly via the "submit a request" option on this support site.

Uploading of video files

Answered

Comments

1 comment

  • Avatar
    Itay Taragano

    HI Tad.

    Non-image files, including video files, can be uploaded to all of our accounts, free and paid, and are handled as 'raw' files ( http://cloudinary.com/blog/using_cloudinary_to_manage_all_your_website_s_assets_in_the_cloud).

    Though you can upload all file types from both the API and the management console, currently the web interface of the management console's media library shows images only.

    You can use our admin API call in order to list your uploaded 'raw' files:

    Cloudinary::Api.resources(:resource_type => :raw)

    You can also get a single resource details based on a given public ID, for example:

    Cloudinary::Api.resource('rwkaliebnufp3bxyrvyo.wmv',:resource_type => :raw)

    For delivery, the returned public ID of the upload API call should be used.

    Here's a URL example , notice the '.../raw/upload...' :

    http://res.cloudinary.com/demo/raw/upload/rwkaliebnufp3bxyrvyo.wmv

    0
    Comment actions Permalink

Post is closed for comments.