Piyush Mahurkar

Piyush Mahurkar

  • NA
  • 104
  • 19.6k

How to download 1Gb video from Azure Block blob

May 13 2016 5:18 AM
Hi ,
I am trying to download 1GB video from azure blockblob to memory stream .
 error occure System.OutOfMemoryException.
Code:
 
MemoryStream memoryStream = new MemoryStream();
 
CloudBlockBlob blockBlob = container.GetBlockBlobReference(path);
myblock.DownloadToStream(memoryStream); 
 
please help 

Answers (1)