Questions tagged [azure-media-services]

Microsoft Azure Media Services is an extensible cloud-based platform that enables developers to build scalable media management and delivery applications. Media Services is based on REST APIs that enable you to securely upload, store, encode and package video or audio content for both on-demand and live streaming delivery to various clients (for example, TV, PC, and mobile devices).

806 questions
3
votes
1 answer

Video Indexer API INVALID_INPUT - indexing preset 'DefaultWithNoiseReduction' is invalid

I have been using Video Indexer API to upload video from my application for some time now, and since yesterday I start encountering the INVALID_INPUT error. Here's how I am calling the POST upload API in Python: vi_location =…
Bk Lim
  • 1,436
  • 1
  • 10
  • 7
3
votes
0 answers

Is it possible to provide a URL that returns an m3u8 file to azure media player?

I'm using azure media player to play AES encrypted videos on my website. However, I don't want to use the default HLS streaming uri that comes back. What I'm doing is loading the m3u8 from the HLS endpoint and adding captions to it directly (Since…
3
votes
1 answer

Azure Media Services - FairPlay configuration shows - Certificate validation failed

I have already setup DRM for Widevine and Playready. It is working perfectly. Now I also want to enable FairPlay. But when I am trying to add the App Certificate to FairPlay Configuration in Content Protection blade in Azure Media Services it does…
3
votes
1 answer

Transcoding mxf video file with CopyAudio in Azure Media Services v3

We are using Azure Media Services V3 API to transcode video files of various input formats into mp4 output. In case we have a mxf input file we receive the following exception when trying to transcode video with audio codec 'CopyAudio'): Azure Media…
Joeri
  • 31
  • 2
3
votes
1 answer

Cannot find namespace 'amp'

I am writing a React/TypeScript project that uses Azure Media Player. Per the docs under Referencing the Player, I should be able to reference the player like this: var myPlayer = amp('vid1'); I then get a compiler error: TypeScript error in…
3
votes
2 answers

How to implement Captioning in Azure Media services V3?

How to complete captioning in azure media service 3by using .net SDK I am using Azure Media Services v3 tutorials (https://github.com/Azure-Samples/media-services-v3-dotnet-tutorials) but missing How to update a video caption file(vtt file) into a…
3
votes
2 answers

Azure Media Service REST API error MissingApiVersionParameter

I am trying setup media service pipeline via rest services using https://learn.microsoft.com/en-us/azure/media-services/latest/stream-files-tutorial-with-rest Section : Encode remote file stream video – REST We are getting an error at mentioned…
Sujeet Kumar
  • 1,280
  • 1
  • 17
  • 25
3
votes
2 answers

Trying to integrate Azure media player in React JS. but Azure dependent JavaScript lib function doesn't found "amp"

This is my react js file code to render media player. componentDidMount() I imported js file on a load of this page and at the time of render call 'amp' function with options parameter. componentDidMount () { const script =…
3
votes
0 answers

Get azure media service job progress in percentage

I am using azure media service .net SDK. I have uploaded video and try to encode it. I want encoding progress in percentage. Following code i use. string message = "Encoding percentage complete"; double progress = 0; // encode…
jpatel
  • 125
  • 10
3
votes
2 answers

C# - Encode video with Azure Media Services asynchronously and handle task complete

I have an ASP.NET MVC web application and I want to encode a video using Azure Media Services. Since this process lasts too long, I need to run it asynchronously so I don't keep the user waiting for this action to be processed. Also, I need to…
mihai94stk
  • 69
  • 1
  • 4
3
votes
1 answer

azure media services - The request body is too large and exceeds the maximum permissible limit

I am using the java SDK and followed the example on: https://learn.microsoft.com/en-us/azure/media-services/media-services-java-how-to-use However, using this example, for files larget than ~65MB I got the following error: RequestBodyTooLargeThe…
rogerpt
  • 59
  • 1
  • 1
  • 5
3
votes
1 answer

Azure Media Services Encoding Job Callback to URL

Using only the REST API, I am able to upload a file to Azure Media Services from my local machine and start an encoding job. Then I need to poll the job for status to see when it is done. But, what I really want is for Azure Media Services to send a…
robbpriestley
  • 3,050
  • 2
  • 24
  • 36
3
votes
2 answers

Azure Functions Method not found error

I'm trying to setup an azure function that imports a blob into azure media service. But when i try to run the function in debug mode some breakpoints are never hit and then i get this error Microsoft.Azure.WebJobs.Host.FunctionInvocationException…
3
votes
0 answers

Azure Media Services Encoding mp3 Failure

I submitted a multi-hour mp3 file to the Media Services blade in the Azure Portal to generate text transcripts; upload and click [Analyze]. The job hung at 50% for about an hour, and then gave the error ErrorProcessingTask …
Snowy
  • 5,942
  • 19
  • 65
  • 119
3
votes
1 answer

Azure media services sdk returns error on encoding to Adaptive Bitrate MP4 Set

Im new on Azure media services and trying it through php. I am able to upload the file on remote using Multiple Bitrate but it shows not supported. It does generate the URL to access it but shows a MPE_FEATURE_USAGE_FORBIDDEN, i have also enabled…
sajawalsz
  • 91
  • 7
1 2
3
53 54