google-code-export / red5

Automatically exported from code.google.com/p/red5
0 stars 0 forks source link

We have problem when using Tablet Android 4.1.1 with Red5 #445

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. When using tablet Android 4.1.1 with browser Firefox included Flash player 
11 
2. browser does not play video on red5 server  
3.on the screen console we receive the following Error  
org.server.service.ServiceInvoker- Method StartTransmit with parameter [false , 
-1] not found in org.matterhorn.engage.streams.Application : 

What is the expected output? What do you see instead?
 Play and streaming video from Red5 server

What version of the product are you using? On what operating system?
We installed red5 1.0.1 under Ubuntu 12.4 LTS
Tablet Android 4.1.1

Please provide any additional information below.
We attached Application.java file to modifay it with required StartTransmit 
method 

Original issue reported on code.google.com by e.lionse...@gmail.com on 29 Sep 2013 at 8:09

Attachments:

GoogleCodeExporter commented 9 years ago
You have to upgrade to a newer red5 version or add the methods to your 
Application.java. Start and Stop transmit are built into the Flash Player.

Original comment by mondain on 30 Sep 2013 at 5:27

GoogleCodeExporter commented 9 years ago
Thanks for your response , regarding to newer red5 version , we installed red5 
1.0.1
Do you have another newer one ?

Regarding to add StartTransmit method to Application.java , is it correct as 
below field ? and we add it at the end of the program as attached ? 
Please advise 
-----------------------------------------------------------------

public void startTransmit(Boolean bool, int num) {      
    }

    /**
     * Stop transmission notification from Flash Player 11.1+. This command asks the server to suspend transmission until the client sends a 
     * startTransmit event because there is enough data in the buffer.
     */
    public void stopTransmit() {        
    }

    /**
     * Stop transmission notification from Flash Player 11.1+. This command asks the server to suspend transmission until the client sends a 
     * startTransmit event because there is enough data in the buffer.
     * 
     * @param bool
     * @param num
     */
    public void stopTransmit(Boolean bool, int num) {       
    }   

Original comment by e.lionse...@gmail.com on 1 Oct 2013 at 2:11

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by mondain on 6 Oct 2013 at 12:31