top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Stream/broadcast video from android

+3 votes
140 views

I want to let other nearby android users stream (via bluetooth or wifi) the video that I broadcast or transmit from my android device. In fact I would like to know if there is any direct option to stream the screen as video directly. Right now, I am storing the screen as video and want to stream it.

posted Jul 27, 2016 by Akshay

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+2 votes

I am developing an android application and I want my app to be able to receive data from other apps. How can I do that?

+3 votes

I want to send a file (video) from android to server and vice versa. And I want the setup to work for N number of devices (more than 1). I assume we can use socket, yet I am not sure if using Socket for this requirement is the best way. Thanks in advance.

+2 votes

I want to open another application from my application. I know I should use Intent for that, but I am not sure how to use that.

+2 votes

I have created surface in android Java and mentioned its width and height as below.

 android:layout_width="fill_parent" android:layout_height="fill_parent"

I'm rendering from native to the surface.

My decoded video dimension is w x h (less than surface layout size). When i render the yuv frames in native, video is filled complete area of the surface (video is stretched). I want to control the rendering area (it must be w x h). I tried with native_window_set_buffers_geometry and native_window_set_crop APIs. But still video is rendered will full area of surface.

I have used NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW option.

Please help me.

+1 vote

I have installed my custom app in Packages/apps/

in the app, I use a simple Videoview for video playbacks (3gp or mp4). it works in actual device/ADT emulator, but If I run it in AOSP emulator, it says "Failed to open file : the path of the video"

// Retrieving file from internal file 
systemVideo.setVideoURI(Uri.parse("android.resource://" + getPackageName() + "/" + R.drawable.test));
...