In my website i got succeeded in embedding videos from YouTube but i'm not getting the comments made on that videos. So is there any way to get that comments embedded with the video in my website. Thanks in advance.
Th easiest way to access YouTube data, without authentication or the YouTube API, is by using the YouTube Query URLS.
For Comments, process this URL:
http://gdata.youtube.com/feeds/api/videos/{$videoId}/comments
Additional meta data on the video can be accessed using processing this URL:
http://gdata.youtube.com/feeds/api/videos/{$videoId}
Related
I'm new to Node.js and WebRTC concept. I'm trying to make a an audio stream in which one of the page is the music controller and the other page is just playing whatever stream the music controller page is playing.
I based the idea on this link:
https://webrtc.github.io/samples/src/content/capture/video-pc/
But instead of video I just want audio. I'm able to make it work when they are on the same page but there is a problem when capturing stream from different page/url. NodeJS cannot access DOM elements so I'm stuck. I tried accessing the controller page audio element using document.getElementById but its not working. Please help how to get over this.
Can I use the YoutubeAPI on a web-app to record and save/upload a video with out it being broadcast live?
Use the method Videos: insert to upload video using YouTube api. About saving/downloading, I think, it's against their Terms of Service.
You shall not download any Content unless you see a “download” or
similar link displayed by YouTube on the Service for that Content.
You can see this SO post for further reference on downloading content in YouTube.
Youtube does not support recording straight to their platform anymore.
https://support.google.com/youtube/answer/57409?hl=en
In my app I want to post a video to multiple networks (fb, twitter...), i'm uploading video to cloudinary and it sends back url, which I use to post to fb.
For twitter, there is no way to post a video with the url. Is there any alternatives to do this?
My server size is pretty low, like 1-2GB, so I can't download a video to my server and then create a stream to upload to twitter. I worry that if 3-4 users started to upload then my server will crash with out of memory.
Any suggestions using twit package or Simple HTTP Requests are welcome. Thanks
I had found an interesting article on how to upload your files to third party. Streaming File Uploads to Storage Server with Node.js
So you can update the code from the example with your twitter upload code.
I am trying to post a message or a picture to google plus, but I have no idea what kind of url or method should I use, please give me some advice.
Google Plus uses Picasa for managing photos. You can use some Picasa Module for node.js in order to upload Photos.
Here is what I've found through quick googling: https://www.temboo.com/library/Library/Google/Picasa/PostPhoto/
Is there a url I can go to to check the status of video I am uploading to YouTube via the API?
I went to this page
https://developers.google.com/youtube/2.0/developers_guide_protocol_checking_video_status
which told me to go to this URL
https://gdata.youtube.com/feeds/api/users//uploads
But all I got back is an RSS feed of videos that are already uploaded (Published).
I am looking for unpublished videos and the associated progress.
I am using resumable upload so I am think if 10% of the video got uploaded I should be able to see that somewhere?
In Java sample you can request progress status via MediaHttpUploader.getProgress() or MediaHttpUploader.getNumBytesUploaded() "https://code.google.com/p/youtube-api-samples/source/browse/samples/java/youtube-cmdline-uploadvideo-sample/src/main/java/com/google/api/services/samples/youtube/cmdline/youtube_cmdline_uploadvideo_sample/UploadVideo.java#213"
C# would be really similar.