ep_audio_upload

1.0.8 • Public • Published

EP_audio_upload

This plugin is based on EP_image_upload.

Plugin to upload audios to Etherpad (https://etherpad.org/).

This uses image input to add audios to Etherpad, it's based on ep_copy_paste_images (https://github.com/JohnMcLear/ep_copy_paste_images) module but without drag drop functionality.

Supported storages:

  • Base 64 - default
  • Local (disk) storage
  • Amazon S3

Base64

Audios are converted to base64 and stored inside etherpad document Sample configuration in settings.json for using with base64:

"ep_audio_upload": {
    "fileTypes": ["mp3", "wav", "ogg"],
    "maxFileSize": 5000000
}

fileTypes - if left blank file mime-type is checked to match image.*

maxFileSize - file size in bytes. If not set there is no limit

Local (disk) storage

Local (disk) storage needs config for accessing files from web

Sample configuration in settings.json for using with local (disk) storage:

"ep_image_upload":{
    "storage":{
      "type": "S3",
      "accessKeyId": "YOUR_S3_ACCESS_KEY",
      "secretAccessKey": "YOUR_S3_ACCESS_KEY_SECRET",
      "region": "YOUR_REGION",
      "bucket": "BUCKET_NAME",
      "baseFolder": "FOLDER_PATH"
    },
    "fileTypes": ["jpeg", "jpg", "bmp", "gif","png"],
    "maxFileSize": 5000000
  },

baseFolder - Path to filesystem folder that is publicly accessible from browser. For example to add images to Etherpad subfolder then /path/to/my_etherpad_folder/src/static/images

baseURL - URL path to baseFolder. For example if baseFolder is /path/to/my_etherpad_folder/src/images" then http://myetherpad.com:9001/static/images/

fileTypes - if left blank file mime-type is checked to match image.*

maxFileSize - file size in bytes. If not set there is no limit

Amazon S3 storage

Sample configuration in settings.json for using with Amazon S3:

"ep_audio_upload":{
    "storage":{
      "type": "local",
      "baseFolder": "/var/www/images",
      "baseURL": "http://www.my-site.com/images/"
    },
    "fileTypes": ["jpeg", "jpg", "bmp", "gif","png"],
    "maxFileSize": 5000000 
  },

fileTypes - if left blank file mime-type is checked to match image.*

maxFileSize - file size in bytes. If not set there is no limit

"baseURL" -> URL path to "baseFolder". For example if "baseFolder" is "/path/to/my_etherpad_folder/src/images"thenhttp://myetherpad.com:9001/static/images/"```

Also button "addAudio" must be added under "toolbar" for example:

"toolbar": {
    "left": [
      [
        "bold",
        "italic",
        "underline",
        "strikethrough",
        "addAudio"
      ]
    ]
}

Readme

Keywords

none

Package Sidebar

Install

npm i ep_audio_upload

Weekly Downloads

10

Version

1.0.8

License

ISC

Unpacked Size

32.4 kB

Total Files

18

Last publish

Collaborators

  • cptnm3