diff --git a/README.md b/README.md index 1163f19..52acdb5 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@

- Supports: Image Cropping, Video Previews, Document Previews, Drag & Drop, Multiple Files & More... + Supports: Image Cropping, Video Previews, Document Previews, Drag & Drop, and more...

Full DocumentationHeadless SDKMedia Processing APIsStorageCDN @@ -377,7 +377,7 @@ import { UrlBuilder } from "@bytescale/sdk"; #### Raw Files -To get the URL for the uploaded image `/example.jpg` in its original form, use the following params: +To get the URL for the uploaded image `/example.jpg` in its original form, use the following: ```javascript // Returns: "https://upcdn.io/1234abc/raw/example.jpg" @@ -389,7 +389,7 @@ UrlBuilder.url({ #### Images -To resize the uploaded image `/example.jpg` to 800x600, use the following params: +To resize the uploaded image `/example.jpg` to 800x600, use the following: ```javascript // Returns: "https://upcdn.io/1234abc/image/example.jpg?w=800&h=600" @@ -410,7 +410,7 @@ UrlBuilder.url({ #### Videos -To transcode the uploaded video `/example.mov` to MP4/H.264 in HD, use the following params: +To transcode the uploaded video `/example.mov` to MP4/H.264 in HD, use the following: ```javascript // Returns: "https://upcdn.io/1234abc/video/example.mov?f=mp4-h264&h=1080" @@ -431,7 +431,7 @@ UrlBuilder.url({ #### Audio -To transcode the uploaded audio `/example.wav` to AAC in 192kbps, use the following params: +To transcode the uploaded audio `/example.wav` to AAC in 192kbps, use the following: ```javascript // Returns: "https://upcdn.io/1234abc/audio/example.wav?f=aac&br=192" @@ -452,7 +452,7 @@ UrlBuilder.url({ #### Archives -To extract the file `document.docx` from the uploaded ZIP file `/example.zip`, use the following params: +To extract the file `document.docx` from the uploaded ZIP file `/example.zip`, use the following: ```javascript // Returns: "https://upcdn.io/1234abc/archive/example.zip?m=extract&artifact=/document.docx"