[android-developers] Video streaming frm videoplayer

2014-07-23 Thread Deepa M
Hi all, Is it possible to live stream the video frm videoplayer (which plays recorded video ) in android? Thanks and Regards Deepa M -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Video streaming plus UI control update thread

2013-11-11 Thread Bradley O'Hearne
Piren, Thanks for taking the time to respond. I was able to figure out the problem…but I can confirm that Thread with sleep is bad. Handler is the right approach — I had something (not obvious) several layers deep in the call chain which was causing the problem. Thanks again for your help.

Re: [android-developers] Video streaming plus UI control update thread

2013-11-09 Thread Piren
I've done it and have had no issues what so ever (using a surfaceview). Regarding your code, your first approach (thread with sleep) is horrible, don't ever do that for any reason :) The second approach is the correct one which i have used myself with no issues. Since i see no reason why it

Re: [android-developers] Video streaming plus UI control update thread

2013-11-08 Thread Bradley O'Hearne
Wasn’t able to get a response on this after a few days, so perhaps I’ll try to frame it another way. If you: - Have created custom controls for a video player - Are familiar with the proper / conventional approach to updating UI controls every second / sub-second as in these kinds of apps:

[android-developers] Video streaming plus UI control update thread

2013-11-04 Thread Bradley O'Hearne
Hey there, I hope everyone’s week is off to a good start! I have a pretty simple use case: I am playing video streamed across the network in an app, and I need to update two SeekBars every second, one which tracks the video’s timecode while playing, and the other which tracks the device

[android-developers] video streaming from Android without saving on sdcard

2012-08-23 Thread Sever
I have code: private MediaRecorder recorder; String hostname = 192.168.1.125; int port = 1935; Socket socket; ParcelFileDescriptor pfd; public void start() { try { socket = new Socket(InetAddress.getByName(hostname), port); pfd =

[android-developers] video streaming from Android without saving on sdcard

2012-08-22 Thread Sever
I have code: private MediaRecorder recorder; String hostname = 192.168.1.125; int port = 1935; Socket socket; ParcelFileDescriptor pfd; public void start() { try { socket = new Socket(InetAddress.getByName(hostname), port); pfd =

[android-developers] video streaming from Android without saving on sdcard

2012-08-22 Thread Sever
I have code: private MediaRecorder recorder; String hostname = 192.168.1.125; int port = 1935; Socket socket; ParcelFileDescriptor pfd; public void start() { try { socket = new Socket(InetAddress.getByName(hostname), port); pfd =

[android-developers] video streaming UDP to android

2012-06-18 Thread Leonardo
Hi, I have an application that makes video stream to an internal network (192 ...) and I need to broadcast to all connected devices in the network. Since the players have found to only get android http stream, so does anyone know if there is any player who receives the video stream in udp

[android-developers] Video streaming

2011-10-11 Thread mohana priya
Hello android developers.In my android application i need to capture the video instead of capturing picture.Please tell how to do so.Please tell me the solution.Thanks in advance. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] video streaming from android(client) to pc(server)

2011-08-24 Thread muhammad.ume...@hotmail.com
hi, i am a student and i have a project on video streaming. capture a video from android camera and send it live to my server. and server save this video in a file. I am to much familiar with java but starting with android development. Please tell me which API's that i should use to capture

[android-developers] Video Streaming Using Darwin Streaming Server(DSS) through Ethernet LAN

2011-04-11 Thread saha
I have my Blaze board running Gingerbread, Connected to my Desktop and i am able to ping from PC to Board. How do i connect DSS with android through Ethernet LAN? I tried the following code but its not working. Whats the problem with following code? try { for (EnumerationNetworkInterface en

[android-developers] Video Streaming Using Darwin Streaming Server(DSS) through Ethernet LAN

2011-04-11 Thread saha devan
I have my Blaze board running Gingerbread, Connected to my Desktop and i am able to ping from PC to Board. Installed DSS on Desktop and i am successful in testing with VLC ( by playing rtsp://+DSS-IP +/+sample_50kbit.3gp). How do i connect DSS with android through Ethernet LAN? I tried the

[android-developers] Video streaming from android mobile phone to a remote computer

2010-09-27 Thread Christina Loop
Hello everyone, The problem I have is in the implementation of a video streaming application. What I need to do is to stream live what I record with the androids' camera, to a remote computer. I managed to establish a connection between the mobile phone and the computer, but I do not know how to

[android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer Singh
Hi All I am new to android, I have a simple question *Is Video Streaming possible in Android Emulator*,I am using the example in Android SDK but it give me message *Sorry Can't play this Video*.I am using Youtube Video to stream in android Emulator. Pls respond. -- Thanks and Regards Ajmer

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ramaraju naga
It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main); VideoView video = (VideoView) findViewById(R.id.video); // Load and start the movie video.setVideoPath(/data/samplevideo.3gp ); video.start(); main layout file ?xml version=1.0

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer singh
I want to stream a video from Network Like From youtube.com. Is that possible in android emulator?. On Tue, Sep 21, 2010 at 1:34 PM, Ramaraju naga v.nagaramar...@gmail.comwrote: It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main);

[android-developers] Video streaming from Android

2010-07-22 Thread RFuente
Hi everyone. I'm trying to do live-record streaming from an Android phone and got stuck in a problem quite difficult to tackle. After messing around with an hex editor, I've found that MediaRecorder class places the moov atom at the end of the MP4 file. As this atom is necessary to work with the

[android-developers] video streaming in android

2010-02-15 Thread jui bhatt
The Android platform offers built-in encoding/decoding for specific media types. what if i want to encode video other than those. is it anyway to obtain raw stream of data that can be given to encoder? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Video streaming, omx problem

2010-02-07 Thread Faboom
Hello, I want to stream video via sdp. The stream url is set to a MediaPlayer as described in the api sample. Most of the times it is working fine. Sometimes, however, i get a black or green screen and the log says: E/QCOmxcore( 51): OMX.qcom.video.decoder.avc Instance already exists, return

[android-developers] Video Streaming using RSTP

2009-10-08 Thread Shan
hi , I am trying to play a video file using rtsp streaming. While running its giving error as 10-08 17:11:13.719: ERROR/PlayerDriver(542): Command PLAYER_INIT completed with an error or info PVMFFailure 10-08 17:11:13.729: ERROR/MediaPlayer(746): error (1, -1) 10-08 17:11:13.729:

[android-developers] Video Streaming

2009-06-17 Thread mobilek...@googlemail.com
Hi, I'm trying to stream a video from an HTTP server to my client. In order to play it I fire up an action_view intent by providing to it the uri of the media. The client opens up a new browser window, and then redirects to the youtube player as expected. However, after a couple of seconds it

[android-developers] Video Streaming

2009-06-15 Thread N V
Hi to all... Can anyone tell me that which videos supported for streaming? I tried .mp4,.3gp videos. But none of the videos supported.? Thank You Nithin N V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Video streaming error in SDK 1.5

2009-05-08 Thread Jason Proctor
the moov and mdat atoms should already be there, (IIRC) they are required for a well-formed movie file. the moov atom provides metadata for the movie, and the mdat atom provides the actual content. however, if the file is being streamed, the client needs to know the metadata before the actual

[android-developers] Video streaming error in SDK 1.5

2009-05-07 Thread N V
Hi to all... I tried for video streaming in sdk 1.5... The video format .mp4... But it gives error like This video is not valid for streaming to this video. But in http://developer.android.com/sdk/android-1.5-highlights.html .mp4 is supported for streaming Thank You Nithin N V

[android-developers] Video streaming

2009-04-14 Thread Nithin
Hi to all... Android mobile support the Live video streaming ? Thank You Nithin N V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Video streaming

2009-04-06 Thread Nithin
Hi to all... Videoview can support quick time player Thank You NITHIN N V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Video streaming error

2009-04-06 Thread Nithin
HI to all I tried video streaming But its not playing... I got the error as this video file cannot be played... The code is as bellow package mypack.mydemos; import android.app.Activity; import android.graphics.PixelFormat; import android.net.Uri; import android.os.Bundle;

[android-developers] Video streaming

2009-04-05 Thread Nithin
Hi to all Can anyone tell me how video streaming can done. Thank You NIthin N V --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Video Streaming /MediaPlayerTest.zip / mp.prepare problem

2008-07-03 Thread nekin
Hi Megha, i checked ur MediaPlayerTest.zip example on android-sdk_m5- rc15_windows environment but for playing video from remote url.. i got null pointer when mp.prepare method is called even when i check mp.prepareAsync method.. it calls buffering listeners upto 100% but on screen there is

[android-developers] Video Streaming /MediaPlayerTest.zip / mp.prepare problem

2008-07-03 Thread nekin
hi all, i was fighting with video streaming issue. do we have support of video streaming in android or not i test MediaPlayerTest.zip example from Megha and when i given it some http absolute url to my 3gp or mp4 video it is giving me error at the line of executing mp.prepare() method call i