I want to write an application which streams a video content which is obtained from a camera (IP Camera) over the internet. By reading some of the posts I have a ... |
In my application,I want to open the camera in Video mode.So I write the following codes
/Codes/
myImagePickerController.mediaTypes =
[NSArray arrayWithObject:(NSString *)kUTTypeMovie];
/Codes/
And include
import MobileCoreServices/UTCoreTypes.h>
But it shows the following errors
/Errors/
"_kUTTypeMovie", ... |
I am trying to get the duration of a video taken with the camera using UIImagePickerController on the iphone, has anyone found a solution to this?
Thanks
Daniel
|
First of all I have to admit that I haven't upgraded to SDK 3.1 yet. AFAIK, there is possibility to record video using SDK, but again popping up camera and allowing ... |
I am looking for some open source projects focusing on iPhone camera, such as image processing &filter when using iPhone camera.
Unfortunately, someone said that
as far as ... |
i have built an iphone application which makes a video and than you can record the video further. now the main part or my application is that i want to upload ... |
Every time the camera of the iPhone captures a new image, I want to modify it and then display it on the iPhone screen. In other way: how to modify in ... |
|
As the question says, is it possible to play an overlay video over the camera and record it.
Also, would it be possible to play an audio file while in camera mode.
... |
using some of the nifty new APIs in iOS4 i am trying to capture input from the iPhone's camera and microphone and save it to a file. below is the code ... |
|
For those of you making iphone applications that record video
- Are you utilising the camera roll for storage and then indexing the asset URL?
- Or are you somehow saving the video to the ...
|
Is there a better way than using sysctlbyname to find the device model and filtering by supported models? I'm hoping for something clean like:
if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypeCamera])
ANSWER: In the process of ... |
I would like to stream video from an iPhone camera to an app running on a Mac. Think sorta like video chat but only one way, from the device to a ... |
I'm trying to do some image processing on iPhone.
I'm using http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html to capture the camera frames.
I saw that I can set AVCaptureVideoDataOutput image format using setVideoSettings, but ... |
I'm facing a hard problem, I'm developing an app to capture video from both front and rear camera simultaneously on IPhone 4 without jail-break and save it to one video with ... |
i am trying to record a video from front camera of iPhone 4 using AVFoundation Framework with the help of WWDC samples i got from iPhone developer program. But i ... |
There are some apps that let the first generation iPhone record video with a reasonable quality. My question is, which api do those apps use? Do they use custom code for ... |
What's the best, most convenient, and most Apple-permitted way of streaming video from the iPhone's camera to a server on the Internet (or local network)?
uStream, Qik, Justin.tv, etc.. Are all able ... |
Can you please help me out, how to save as video file from incoming CMSampleBuferRef in delegate method. Also how to append the buffer data and save it as a video ... |
i made one map application for user and i have to give on map some camera and video for user. if user is going on somewhere and he or she has ... |
I have some code in avfoundation that is processing and displaying
video on iphone.
It is common:
- start session
- dispatch queue
- CMSampleBuffer
- bitmap context
- cgImage
- finally UIImageView.image=image
Now I wonder if is it possible ... |
hallo,
i have found some iphone-camera-video-saving avfoundation code examples
over the net (and also im tryin to write my own code but not finished it yet)
such examples process and do save ... |
I would like to write code so that when the user presses a button, the camera is launched and records 5 seconds of video. In other words I want to have ... |
I need to save the video into a sequence of images while recording that video using the iphone/ipod camera and also I need to save that video. Please direct me...
... |
I want to broadcast my iphone camera's feed live to other iphone. Just like a video chat. Can I do it? I don't have any idea about it.
Can anyone please ... |
is there any way to check video camera capability available on iPhone?
|
I do not want GPS information to be incorporated in the pictures/videos taken by our app, I could not find any api to disable GPS location information while using camera. I ... |
How can i upload a video taken with the camera or contained in the phone memory?
I need to upload it using a PUT method.
Thank you
Code for photo uploading:
- (void)uploadPhoto:(NSData *)data
{
ASIHTTPRequest *request ...
|
I am using following code to choose image from camera role
picker= [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
//picker.sourceType = UIImagePickerControllerSourc
//[self addSubview:imagePickerController.view];
[self presentModalViewController:picker animated:YES];
but this shows only images , but i ... |
I am working on an iPhone app that would capture realtime video from the iPhone camera over long periods of time. That part is fairly straightforward - the catch is ... |
I have developed some games for iPhone and iPad but the success rate in appstore is bad. So I think I should do some marketing things and thats why I need ... |
I want to get the record time in my app, but i can not find which api can do it. Please help me, Thanks.
|
I am working on a project that needs to do face detection on a camera video input (like security camera).
I managed to open Video input via AVFoundation framework. I managed ... |
How to capture video from ip camera iOs iPad/iPhone
|