Questions tagged [facetime]
72 questions
13
votes
4 answers
Can't find iOS FaceTime protocol documentation
As per the title. I searched all through the Apple website, and cannot find anything about it. I am not an iPhone developer member (yet) so don't have access to that stuff. I just want to develop an Android application that can talk with the…

BobTurbo
- 1,065
- 1
- 8
- 16
12
votes
2 answers
Can the iPhone4 record from both front and rear-facing camera at the same time?
I am researching for an application at the moment. One of the interesting ideas that came up were to record from both front facing camera and the facetime camera at the same time. Any of you know if this is feasible?
Thanks :)
EDIT:
I mean to say…

dineth
- 9,822
- 6
- 32
- 39
10
votes
5 answers
Launching Facetime from your app?
I am seeing that you can launch FaceTime from your app via
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"facetime://tel-number"]];
I am also reading that since there is no officially public FaceTime API apple will reject you.…

jdog
- 10,351
- 29
- 90
- 165
9
votes
2 answers
How to make facetime call from Swift?
I am developing an app in Swift for iPad that makes use of facetime.
I know Apple introduced App projection (described about 3/4 of way down page) (where one app can "project" itsself into another) in iOS 8. Is facetime capable of this, and if so,…

rocket101
- 7,369
- 11
- 45
- 64
8
votes
1 answer
FaceTime Recorder
How do I get access to the video calls made in facetime, I want to record them as we talk. Anyone tried this?
David H

David Holmes
- 223
- 1
- 2
- 12
8
votes
0 answers
Check programmatically if contact allows FaceTime in Objective-C or Swift
Just like the title states, I am working on contacts app. What I would like to know is if there is a way for me to find out if the contacts are reachable through FaceTime? Is there a public API for it? (Note: Solutions like ChatKit.framework for…

mike.tihonchik
- 6,855
- 3
- 32
- 47
8
votes
1 answer
AVCaptureDevice adjustingExposure is False but captured image is dark
The Mac OS X app I'm coding is taking a photo capture using the macbook built-in facetime camera.
On MacBookAir3,2, MacBookPro8,2 and MacBookPro10,2 it works fine but on new macbooks it takes "dark" photos. I understand it's because of auto exposure…

grzaks
- 1,404
- 2
- 18
- 31
8
votes
2 answers
FaceTime volume issue in Mavericks
We have an audio application for Mac OSX which is music player with some audio effects . Ever since we upgraded to mavericks(10.9) we are finding one weird issue i.e when we get call from facetime our application volume automatically reduces. As per…

SPrabhu
- 303
- 1
- 4
- 9
6
votes
2 answers
Merge 2 videos together like FaceTime
I have been working on an iPhone app, that will work similarly to FaceTime. I want to be able to take 2 videos and have one large and the other small like the FaceTime setup, but made into 1 video file for sending.
I know looking at the Video…

SibSys
- 71
- 2
5
votes
1 answer
Check if facetime is enabled on the device
The app we're building has a simple button that starts a facetime session with a specific number. No biggee here.
I use
[[UIApplication sharedApplication] canOpenURL: [NSURL URLWithString: @"facetime://5555555555"]];
to check if the device is…

basvk
- 4,437
- 3
- 29
- 49
5
votes
1 answer
Is there any FaceTime API for iPhone developers?
I am developing an application having FaceTime feature. How do I know when both are connected/disconnected using FaceTime? I need to restrict the call duration and also I don't want to show others FaceTime ID when it is getting connected because of…

Srinivas G
- 339
- 3
- 16
5
votes
1 answer
facetime:// url scheme
When trying to have my app open a facetime url (facetime://15555555555), it loads up a blank black screen.
NSURL *facetimeURL = [NSURL URLWithString:@"facetime://15555555555"];
[[UIApplication sharedApplication] openURL:facetimeURL];
Has anyone…

christo16
- 4,843
- 5
- 42
- 53
5
votes
3 answers
Make a FaceTime audio call from my app
I have a phone number or email address associated with a FaceTime account how can I initiate a FaceTime audio call from within my app?

user1542125
- 593
- 6
- 16
5
votes
0 answers
How to determine/test FaceTime contact information?
I am making a FaceTime enabled iOS app. I'm using FaceTime url schemes to launch FaceTime which works great. I want users to be able to select contacts from their address book, store off their FaceTime contact info, and use that later.
A contact…

FatJub
- 51
- 1
4
votes
0 answers
Programmatically creating the new iOS15 FaceTime Links
I've been trying to figure out if in iOS15, there will be a way to create a FaceTime link through our own apps, so that the app can be used as a sort of booking tool.
I've searched online and the closest thing I found was the old URL scheme that…

Jeff Cournoyer
- 474
- 2
- 12