Skip to content
main
Switch branches/tags
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Obsidian Cloudinary Uploader

Downloads

Documentation

Documentation

What is it?

Cloudinary is a cloud storage platform that allows you to upload various media files to a storage account. The media files within this storage account can then be manipulated using Cloudinary's APIs to manipulate the data properties and metadata.

This plugin allows you to automatically upload images pasted to Obsidian directly into your Cloudinary account (instead of stored locally). Note: There is no functionality for media manipulation in this plugin.

How it Works

Action GIF

Configuration

  1. Disable Obsidian Safe Mode
  2. Install the Plugin
    • Install from the Obsidian Community Plugins tab
    • Manual install
      • Clone this repo
      • Install dependencies with yarn or npm
      • npm run dev will start compilation
  3. Enable the Plugin
  4. Configure the settings and set your:
    • Cloud Name
    • Upload Preset Name (Set that here)
    • Set a Folder Name

Unsigned vs. Signed Uploads to Cloudinary

The uploads to Cloudinary are unsigned. You can read more about that here. A signed upload would require the use of an API key and secret, and I opted against asking for that in the plugin configuration, as a choice for security reasons.

Thanks

Special thanks to:

  1. @Creling and their repo here. As this was my first time creating an Obsidian plugin, their base really helped.
  2. Obsidian Unofficial Plugin Developer Docs