how to implement video chat in iphone - iphone

Can anyone please tell me the way to do video chat in iphone?
I tried to search it on many website but in vain.
I found this link:
http://code.google.com/p/xmppframework/wiki/iPhone
I am not sure if this works for the video chat too?
Thanks,
Naveed

I don't have experience with XMPP, but I think you would have to add your own video solution on top of it. This is definitely not a straightforward task to accomplish - but this might be useful for you:
1) http://code.google.com/p/idoubs/ - open-source 3GPP IMS client for iOS
2) http://labs.adobe.com/technologies/cirrus/ - RTMFP protocol - works on iOS when compiled with Adobe AIR 2.6
Best,
-Gabriel

Related

How to collect leap motion hand information and sent it to iPhone?

I am trying to develop a Unity project with leapmotion and iPhone, and Currently I have came up with a problem which is how to collect leap motion hand information. Like the location of the hands. There is a link on the YouTube showing that it is possible to implement leapmotion with iPhone.
Can anyone help with that.
The current solution I try to implement is I use C++ API to collect all the hand information and send it to iPhone through Bluetooth. It is also possible to communicate iPhone with WIFI. Hope that helps.
Finally, I use C# socket communication to implement it. And I success. I post the solution in my blog. Hope can help.
http://hanslen.me/blog/index.php/2017/01/06/leap-motion-brings-gesture-control-to-iphone/
If you have any other questions, leave a comment in my blog.

How to stream out video from iphone?

I want to make an application to stream out a UIVIEW. So it can be watch from a webplayer for example Flash or HTML 5. But I am really lost how to start. Any Idea would be appreciated.
I've also been working on such a project recently and I found the help of these websites very useful: http://www.html5rocks.com/en/tutorials/getusermedia/intro/, http://davidwalsh.name/browser-camera, or https://simpl.info/getusermedia/sources/
It can be done via HTML5 and Javascript and it's relatively easy to do.
Hope they help!
EDIT: Maybe I misinterpreted your question. Do you want to stream the camera from the iPhone, or do you want to stream the screen of the iPhone?

iOS Raw Video Capture - Where to start?

It's easy enough to use the system-supplied user interfaces for taking pictures and movies on supported iOS devices. How do I do raw video capture and manipulation in iOS 3 and iOS 4? I'm looking for the names of the relevant classes and methods, and possibly a tutorial or reference from Apple...
You can look at these place
AVCam sample
How to Play, Record, and Edit Videos in iOS
Audio & Video Starting Point
AVCaptureSession preference
Wrapper library by Andrew
If you're looking for tuts, there are a lot here.
There good start from Apple with a lots of links that can help. See Audio & Video Starting Point.
You can't do raw video capture on iOS anymore (there used to be hack for iOS3, but now that's it's official in iOS4, they disallowed the hack).
And on iOS 4 - I believe this is the best start:
http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/03_MediaCapture.html
(Read a little, then browse to Processing Frames of Video)
Cheers,
Oded.

Help me to play video on iPhone App

I would like to do video streaming from my iPhone application...I mean i want to play video from the web url.
So friends, pls. provide me your guidance or reference (links,tutorial )on this..
Thanks for your time.
This all depends on what technology you are using to build your iPhone application.
If you are using PhoneGap and the html, css, js approach have a look at the html tag. Usage is pretty straightforward.
If you are using Appcelerator's Titanium software to build your app then you can have a look at their kitchen sink example and at their api docs for playing video
If your using native objective c and through all this I am assuming on demand streaming as in not a live show or something then have a look at this SO question
Hope this helps.

Best way to stream MP3 from an iPhone app?

I am working on an application that will stream music from a server of mine from an iPhone application.
This is my first iPhone app so I am a bit confused :
What would be the best way to do
this?
Is there something already built in
that I could use, like a MP3 player
that I just need to point toward the
correct server?
Do I need a streaming server to do
so?
I'm relatively new to Objective-C/Cocoa (touch), but I have read an article on the cocoawithlove site titled "Streaming and playing an MP3 stream" and tested the sample code on my iPhone and it works perfectly. I don't know about the licensing or anything, if you would be able to use it, but I'm sure someone or even you can figure that out.
Sorry again for not being able to provide any more information or even a link. This is my first answer on SO and cannot post hyperlinks :(
(edit: Here's the link: Streaming and playing an MP3 stream)