Questions tagged [azure-media-player]

65 questions
0
votes
2 answers

Azure Media Player events now working for React Component

I tried to create a React component to play Azure Media Services content and it works to play, but not to capture events. This is the code of my component: import React, { useEffect, useRef } from 'react'; import { Helmet } from…
0
votes
1 answer

How do I play a video hosted in Azure's blob container using React Azure media player?

I have static website in Azure and have uploaded video.mov to its $web container. I have a react app that successfully plays videos using, React Azure media player: const reactAzureMp = require('react-azure-mp'); const { AzureMP } =…
schoon
  • 2,858
  • 3
  • 46
  • 78
0
votes
1 answer

Azure media player does not work if "azuremediaplayer.min.js" is not included in the file

I am trying to integrate azure media player in my android app. It didn't work what I pass manifest url to videoView along with .ism/manifest(format=m3u8-aapl-v3) So I decided to play it on chrome for testing. The issue is video does not work if i…
dev90
  • 7,187
  • 15
  • 80
  • 153
0
votes
1 answer

Generating a JWT token for Azure Media Services

I am experimenting with DRM in Azure Media Services but I am having some problems with the JWT token. In order to generate a JWT token for testing in https://ampdemo.azureedge.net/ I am using https://jwt.io/. In the payload box I have: { "iss":…
caztanj
  • 3
  • 1
0
votes
1 answer

Azure Media Services Streaming Allowed IP Addresses not working

I was able to list IP addresses and only allow them to play videos previously. For some reason, this no longer working now. The IPs that I am using is of a VPN. Could that be an issue? If I list a non-VPN IP it does seem to work fine.
Naveen
  • 71
  • 5
0
votes
3 answers

Azure media player source manifist

We are very small junior school private tutors have setup of an online portal where students can login and watch the daily video lectures. We have many videos uploaded to Azure media services but we realized the encoding cost is high and not…
Kishan
  • 85
  • 1
  • 7
0
votes
1 answer

Azure Media Services - allow streaming to specific domain

How can I secure the on-demand streaming from Azure Media Services to a specific domain only? E.g. if you are using the Azure Media Player on www.domain1.com - you can watch the videos, but if you are on www.whatever.com then the video should not…
0
votes
1 answer

Azure Media Services Merging Multiple videos with one audio stream

I trying to build a bit of a complex solution using Azure Media Services. We have around 1000+ small video files, We will be pushing all these asserts to AMS using an automated job and generate around 10 video files which combine 5 out of 1000…
Venkata K. C. Tata
  • 5,539
  • 4
  • 22
  • 35
0
votes
1 answer

Is it possible to select a quality for the azure media player using its javascript API?

Looking to implement azure media player for a project. But we need to use our existing custom video controls. Is it possible to control the quality selector by javascript? Have not been able to find anything concerning this in the documentation..…
0
votes
2 answers

Cordova app not open azure media player video

I have an app made in VueJS with Quasar framework that has a tag that opens an Azure Media Player video. It works perfectly in the browser but when compiling with cordova for android it doesn't play the video in the apk, apparently it doesn't load…
0
votes
1 answer

Azure media player in Angular 6

I have created a basic setup: added these cdns in index.html I…
DeadlyDagger
  • 109
  • 1
  • 12
0
votes
2 answers

Azure Media Player - Continue the Playback Where Left Off

I was wondering does Azure Media Player has some Netflix-like continue the playback where left off feature or plugin, do implement into the my MVC app?
0
votes
3 answers

JWT token validates correctly, but fails Azure media AES with AuthorizationPolicyEvaluationFailure error

I've setup a simple Azure function to test out Azure media services. I'm trying to protect a video I uploaded, but I can't seem to get the JWT right. Here's the simple function code. [FunctionName("Test")] public static async…
Matt
  • 6,264
  • 10
  • 54
  • 82
0
votes
1 answer

Azure Media Services V3 : Encoded Audio File not able to play in Azure Media Player

My Video file encoding and playing has been working well, but encoded Audio only files are not able to play in Azure Media Player. In Media player, it shows the initial loading circle, but never starts playing the audio. Below is the Transform…
amsDeveloper
  • 177
  • 4
  • 14
0
votes
1 answer

Azure Media Player in Blazor

I was trying to get the Azure Media Player running in Blazor - no success. Everything works fine in an Asp.net core project. In Blazor its always the normal Html player. Tried it with diffrent browsers - always the same. It must have something to…