Re: Dynamic Video adding

2014-09-30 Thread Maxim Solodovnik
Thanks for the help! will try tomorrow morning, 1:30AM here too late for forum :) On 1 October 2014 01:06, OmPrakash Muppirala wrote: > Sorry, I am out of depth here. Anyone else wants to jump in? Have you > tried the Adobe forums asking for help? > > Thanks, > Om > > On Tue, Sep 30, 2014 at

Re: Dynamic Video adding

2014-09-30 Thread OmPrakash Muppirala
Sorry, I am out of depth here. Anyone else wants to jump in? Have you tried the Adobe forums asking for help? Thanks, Om On Tue, Sep 30, 2014 at 11:03 AM, Maxim Solodovnik wrote: > Maybe LEVEL_5_1 should not be used? > > On 28 September 2014 17:14, Maxim Solodovnik wrote: > > > I just tried

Re: Dynamic Video adding

2014-09-30 Thread Maxim Solodovnik
Maybe LEVEL_5_1 should not be used? On 28 September 2014 17:14, Maxim Solodovnik wrote: > I just tried to switch off h264 and the issue gone, everything works as > expected > So it seems like these 2 lines of code > videoStreamSettings = new H264VideoStreamSettings(); > videoStreamSettings.setPr

Re: Dynamic Video adding

2014-09-28 Thread Maxim Solodovnik
I just tried to switch off h264 and the issue gone, everything works as expected So it seems like these 2 lines of code videoStreamSettings = new H264VideoStreamSettings(); videoStreamSettings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_5_1); make video stream unusable on mobile Is it exp

Re: Dynamic Video adding

2014-09-26 Thread Maxim Solodovnik
SGS3 is connected using USB cable Net connection via same home WiFi router Actually I get "Connection successful" (in real application I do couple of RPC calls and send video from phone to red5 which is clearly visible) The real weird thing: after device is locked (using power button) then unlocke

Re: Dynamic Video adding

2014-09-26 Thread OmPrakash Muppirala
Can you make sure that Red5 server is accessible from the phone? The SG3 and the server should be running on the same network. Or, is the Red5 server publicly accessible? If you run it on the SG3 in debug mode, what kind of trace output are you seeing in the IDE? Thanks, Om On Fri, Sep 26, 201

Re: Dynamic Video adding

2014-09-26 Thread Maxim Solodovnik
it work as expected using desktop client The issue is reproducible in mobile client only (works in emulator, fail on SGS3 over USB) On 26 September 2014 22:04, OmPrakash Muppirala wrote: > I dint see anything obviously wrong with the code. I suspect if the red5 > server is set up correctly. Ha

Re: Dynamic Video adding

2014-09-26 Thread OmPrakash Muppirala
I dint see anything obviously wrong with the code. I suspect if the red5 server is set up correctly. Has that server worked for you before this? Thanks, Om On Sep 26, 2014 7:25 AM, "Maxim Solodovnik" wrote: > Hello Om, > > Were you able to take a look at it? > Do you need any additional info?

Re: Dynamic Video adding

2014-09-26 Thread Maxim Solodovnik
Hello Om, Were you able to take a look at it? Do you need any additional info? Thanks in advance for your help! On 25 September 2014 11:51, Maxim Solodovnik wrote: > Not sure if it is important or not > Live streams are being created with these settings: > videoStreamSettings = new H264VideoSt

Re: Dynamic Video adding

2014-09-24 Thread Maxim Solodovnik
Not sure if it is important or not Live streams are being created with these settings: videoStreamSettings = new H264VideoStreamSettings(); videoStreamSettings.setProfileLevel(H264Profile.BASELINE, H264Level.LEVEL_5_1); videoStreamSettings.setQuality(16384, 0); videoStreamSettings.setKeyFrameInterv

Re: Dynamic Video adding

2014-09-24 Thread Maxim Solodovnik
Here is quickstart: https://github.com/solomax/VideoQuickStart Everything works in emulator It also works with mp4 stream from here: http://flash.flowplayer.org/plugins/streaming/rtmp.html but fails with live stream from red5 server I'm trying to play Thanks in advance for the help On 25 Septemb

Re: Dynamic Video adding

2014-09-24 Thread Maxim Solodovnik
Thanks for the answer! I'll try to provide quickstart ASAP On 24 September 2014 23:46, OmPrakash Muppirala wrote: > Yes, this is definitely the correct list to ask such questions. But it > looks like a very specific scenario that others might not have exactly > faced. > > Can you try providing

Re: Dynamic Video adding

2014-09-24 Thread OmPrakash Muppirala
Yes, this is definitely the correct list to ask such questions. But it looks like a very specific scenario that others might not have exactly faced. Can you try providing a very simple example that reproduces this issue? Thanks, Om On Sep 24, 2014 9:30 AM, "Maxim Solodovnik" wrote: > Is it cor

Re: Dynamic Video adding

2014-09-24 Thread Maxim Solodovnik
Is it correct list to ask questions like this? I have weird behavior described in previous post on real device only (SGS3 Latest Android) everything works as expected in emulator Can anyone help me? On 16 September 2014 02:08, Maxim Solodovnik wrote: > Hello All, > > I'm trying to add/remove

Dynamic Video adding

2014-09-15 Thread Maxim Solodovnik
Hello All, I'm trying to add/remove Video objects to scrolling view dinamically in Mobile project. Here is the base markup ... skipped . ... skipped . and code: for (var i:int = 0; i < result.length; ++i) { if (broadcastId == result[i].broadCastId) { co