0
votes

I am uploading video(.wmv) on azure programmatically .I am getting error "Windows Azure Media Encoder detected media errors on source videoname.wmv:File type isn't supported" and "ErrorExecutingTaskUnsupportedFormat"

1
Can you please post your code on how the upload is working and also are you sure it is a valid WMV. Just because the extension is, doesn't mean it actually is. Speculating, I would say that your file is being uploaded incorrectly hence delivering a file that Azure can't decode.Adam
Case 1-In my case i am converting wmv file into bytes and then uploading bytes in blob ,asset is getting created but while encoding it gives above error but in case of .mp4 format asset is getting created and encoded properly. Case2-if i am uplaoding specifying the direct path of wmv for eg ("C:\\myfolder\video.wmv) in this case it is getting uploaded ,encoded properlyuser3747179
Can you please provide the code you are using to upload. Both the working version and the non-working version.Adam

1 Answers

1
votes

To the close on this question, Azure Media Services supports WMV as input format - very likely you are not uploading file correctly.The following quickstart uses Azure Media Services .NET SDK Extensions to upload a wmv file and encode it to H264 adaptive bitrate MP4 set.

http://msdn.microsoft.com/en-us/library/dn569319.aspx .