Reputation: 1072
Where I can see sample of playing video uploaded to Windows Azure by Flash player with playback?
Upvotes: 1
Views: 813
Reputation: 84
We recently release Azure Media Player (http://azure.microsoft.com/blog/2015/04/15/announcing-azure-media-player/).
The demo site is located at http://aka.ms/azuremediaplayer.
The player automatically picks the right tech (flash, silverlight or html5) and best format from Azure Media Services automatically. If you want to specifically try Flash you can go advanced options in demo and choose it. This can also be done via docs - http://aka.ms/ampdocs.
Upvotes: 2
Reputation: 31
Sampler player is here
To implement it in your application,
Option 1) Your own Player:
For this you can go with platform specific URL+Player as mentioned here or here.
Option 2) Use JWPlayer
Option3) AMS is Rolling out new player - Lets wait for that.
Upvotes: 0
Reputation: 1263
In Azure portal:
Edit:
copy/paste Publish Url property column value to src=""
<video width="500" height="300" controls autoplay="false">
<source src="">
</video>
Upvotes: 0