Scott Baar

Results 29 comments of Scott Baar

A fair number of android devices are bugged and advertise that they support resolutions and configurations when they actually don't. Try resolutions listed as mandatory/strongly reccomended as listed in the...

Yes, you can do this, with streaming mode MODE_MEDIACODEC_API_2 on the video track. Then draw the bitmap in a similar manner to how the video is drawn. Take a look...

Yes, that type of code, although try it with a solid color bitmap before text to make sure you have it working. Then use the shaders and tutorial here http://developer.android.com/training/graphics/opengl/draw.html...

Media Recorder is just the default because it's the oldest. Both have bugs, wrt android and this library's implementation, but at least with Media Codec you have visibility to fix...

RTSP does not support compressing any more. What you can do is adjust the bitrate lower when network conditions are bad and vica versa. Here is a modified rtpsocket.java and...

1) No. The resolution is constant and out of the box libstreaming the bitrate is constant too. 2) [According to android supported media formats](http://developer.android.com/guide/appendix/media-formats.html) only avc is supported, not svc...

First verify that the issue you see is caused by too high of a bitrate. Try changing the bitrate in your videoconfig to 1/5 of what it is then try...

Clamp is just force within that range. Debug is just log On Apr 1, 2016 10:24 PM, "Karan Balkar" [email protected] wrote: > Hi Scott, > Can you also prove the...

Sorry about that. Clamp(a,b,c) is math.max(b,math.min(a,c) ) to ensure a is within the range b and c. On Apr 1, 2016 10:36 PM, "Karan Balkar" [email protected] wrote: > Hi, >...

Bitrate Controller is not clear enough on it's own, I should have added comments. Don't bother with the network broadcast receiver. Just checking if you're on 2g or 3g or...