I am working on a project where user can upload videos on my YouTube channel. I am using YouTube Direct Lite to create upload widget.
I wanted to know who will be the owner of those videos on YouTube?
According to YouTube DirectLite documentation :
The submission widget allows anyone visting your site to upload a new video to their own YouTube account from their hard drive, record a new video using their computer's webcam, or to submit a video that they've already uploaded for review.
Related
Though it is possible to get video information uploaded by a page, how do you get video info uploaded by a user which is publicly available?
This can be done when it is uploaded by a Page.
https://graph.facebook.com/VIDEO_ID/picture
https://graph.facebook.com/VIDEO_ID
But not when uploaded by a user.
I know this is possible because there are free online facebook downloaders that could grab the video of a user. Of course it should be publicly available.
Source: How to get Facebook video thumbnail from its video id?
At this time I'm able to upload Videos to my own YouTube channel on the back-end using API V3 with OAuth 2.0 seamlessly, the need I have is to notify users when they upload the same video twice. As far as I can see YouTube API V3 does not detects this issue until upload has finished. So this means that even if a video is a duplicated one, the upload will always succeed and then the YouTube interface will show the message: "ID Duplicated Video" to the right side of video list on my channel.
How can I read this info (ID Duplicated Video) through the API in PHP so that I can be able to notify user about this duplicated upload?
There is no interface to check if a user is uploading a duplicate video before uploading the entire file. Presumably, YouTube performs some kind of hash on the file after the upload has completed in order to check if it is a duplicate upload. Because the video file needs to be uploaded in its entirety for this check to happen, there is no way to check for a duplicate upload (currently) before an upload has completed.
I have requirement where I need to provide ui to my website users to upload video's on one common channel , Can anyone know, how can I implement it ?
I googled on it but get no result
I know all about You tube Data Api v3 and implemented it, but don't know how to implement it for my website such that all users can add their videos on my own channel.
I get blocked at authentication page because after login each user can add video on their own channel
What you want to do is only possible with YouTube Direct Lite. Basically user's will upload to their own channel but videos will be submitted to your playlist.
How to upload an audio file in facebook using graph api in php? use
feed or anything i can't figure out how to upload?
As far as I know this is not possible. You can only upload photos and videos. But you could host your audio objects on your site and share them via the Opengraph Audio ComplexType. See the reference here: https://developers.facebook.com/docs/opengraph/creating-custom-stories#propertytypes
I am developing a website, where I am allowing users to upload videos, but if the members numbers keep on increasing and they keep on uploading more videos it will be expensive for me. So I want to upload the movies to youtube instead, is this possible?
By viewing some other posts here, I am thinking it is possible?
You need Youtube API to upload the videos with PHP.
There are some ready scripts you can use to upload to youtube, the one that deserves mention here is:
PHPTube
More Resources
Use the YouTube API with PHP
YouTube Uploader
In addition to Sarfraz's links you also have the Services_YouTube PEAR package and the Zend_Gdata_YouTube class. They are both very well documented.