I need to upload webcam recording live video on the Vimeo server.
One way I am trying is get the video blobs periodically and upload it to the server but I couldn't able to find the API details in the Vimeo documentation.
Related
Can I use Vimeo in my web application to record a video from my laptop which is connected to a camcorder ? Camcorder exposes JAVA API's which supports START / STOP / Zoom-in and all other camera options.
Vimeo was not created to record a video. It's just a video hosting platform similar to youtube but for professionals.
You need to be doing the recording and then use either their interface or their API to upload a video.
In your case, you could imagine creating an intermediate application that connects to your Camcorder's exposed API, gets the recorded video, and uploads it using Vimeo's API.
Here is an official list of libraries and sdk's that Vimeo proposes to simplify the API usage.
I'm working on building an HTML5 video player that will have the support of payments. This means that the video file should not be accessible freely.
It's very straightforward when the video file is stored on my own server where the player just accesses it locally and streams it after the payment is made. Now I want to be able to provide this player for other people to be able to embed their video files on their own website and streamed through my player.
I would like to avoid having them upload their videos to my server. Is there any way for them to stream through my video player but host it on their own server? From what I understand, they can't add the url to the src of the video player because then anyone can get access to the video file directly for free by just going to the url.
i havel livestream php project ... isearched about webcam publisher to wowza and found this https://github.com/arut/nginx-rtmp-module/
but it have publish button i can not remove it as it build with action script
and find that https://github.com/AF83/webcam-streaming
but its video quality very bad
and two have same problem that request flash allow at every starting stream
now i want any webcam publisher built in html5 searched alot but all anserwer not completed ot i not able to understand
When having users upload videos to my vimeo via a form in a WordPress blog, can vimeo return the video URL (to use in the code) before the video upload is actually finished?
No, this is not possible.
The resources required to define an upload url are all created during the completion step of an upload (in POST uploads this is the first redirect to vimeo.com, in PUT uploads this is the DELETE request).
This allows us to verify that you have uploaded a video (and not a text file, or image), and verify that the upload has completed, and is successful, before assigning a URL.
I have a website that has a web page with a html5 video-tag, and the user can supply a URL, and it will play in the video-tag.
The webpage uses JavaScript commands that control the video-tag - for instance, it can pause the video, move to a different point in the video, etc.
It works fine with the cloud. Videos stored on Microsoft Azure can be used, for instance (Azure gives you a way to get a URL to any video on your cloud storage, and streams it too).
However, I have users that store videos on Google-drive, and also on Microsoft One-Drive.
From what I can see, I can play these videos, but only in a page (probably with Google's own player in it) on their site.
It seems that there is no way to get a URL to these videos that I can put in a video tag.
Without the ability to do that, I can't use the javascript commands that work with the html5 video-tag.
Is there any workaround?
Or am I missing something?
Thanks.
For playing videos that are stored in google-drive using your app:
you need oauth2 credentials to access the user's drive, but assuming you have the oauth part covered :
you can create a drive application as a google appengine app and deploy it in a part of your website.
enable the drive-sdk and set the open-url to your website (that you have verified)
-> basically this tells drive to redirect towards your website whenever the user clicks on the video (from his drive)
when drive redirects to your website a json file will be sent, you'll have informations such as fileId from there i think you can execute the method files().get() to retrieve the necessary information for you to play the video
I advise you to take a look at this course in codeschool.