I have a hosted a azure api service and able to successfully upload the videos through my code under a folder "UserVideos" when i am trying to refer the link of uploaded video in video tag it is not working.
The video also does not get downloaded using this url in any browser.
http://abcorg.azurewebsites.net/UserVideos/VID20190605102000.mp4
Any help will really be appreciated
below is the way i have refereed the video url in video tag.
Related
It is possible to upload a file from a URL using OneDrive's REST API as documented here. This API accepts the URL we provide and uploads the file from the URL to the intended destination.
I have been trying to find a similar REST API or library for Google Drive, but I couldn't find it yet. Kindly direct me on how to achieve this. I have already set up oAuth and am able to receive access_token and refresh_token. Uploading files from URL is an important functionality in this project.
The project is hosted in Heroku, so I can't download the file to a temporary file and upload that file. It is a NodeJS project.
I'm also looking for this solution. however, what I understand from other blog and articles is you have to download File from provided URL on your server then upload it to google drive.
As of now, i understand this. Will update this if I able to do this.
I think you are unable to use OneDrive's REST API on Google Drive since most such services are self-used only.
Yet, i know a third party online app which enables you upload files to most common cloud drives (Google Drive, OneDrive, Dropbox, Mega, etc.) from URL links. What you have to do is to create an account of this web-based app, add your cloud to its platform and import/export files to your cloud through its service. Maybe it can help you.
guys!
My question might be really dumb, but is it possible to playback Youtube and Vimeo URLs with Azure Media Player?
As for now, I was able to play only manifest and mp4 URLs from my Azure Media Services account. But does it supports Youtube and Vimeo URLs?
No it is not possible using the AMP settings alone for the video element tag, but you can always have condition to use different settings on the video element on each platform.
I am developing chat application REST API, and I want to upload all files (i.e. images, audio, video etc) on Google Cloud Storage.
I got the library files form the documentation of google cloud, and using it in POST method API.
Here is my code ref
https://medium.com/google-cloud/upload-images-to-google-cloud-storage-with-react-native-and-expressjs-61b8874abc49
It's not uploading the image to google cloud.
I have deployed my first site on azure, it is a website with static content only.I have the video and html file in the same dir, which is wwwroot I have provided a video path in the index.html like this
<video loop muted width="1024" height="768" autoplay style="width: 101% !important;height: 100% !important;margin-top: -2%;margin-left: -1%;">
<source src="intro.mp4" type="video/mp4">
</video>
And its playing properly on local as i checked, but once i deployed the content to azure, the other content load but the video does not loads, and it gives 404 as i checked in the network tab.
Also the request url in network console is www.mywebsite.com/intro.mp4 and it is 404 not found
I could not understand why is this happening , please help
Azure Web App does not support some of the media files for direct deployment. Currently, I know SVG images and videos will not work in Azure Web App if you have them deployed directly along with the web app. And, I can't find any documents talking about this kind of things.
Hence, my suggestion is using Azure Media Service. If you don't think Azure Media Service is necessary, you can just upload the video to Azure Storage as a blob and set the access policy of the container to be public. And then, you can refer the video with the corresponding URL.
For more information about Azure Storage and Blob, see Get started with Azure Blob storage using .NET
After some digging, I found out that if you are using asp.net, it's possible to config the web app so that it support video. Here is a similar question as yours. For web app other than asp.net, I have no idea how to config something like this.
I'm using a wordpress template and have multiple media uploaders. When they embedd/insert their content from the media library, they should only be able to see and embedd their uploaded content. My goal is to host the website in Azure and also use its media services for video content. Is there an elegant frontend way with wich users can upload their content an reembedd it after transcoding?
I think that there is no plugin that supports directly Azure Media Services encoding workflows in WordPress.
Maybe you can do it in a few steps :
Use the WordPress Azure Storage plugins to upload your files : https://wordpress.org/plugins/windows-azure-storage/
Use an Azure WebJob to trigger encoding as soon as a file is uploaded in the storage : https://github.com/Azure/azure-content/blob/master/articles/app-service-web/websites-dotnet-webjobs-sdk-storage-blobs-how-to.md and https://azure.microsoft.com/en-us/documentation/articles/media-services-dotnet-encode-asset/
Display the video on your site, using Azure Media Player : http://amsplayer.azurewebsites.net/
Hope this helps,
Julien