How to make sample regular FaceTime call in iOS - ios

I am very beginner in iOS and present I am doing one project in that project I have to make simple video call facility for users (i.e regular Face-time call,Based on persons phone numbers I need to make video call),I have seen so many sample tutorials but no one explain how to make sample regular face video call
And for this I have searched lot in Internet but I did not get any result and I am eager to search and wait for this requirement, please someone post sample video calling app.

Well, i am same stage Buddy as like you .I thing you can do or cover using webrtc or quickblox webartc link and quickblox link , i hope its helps you

Related

Steps to implement - One to One Video call App using Twilio

Can Anyone please let me know how we can do a one to one video calling app using twilio.
I could get some sample codes to do a group video chat, but my requirement is particular to have it one to one, please guide if there is any way to do it using twilio.
To build a one to one video calling app, you can follow the same steps to build a multiparty group chat, but limit the access to the room to only 2 participants.
You can easily build a video calling app with the help of Twilio WebRTC Go, and WebRTC Go rooms have default max participants set at 2.
To know more about how to set "max participants" with Twilio WebRTC you can visit the link here.
To understand more about different type of Video rooms using Twilio, you can also visit this doc.
You can set the room limit to 2, when making the multi-party video app using Video Room. Second option is to use WebRTC as mention above, here is the guide of making such app using NodeJS by twilio.

How to upload video to vimeo from my android app? Is there any new library to implement that right now?

Now, I'm developing android app that uploads video to vimeo from my android app. I'm new at Vimeo integration.
I would like someone to help me to implement that.
Is there any new library(Sample code or github) to satisfy that right now?
If there's any help, it will be very helpful.
Thanks.
The short answer is there is no official upload library (but we're working on one), and in the mean time you'll have to implement your own following the API documentation here.
There's a networking library that we offer that may help provide the models for the models the upload API will be using (like a Video and User object).
There are several posts on stack overflow that may help. Here is one.

Live Video Chat app in iOS for iPhone and iPad

i wanted to develop an app with live video chat just like skype or tango. I have search a lot over the internet but could not found any helpful answer.
Basically what i want to do is only two peoples communicate with each other through live video chat.
if you have any helpful answer please post below so that i can move forword in my project.
Thanks in advance.
I think you have to follow given Link
Sample demo for video chat
i hope this will help you great.
If you any queries about this sample demo than comment here.
Use parse framework for video chat.
It is very easy to implement.
You will get all information in parse website.
How To write your first iPhone Video Chat App using parse and opentok(tokbox)

Record Video and sharing it in ios app

In my app I want to give the user the option to record a video and share it. What is the easiest way to achieve this? (I have been trying to add video recording for days now and keep hitting dead ends). Can anyone offer some help?
To allow functionality to record videos within your app, please go to the Apple documentation for UIImagePickerController for taking pictures and movies
UIImagePickerController Class Reference Link
Once you have your video, sharing it is a little more difficult as unlike text or images, the movie file sizes can often be very large and may have to rule out simple sharing via email, text-message etc.
The best way to share in this case, would be to connect to an external API, like YouTube, where you can upload the video from the app. Here's a link to YouTube documentation for this
YouTube API Documentation Link
I suggest these as good places to start, as this is what you are asking for.
Hope this helps

Video file share with YouTube and Twitter on iOS 6 and above

I'm working on a Video recording iOS app and as a final step I need to allow the user to share the video file ( MOV ) with FB, Twitter and YouTube. FB implementation is done. But I'm having difficulty with YouTube and Twitter.
I know that Twitter doesn't have Video share option by default and we have to relay on 3rd part services like Vine or twitpic. So I'm ok to drop Twitter video sharing if its too difficult.
But There should be a easy way with YouTube. I have read http://code.google.com/p/google-api-objectivec-client/ but its seems bit outdated.
So I need any one of your's help on this point. Has anyone done any similar implementation for iOS 6+ ? If so kindly give me a helping hand. Or at least a suggestion to use YouTube API with iOS app.
Really appreciate any help.
Kind Regards
Viraj
The Google objective-c API client that you reference in your question has a sample app for YouTube authentication and file upload. You should be able to just copy and paste most of the code, just using the correct API keys that you obtained in the Google API Console.
I recently open sourced YouTube Direct Lite for iOS.
Here's the upload protocol that I'm using latest resumable uploads.
If you don't want to implement yourself, you can use ESSVideoShare. (Will not work with iOS 7 or higher)
Thanks everyone for answering and comment on this question because that leads me to get the best solution for my problem. Since I was looking for a very simple solution for my problem there was no direct answer to my question.
After searching on Google and trying out possible solutions I think I have found the simplest way of doing this. The resources are
https://github.com/stuffmc/YouTubeSample_iOS
http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4/
Again the code is bit out dated but still work.
Combination of these two and some changed to the Github code to make it ARC enabled I managed to do it.
Its 2 simple files and GData static library.
Thanks everyone!
I recently discovered that the new 'Youtube Capture' app can be used with
UIDocumentInteractionController
Reference on iOS
Sadly I have been trying to pass a caption using the annotation field without any success.
But if caption is not important, it's worth knowing.

Resources