From 68aee59fe46ef11f86addb0a2b13a42bbb0e0fb9 Mon Sep 17 00:00:00 2001 From: emadehsan Date: Fri, 25 May 2018 05:47:35 +0500 Subject: [PATCH] Update README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d400e6..6f97903 100644 --- a/README.md +++ b/README.md @@ -35,4 +35,8 @@ let streamingUrl = await GaleCrater.transcode(filename, filepath); You can append this `streamingUrl` with filename excluding extention plus `.ism/Manifest` for Smooth Streaming Protocol's manifest file. With `.ism/Manifest(format=m3u8-aapl)` for HLS's manifest. And with `.ism/Manifest(format=mpd-time-csf)` for DASH manifest. -Once you have the link to DASH Manifest, [you can test the Adaptive Bitrate streaming here](http://mediapm.edgesuite.net/dash/public/nightly/samples/dash-if-reference-player/index.html) \ No newline at end of file + +Once you have the link to DASH Manifest, [you can test the Adaptive Bitrate streaming here](http://mediapm.edgesuite.net/dash/public/nightly/samples/dash-if-reference-player/index.html) + +## Larger File Upload +Files larger than 100 MBs are uploaded in chunks via [Azure Storage PUT Block Blobs (REST APIs)](https://docs.microsoft.com/en-us/rest/api/storageservices/put-block). Each chunk (block) can be at most 4 MB in size. Default is 4 in the code. \ No newline at end of file