You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using the Upload function from the IAssetFile Interface for a couple of days now, to upload to azure media services.
However today it has stopped working.
I have narrowed down that error is coming from the Upload(Stream stream) function. I.e. something is going wrong during the uploading. And because of that whenever I start a job on Azure Media Services it always returns the following error:
The first error is when I run "Azure Media Redactor" and the second one is when I run "Media Encoder Standard"
Both of these were working previously. I have not touched my code.
foreach (var content in provider.Contents)
{
// Upload as an asset to Azure Media services
IAsset asset = await _service.CreateAssetAndUploadSingleFile(content, "Input Asset");
}
Here is my CreateAssetAndUploadSingleFile Function:
Once I upgraded windowsazure.mediaservices to version 4.1.0.1, and called the upload function where the signature is simply a Stream, it was uploading zero bytes.
However the same code, with version 4.1.0.0, uploads correctly.
If this repo is not the one in which I should comment, please let me know in which repo I should post my problem.
I have been using the Upload function from the IAssetFile Interface for a couple of days now, to upload to azure media services.
However today it has stopped working.
I have narrowed down that error is coming from the
Upload(Stream stream)
function. I.e. something is going wrong during the uploading. And because of that whenever I start a job on Azure Media Services it always returns the following error:The first error is when I run "Azure Media Redactor" and the second one is when I run "Media Encoder Standard"
Both of these were working previously. I have not touched my code.
Additionally here is the link to the question I asked on stackoverflow:
https://stackoverflow.com/questions/48031430/azure-media-services-strange-beheviour
Here is the code I use to upload assets:
Here is my CreateAssetAndUploadSingleFile Function:
The text was updated successfully, but these errors were encountered: