General :: App To View IP Camera Stream?

Mar 8, 2013

I would like to create an Android app that can view the stream from an IP camera. Basically all it will need is a settings screen where you can set the IP address for the stream that you'd like to view and another screen that shows the camera stream. I won't need to worry about any pan/tilt/zoom functionality.

General :: App to view IP camera stream?


App Development To View IP Camera Stream?

Apr 18, 2013

I would like to create an Android app that can view the stream from an IP camera. Basically all it will need is a settings screen where you can set the IP address for the stream that you'd like to view and another screen that shows the camera stream. I won't need to worry about any pan/tilt/zoom functionality.

View 5 Replies View Related

Android :: Example To Stream Camera To A Server On Droid?

Jun 15, 2010

I find plenty of examples of downstreaming a video from a server to an android, but I actually want to stream live images from my droid to a server.

View 1 Replies View Related

Android :: Sharing Stream Object Between Activities Of Tab View

Sep 15, 2010

I want to share streams of a socket connection between the activities of a tab view. In particular the tab activity creates the socket and gets the i/o streams,so i want that tabbed activities use these streams to retrieve informations without reconnect to the server each time i switch from a tab to another. I know i can use the application class to have a global state, but i don't know how.

View 4 Replies View Related

General :: Camera Gallery Dims Images After View On Droid RAZR MAXX

Mar 16, 2014

I have a droid raxr maxx with android 4.1.2

Recently I did a bunch of updates and started using google now. My phone performance has been significantly degraded as a result.

My most pressing issue is that after taking a photo, when I go to view it, it shows as normal brightness for 1 second and then gets very dark. This happens for every image as I scroll through them individually. It appears that I now have some sort of editing option or maybe google photos or picassa has hijacked my viewer. When I click on the gallery app this dimming issue does no occur. I am unable to view photos from the camera after taking them.

View 1 Replies View Related

Android :: How To Get Angle Of View Of Camera?

Feb 4, 2010

Is there a possibility to query the hardware specs of the camera. I'm especially interested in the AOV "Angle of View"[ http://en.wikipedia.org/wiki/Angle_of_view].

View 2 Replies View Related

HTC Incredible :: Using Camera In Portrait View?

Jun 22, 2010

Is there or will there be, a mod that will allow us to use the camera in portrait instead of landscape mode? I Would love the option.

View 2 Replies View Related

Android :: Play Mp3 While On Camera View?

Feb 2, 2010

I am trying to add a bit of a narration in the form of augmented reality to the application I am building. In essence the user will be looking through his/her handset to a location X and I want an MP3 file or WAV or whatever format to play while the camera view finder is up (like the augmented reality apps except instead of overlaying images and widgets I need to overlay audio)

Anyone know a way to do this?

View 2 Replies View Related

Android :: Obtaining Field Of View Of Camera

May 14, 2009

Is there a method of obtaining the field of view for a phones camera (horizontal and vertical)?

View 2 Replies View Related

HTC Incredible :: Error With Layar Camera View

Oct 28, 2010

Anyone having trouble with the Layar Camera View mode? When I first installed this about 3 month ago, I was able to use it. Several updates (any maybe Froyo) later, It wont go into camera mode.I've uninstalled and re-installed, still no change.Any advice? The camera itself seems to function fine; Im able to take pictures, etc.

View 1 Replies View Related

Motorola Droid :: Way To Get Fascinate-like Panoramic View Camera App?

Nov 1, 2010

Is there any way we can get this app or feature? rooted or not, i think that's a freakin awesome feature!

View 7 Replies View Related

Android :: How Camera View Angle Determined In GetHorizontalViewAngle?

May 21, 2010

I'm curious how the camera view angle determined using getHorizontalViewAngle? Is it predefined within the API, or is it provided by the hardware?

View 3 Replies View Related

Android :: How To Draw Overlay On Surface View Used By Camera?

May 29, 2010

I have a simple program that draws the preview of the Camera into a SurfaceView. What I'm trying to do is using the onPreviewFrame method, which is invoked each time a new frame is drawn into the SurfaceView, in order to execute the invalidate method which is supposed to invoke the onDraw method. In fact, the onDraw method is being invoked, but nothing there is being printed (I guess the camera preview is overwriting the text I'm trying to draw).

This is a simplify version of the SurfaceView subclass I have:

public class Superficie extends SurfaceView implements SurfaceHolder.Callback {
SurfaceHolder mHolder; public Camera camera; Superficie(Context context) { super(context);
mHolder = getHolder(); mHolder.addCallback(this); mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
} public void surfaceCreated(final SurfaceHolder holder) { camera = Camera.open();
try { camera.setPreviewDisplay(holder); camera.setPreviewCallback(new PreviewCallback() {
public void onPreviewFrame(byte[] data, Camera arg1) { invalidar();
} } ); } catch (IOException e) {} } public void invalidar(){ invalidate(); }
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
Camera.Parameters parameters = camera.getParameters(); parameters.setPreviewSize(w, h);
camera.setParameters(parameters); camera.startPreview(); }
@Override public void draw(Canvas canvas) { super.draw(canvas);
// nothing gets drawn :( Paint p = new Paint(Color.RED);
canvas.drawText("PREVIEW", canvas.getWidth() / 2, canvas.getHeight() / 2, p);
} }

View 1 Replies View Related

Sprint HTC Hero :: Camera View Is With Pink Screen And No Visibility

May 26, 2010

Not sure what happened exactly but the camera view is now a pink screen with no visibility. Phone is not modded so I doubt it's something I did. Is this the result of water damage maybe? Everything else is working fine and the water indicator hasn't changed.

View 4 Replies View Related

HTC Droid Eris :: View Phot Album Without Opening The Camera First

May 17, 2010

Just got my update; but there dosn't seem to be a way into the photo album without opening the camera first. I'm I missing something?

View 4 Replies View Related

Android :: Overlay Images Onto Camera Preview Surface View

Aug 23, 2010

I have a SurfaceView that is being used to draw custom animations and I would like to overlay them onto a live-feed from the phone's camera. Currently, the SurfaceView that contains the animations has a white- background, but if I were to overlay them onto the phone's camera feed, they would have to be transparent. The camera and animation drawing cannot be done on the same SurfaceView. Is it possible to make a SurfaceView transparent? What is the best course to pursue the use of multiple views? My end goal is to essentially overlay the contents of another SurfaceView onto the Camera SurfaceView.

View 2 Replies View Related

Samsung Captivate :: Way To View Pictures Taken By Camera When Press Review Button?

Aug 29, 2010

well a couple of questions actually. So first is it possible to only view pictures taken by the camera when I press the review button in the camera app? for example, not only do the pictures I take come up but also pictures of wallpapers and other saved images located in different folders show up. I also wanted to know if it was possible to have the take picture button be moved to the hold button.

View 1 Replies View Related

Android :: Surface View Draw Images Overlay On Camera Preview

Aug 23, 2010

I have a SurfaceView that is being used to draw images, and I would like to overlay them onto a live-feed from the phone's camera. Currently, the SurfaceView that contains the images have a white-background, but if I were to overlay them onto the phone's camera feed, they would have to be transparent. The camera and animation drawing cannot be done on the same SurfaceView. What is the best course to pursue the use of multiple views that involve managing the camera and drawing images? Is it possible to make a SurfaceView transparent?

View 4 Replies View Related

Android :: Broken Pipe Exception When Tried To Stream Mp3 Stream From Local Server To Android Mediaplayer

Oct 27, 2010

I am trying to stream mp3 stream from my local http server indeed hosted on my phone to android media player.When local server gets the new socket , it starts writing some http headers followed by mp3 stream. but mediaplayer socket is throwing "Broken pipe" exception.Wat may be the issue causing this.

View 1 Replies View Related

General :: Image View Overlap List View

Mar 3, 2012

Is it possible to have an image view overlap a listview? Basically I want to put a vertical line done the center of my list view to make a vertical dividier between the textviews in a listview row that are statically sized horizontally and dynamically sized vertically.

View 5 Replies View Related

HTC Hero :: Camera Not Working - Message The Application Camera Process Com.android.camera Has Stopped Unexpectedly Please Try Again

Dec 6, 2009

My camera stopped working. When I click my camera application I get the message "The application camera (process com.android.camera) has stopped unexpectedly. Please try again". It's just a blank screen?

View 3 Replies View Related

General :: Stream From PC To Phone

Feb 4, 2013

I sing karaoke, and I would like to be able to see the lyrics on my phone as they are played. A friend of mine is a KJ, who runs his karaoke out of a computer. I'm on a DROID RAZR MAXX (not sure how that important that is), but is there a way to receive wirelesss or bluetooth video from a PC and show it onto my phone? What hardware and apps would I need to use for this to work?

View 2 Replies View Related

General :: Stream Video To PS3?

Jan 21, 2014

I am looking to stream video from the showbox app on my Tab 2 10.1 to my PS3 so I can watch video on my TV.

View 1 Replies View Related

General :: Stream All AUX-output To PC

Feb 19, 2012

Can i stream my whole audio-output from my android device via a random protocol to my PC?

View 7 Replies View Related

General :: Stream Video From Showbox App On Tab 2 10.1 To PS3?

Dec 11, 2013

I am looking to stream video from the showbox app on my Tab 2 10.1 to my PS3 so I can watch video on my TV.

View 6 Replies View Related

General :: App To Stream Movies From PC To Android?

Dec 19, 2013

Any app to stream content from my PC to my S4? Really interested in movies since I have google music for my music. So I'm just looking for a good app to stream movies and videos that I have on my laptop, to my S4 over wifi and 4G.

View 2 Replies View Related

General :: Stream Music From Phone To PC?

Oct 2, 2012

What I'm looking to do is stream music via the Google Music app from my phone to my PC (Windows 7). I tried an app called Music Remote which lets you stream music that you're playing via the Google Music app to any other Android device that has Music Remote installed on it. You set up one device as a server, one as a client. I used Bluestacks to run the Music Remote app on my PC, set it up as a server, but I can't see it on my phone. Or vice versa.

I could just use something like Gmote but the problem is that all my music is in the cloud (I have almost none on my PC or phone), so I need something that will basically take the audio that's playing on my phone and stream it to my PC.

The only other option I can think of is to get a cheap used Android phone, hook it up to my stereo, and stream to that phone. But I'd rather not do that.

Or I could buy a Nexus Q, but that's stupid. My PC should work as a sever - same as the Nexus Q.

Basically, I want to be able to lay in bed and control my stereo via my phone (my PC is my stereo). Also, I don't want to use Bluetooth because of the sound quality issues.

I'm on a Gnex with 4.1 btw.

View 1 Replies View Related

General :: Any Way To Stream Games From PC To Phone?

Oct 14, 2012

am interested to stream my desktop games to my android phone , maybe even play from it using a wireless mouse and keyboar but the streaming is the one that's important to me right now .I'm using an motorola atrix ,and my PC is enough fast and the internet is also pretty fast (7 down ,3 mbits upload ).

View 2 Replies View Related

HTC EVO 4G : "Camera Shots" - When I Opened Gallery To View A Picture

Nov 24, 2010

I have a few videos on my SD card. A couple that were downloaded but most have been recorded with the phone. I have all tha videos sorted into folders so I know which is which. But, today when I opened the gallery to view a picture there was a new folder created called "camera shots" with all the videos in it, or which I thought were the videos. When I opened the folder all the files were a picture of the beginning of each video and were shrunken down so small they are really hard to see. When I looked at the properties of each they all had the file ending in png. Anyone have any idea what png is and has anyone else had your phone recreate the "camera shots" folder without you taking any new pictures or videos?

View 1 Replies View Related

General :: How To Stream Netflix From Android To Apple TV

Dec 29, 2013

Is there an android app that would allow an android phone to stream Netflix on my television via Apple TV? I have researched iMediashare and double twist however none of these allow Netflix streaming via Apple TV.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved