<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16329</id>
	<title>Nabble - Red5 - English</title>
	<updated>2009-11-14T07:28:03Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Red5---English-f16329.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Red5---English-f16329.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26350960</id>
	<title>Re: come on... how hard does compiling the examples have to be</title>
	<published>2009-11-14T07:28:03Z</published>
	<updated>2009-11-14T07:28:03Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">What are you trying to build here.. at first it seems the Java stuff and from your last message it looks like the flash bits..  For the flash, you will not be able to compile oflaDemo since it is an FLA file not Flex / AS3 source; Use a pre-built version in red5/webapps/root/demos.&lt;div&gt;

In the flash examples directory you will find player4 which contains a how-to for compiling flex code.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Any other builds you try to do have properties which are filled from the $HOME/build.properties file or ./build.properties. The important property is &amp;quot;red5.root&amp;quot; make sure it points to a built red5, such as &amp;quot;red5/dist&amp;quot;. As for maven, we dont use it at all.. so were you trying to build mina? thats not our project, its a dependency so retrieve it using ivy.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;To lessen your frustration, use Nabble to search the list or take a look at our Wiki.&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://wiki.red5.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.red5.org/&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://old.nabble.com/Red5-f16328.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Red5-f16328.html&lt;/a&gt;&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Paul&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 11:20 PM, zoro &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;





&lt;div bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Thanks Michael,  just a lot of  frustration on my end after a long day
of trying to figure this out.&lt;br&gt;
&lt;br&gt;
So I have two set ups&lt;br&gt;
1) remote linux &lt;br&gt;
path set as &lt;br&gt;
PATH=/home/usr/red5/red5-0.9.0/bin/:$PATH&lt;br&gt;
PATH=/home/usr/red5/red5-0.9.0/lib/:$PATH&lt;br&gt;
&lt;br&gt;
structure&lt;br&gt;
/home/usr/red5/red5-0.9.0/bin&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
/home/usr/red5/red5-0.9.0/dist&lt;br&gt;&lt;/div&gt;
/home/usr/red5/red5-0.9.0/examples&lt;br&gt;
/home/usr/red5/red5-0.9.0/lib&lt;br&gt;
/home/usr/red5/red5-0.9.0/src&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
when I run the examples/build.xml via ant&lt;br&gt;
-&amp;gt;Target &amp;quot;dist&amp;quot; does not exist in the project &amp;quot;Red5Examples&amp;quot;.&lt;br&gt;
no idea what that means&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
2) win xp sp2 eclipse 3.4.1 flex 3&lt;br&gt;
environmental variables -&amp;gt; system variables -&amp;gt; classpath =
D:\webdav\red5\0.9.0\lib;&lt;br&gt;
&lt;br&gt;
examples/build.xml&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; ?&amp;gt;&lt;br&gt;
&amp;lt;project name=&amp;quot;Red5Examples&amp;quot; basedir=&amp;quot;.&amp;quot; default=&amp;quot;dist&amp;quot; &amp;gt;&lt;br&gt;
  &amp;lt;macrodef name=&amp;quot;antdemo&amp;quot;&amp;gt;&lt;br&gt;
    &amp;lt;attribute name=&amp;quot;demo&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;attribute name=&amp;quot;target&amp;quot; default=&amp;quot;dist&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;sequential&amp;gt;&lt;br&gt;
      &amp;lt;echo message=&amp;quot;antdemo demo=@{demo} target=@{target}&amp;quot;/&amp;gt;&lt;br&gt;
      &amp;lt;ant dir=&amp;quot;@{demo}&amp;quot; target=&amp;quot;@{target}&amp;quot;/&amp;gt;&lt;br&gt;
    &amp;lt;/sequential&amp;gt;&lt;br&gt;
  &amp;lt;/macrodef&amp;gt;&lt;br&gt;
&lt;br&gt;
  &amp;lt;target name=&amp;quot;dist&amp;quot;&lt;br&gt;
    depends=&amp;quot;dist-noflex, dist-flex&amp;quot;&lt;br&gt;
    description=&amp;quot;build all demos&amp;quot; /&amp;gt;&lt;br&gt;
&lt;br&gt;
  &amp;lt;target name=&amp;quot;dist-flex&amp;quot;&lt;br&gt;
    description=&amp;quot;build all demos that depend on Flex&amp;quot;&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;LocalApp&amp;quot; target=&amp;quot;compile&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;RemoteApp&amp;quot; target=&amp;quot;compile&amp;quot; /&amp;gt;&lt;br&gt;
  &amp;lt;/target&amp;gt;&lt;br&gt;
  &amp;lt;target name=&amp;quot;dist-noflex&amp;quot;&lt;br&gt;
    description=&amp;quot;build all demos that don&amp;#39;t depend on Flex&amp;quot;&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;SOSample&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;admin&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;bwcheck&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;dump&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;echo&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;fitcDemo&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;loadtest&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;messageRecorder&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;midiDemo&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;oflaDemo&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;test&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;tutorial&amp;quot; target=&amp;quot;war&amp;quot; /&amp;gt;&lt;br&gt;
  &amp;lt;/target&amp;gt;&lt;br&gt;
&lt;br&gt;
  &amp;lt;target name=&amp;quot;clean&amp;quot;&lt;br&gt;
    description=&amp;quot;clean all demos&amp;quot;&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;LocalApp&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;RemoteApp&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;SOSample&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;admin&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;bwcheck&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;dump&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;echo&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;fitcDemo&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;loadtest&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;messageRecorder&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;midiDemo&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;oflaDemo&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;test&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
    &amp;lt;antdemo demo=&amp;quot;tutorial&amp;quot; target=&amp;quot;clean&amp;quot; /&amp;gt;&lt;br&gt;
  &amp;lt;/target&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;lt;/project&amp;gt;&lt;br&gt;
&lt;br&gt;
where do I hard code the classpaths?&lt;br&gt;
thanks&lt;br&gt;
Art&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Michael Hollenbeck wrote:
&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;
  &lt;p&gt;I&amp;#39;m sorry you had to experience maven, but it&amp;#39;s completely beside
the point. All the mina jars are included in $RED5_HOME/lib. Look at
the classpaths in the examples build.xml and see if they point to the
right dir. &lt;/p&gt;
  &lt;blockquote type=&quot;cite&quot;&gt;On Nov 13, 2009 9:54 PM, &amp;quot;zoro&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;&amp;gt;
wrote:&lt;br&gt;
    &lt;br&gt;
    &lt;div bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;Pardon my frustration but
compiling the examples such as oflaDemo for
custom directories is &lt;b&gt;&lt;i&gt;ridiculous!&lt;br&gt;
    &lt;br&gt;
    &lt;/i&gt;&lt;/b&gt;Firstly I am a seasoned php/mysql programmer and regularly
build and deploy *nix servers,so dealing with the likes of cpan etc at
first was daunting but achievable. But it seems red5 has been made as
hard to use for a java novice as possible.  I have tried to compile the
examples on a remote linux machine and every single step is met with a
need to install a further dependency. So ok to compile I learn about
ant and setting that up and all the dependencies it needs. Then try to
build by requires MINA, so install but that requires MAVEN so install,
then back to&lt;br&gt;
    &lt;br&gt;
cd ${INSTALLDIR}/${RED5}/examples&lt;br&gt;
ant &lt;br&gt;
    &lt;br&gt;
to be met with the output below.&lt;br&gt;
    &lt;br&gt;
Can somebody advise what is going on here and what I can do to make
this easier&lt;br&gt;
    &lt;br&gt;
Thanks&lt;br&gt;
Art&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
war:&lt;br&gt;
     [echo] antdemo demo=dump target=war&lt;br&gt;
    &lt;br&gt;
prepare:&lt;br&gt;
    &lt;br&gt;
compile:&lt;br&gt;
     [echo] java.home is /home/usr/JAVA6-16-EE/jdk1.6.0_16/jre and the
target version is 1.6&lt;br&gt;
     [echo] red5.root is /home/usr/red5/red5-0.9.0/dist/&lt;br&gt;
     [echo] javac version: 1.6.0_16&lt;br&gt;
    [javac] Compiling 2 source files to
/home/usr/red5/red5-0.9.0_v1/examples/dump/www/WEB-INF/classes&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:17:
package org.apache.mina.common does not exist&lt;br&gt;
    [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
    [javac]                              ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:30:
package org.apache.mina.common does not exist&lt;br&gt;
    [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
    [javac]                              ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
    [javac]                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
    [javac]                                      ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
    [javac]                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
    [javac]                                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:145:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                     } else
if (decodedObject instanceof ByteBuffer) {&lt;br&gt;
   
[javac]                                                                                        
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                            
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
    [javac]                                                            
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                            
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
   
[javac]                                                                              
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:62:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
    [javac]             ByteBuffer reqBuffer = null;&lt;br&gt;
    [javac]             ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:68:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
    [javac]                     reqBuffer =
ByteBuffer.allocate(req.getContentLength());&lt;br&gt;
    [javac]                                 ^&lt;br&gt;
    [javac] 11 errors&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;em&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;br&gt;
    &lt;/font&gt;&lt;br&gt;
    &lt;/em&gt; &lt;/div&gt;
    &lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
    &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
    &lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
    &lt;br&gt;
  &lt;/blockquote&gt;
  &lt;/div&gt;&lt;/div&gt;&lt;pre&gt;&lt;hr size=&quot;4&quot; width=&quot;90%&quot;&gt;&lt;div class=&quot;im&quot;&gt;
_______________________________________________
Red5 mailing list
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;
  &lt;/div&gt;&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/div&gt;

&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350960&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/come-on...-how-hard-does-compiling-the-examples-have-to-be-tp26347453p26350960.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350859</id>
	<title>Re: Which methods of red5 are invoked by NetStream??</title>
	<published>2009-11-14T07:17:08Z</published>
	<updated>2009-11-14T07:17:08Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">Most of them. Here&amp;#39;s a good place to start with very general questions:&lt;div&gt;&lt;a href=&quot;http://old.nabble.com/forum/Search.jtp?forum=16328&amp;amp;local=y&amp;amp;query=netstream+methods&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/forum/Search.jtp?forum=16328&amp;amp;local=y&amp;amp;query=netstream+methods&lt;/a&gt;&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://old.nabble.com/forum/Search.jtp?forum=16328&amp;amp;local=y&amp;amp;query=netstream+methods&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;/a&gt;&lt;div&gt;&lt;b&gt;Yes:&lt;/b&gt;&lt;/div&gt;&lt;div&gt;attachAudio&lt;/div&gt;&lt;div&gt;attachCamera&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;close&lt;/div&gt;&lt;div&gt;pause&lt;/div&gt;&lt;div&gt;play &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;&lt;div&gt;publish&lt;/div&gt;&lt;div&gt;receiveAudio&lt;/div&gt;&lt;div&gt;receiveVideo&lt;/div&gt;&lt;div&gt;resume&lt;/div&gt;&lt;div&gt;seek &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;send &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;Maybe:&lt;/b&gt;&lt;/div&gt;&lt;div&gt;receiveVideoFPS&lt;/div&gt;&lt;div&gt;togglePause&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;No: &lt;/b&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;resetDRMVouchers&lt;/div&gt;&lt;div&gt;setDRMAuthenticationCredentials&lt;/div&gt;&lt;div&gt;play2&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;Paul&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sat, Nov 14, 2009 at 3:55 AM, Prashant Ghildiyal &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350859&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pghildiyal82@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;Hello Everyone,&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;br&gt;I have few questions and would be grateful if someone could point me in the right direction.&lt;div&gt;

&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;br&gt;1) NetStream.publish, NetStream.play functions call which function in red5?(Do they call some function in ClientBroadCastStream?)&lt;br&gt;


2) In order to record live broadcast if we are using saveAs function of ClientBroadCastStream just once or it should be repeatedly called?&lt;br&gt;&lt;br&gt;Regards, &lt;br&gt;~Prashant&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350859&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350859&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-methods-of-red5-are-invoked-by-NetStream---tp26325203p26350859.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350829</id>
	<title>Re: o.r.s.n.p.ProtocolException: Error during decoding</title>
	<published>2009-11-14T07:11:18Z</published>
	<updated>2009-11-14T07:11:18Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">I would say that you should try the latest version available 0.9 RC2 or trunk, but it looks like something is wrong with your broadcaster. In the log it would seem that your data cannot be decoded, I&amp;#39;m not sure off-hand what would cause that.
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Paul&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350829&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/o.r.s.n.p.ProtocolException%3A-Error-during-decoding-tp26345862p26350829.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350726</id>
	<title>rtmpClient.publish</title>
	<published>2009-11-14T06:56:26Z</published>
	<updated>2009-11-14T06:56:26Z</updated>
	<author>
		<name>ayda rahebi</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hi&lt;br&gt;&lt;br&gt;Please if somebody know how I can publish a same name on the server with publish method from rtmpClient, tell me.because I need to report in my office and I have to say red5 does not support this...&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350726&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/rtmpClient.publish-tp26350726p26350726.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350685</id>
	<title>Re: o.r.s.n.p.ProtocolException: Error during decoding</title>
	<published>2009-11-14T06:50:46Z</published>
	<updated>2009-11-14T06:50:46Z</updated>
	<author>
		<name>Zayzon, Gergely</name>
	</author>
	<content type="html">Michael,
&lt;br&gt;&lt;br&gt;it's supposed to be R3639 (as it is noted down below), and I've noticed 
&lt;br&gt;the heap filling effect of it as well, although it seems to be somehow 
&lt;br&gt;randomized (often the server dies with out of memory exceptions after 
&lt;br&gt;this decoding bug, but for example last time it did not cause more 
&lt;br&gt;trouble than disconnecting the particular user).
&lt;br&gt;&lt;br&gt;It all happens rarely, but I get complaints as if it would be a 
&lt;br&gt;disaster... Which I found to be bad is that it can indeed bring down the 
&lt;br&gt;server by filling up the heap.
&lt;br&gt;&lt;br&gt;Can somebody please take a look in this?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Gergely Zayzon
&lt;br&gt;&lt;br&gt;&lt;br&gt;Michael Hollenbeck wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; First, a question: which revision?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Now that that's out of the way, I have run into the same problem, but I had
&lt;br&gt;&amp;gt; no idea what exactly was causing it. In my case, also, this would eat up all
&lt;br&gt;&amp;gt; the memory.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Nov 13, 2009 4:40 PM, &amp;quot;Zayzon, Gergely&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350685&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gergoe@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Dear list,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm facing an occasional problem of having users stream video without audio
&lt;br&gt;&amp;gt; (no Microphone object attached to NetStream) for a long time (few hours),
&lt;br&gt;&amp;gt; and when they enable the sending of audio data (a Microphone is being
&lt;br&gt;&amp;gt; attached on the fly to the NetStream), then suddenly the decoder fails to
&lt;br&gt;&amp;gt; process the incoming data, the errors visible on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pastebin.com/m5e5a8f6f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m5e5a8f6f&lt;/a&gt;&amp;nbsp;are generated, and the connection is closed by
&lt;br&gt;&amp;gt; Red5. I never experienced this when I were testing it myself, not after some
&lt;br&gt;&amp;gt; minutes of testing at least. In this particular case the client was a Flash
&lt;br&gt;&amp;gt; 10.0.22.87 ActiveX player, so nothing exotic there. Red5 is a V8 final
&lt;br&gt;&amp;gt; (3639) release (while I'm patiently waiting for a stable release to upgrade)
&lt;br&gt;&amp;gt; running on Debian.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can I do something to eliminate the problem?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Red5 mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350685&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350685&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/o.r.s.n.p.ProtocolException%3A-Error-during-decoding-tp26345862p26350685.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350307</id>
	<title>red5 jar file</title>
	<published>2009-11-14T06:02:21Z</published>
	<updated>2009-11-14T06:02:21Z</updated>
	<author>
		<name>ayda rahebi</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hi&lt;br&gt;&lt;br&gt;How can I get the last Red5 jar file?&lt;br&gt;even though I am using the last version of red5,jar file is missing some classes..&lt;br&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350307&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-jar-file-tp26350307p26350307.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26350103</id>
	<title>publish name</title>
	<published>2009-11-14T05:33:50Z</published>
	<updated>2009-11-14T05:33:50Z</updated>
	<author>
		<name>ayda rahebi</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hi&lt;br&gt;&lt;br&gt;I publish a file on the server with rtmpclient publish method.How can I delete this stream and publish with the same name again. I use deleteStream method but it does not work and when I publish with a string name, it remains on the server and I can not use that name again.&lt;br&gt;&lt;br&gt;does anybody know how can I solve this?&lt;br&gt;I really appreciate if somebody help....&lt;br&gt;Regards&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26350103&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/publish-name-tp26350103p26350103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26349439</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-14T03:57:18Z</published>
	<updated>2009-11-14T03:57:18Z</updated>
	<author>
		<name>Gavriloaie Eugen-Andrei</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;base href=&quot;x-msg://252/&quot;&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;I think I also do a patch to ffmpeg to spit out a correct MPEG-TS stream. They are sooo far away from the truth... :(&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Nov 14, 2009, at 7:19 AM, Andy Shaules wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Thanks Paul,&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Its an obsessive habit.&amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Points to note about NSV h264 encoders. It is wrapping ffmpeg. Comes in a couple flavours. FIle source. Batch encoder, nsvcap, and commandline.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Linux version can only stream from files but there is a cross-platform lib somewhere on source forge which also uses avlib.&amp;nbsp;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;the video doesnt need a flip.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;There are no artifacts like when using the VPx codecs.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Probably going to spend some time clening up and testing before release.&amp;nbsp;Any monetary donations highly appreciated, and would get you early editions. ;)&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Andy&lt;/font&gt;&lt;/div&gt;&lt;blockquote style=&quot;padding-right: 0px; padding-left: 5px; margin-left: 5px; border-left-color: rgb(0, 0, 0); border-left-width: 2px; border-left-style: solid; margin-right: 0px; &quot;&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;----- Original Message -----&lt;/div&gt;&lt;div style=&quot;background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: rgb(228, 228, 228); font: normal normal normal 10pt/normal arial; background-position: initial initial; &quot;&gt;&lt;b&gt;From:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;To:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Sent:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Friday, November 13, 2009 6:33 PM&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Subject:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Re: [Red5] red5 can feed only one client with fme3 in h264&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;You guys rock!&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 4:45 PM, Andy Shaules&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bowljoman@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;padding-left: 1ex; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; &quot;&gt;You were absolutly right!&lt;br&gt;&lt;br&gt;The leading zero 8 bit in ffmpeg NSV pay-load is actually the final byte of the preceding NAL&lt;br&gt;&lt;br&gt;Thank you G!&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.thebitstream.com/success.png&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/success.png&lt;/a&gt;&lt;br&gt;&lt;br&gt;Andy&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----- From: &quot;Gavriloaie Eugen-Andrei&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&amp;gt;&lt;br&gt;To: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;gt;&lt;br&gt;Sent: Friday, November 13, 2009 12:56 PM&lt;div class=&quot;im&quot;&gt;&lt;br&gt;Subject: Re: [Red5] red5 can feed only one client with fme3 in h264&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;padding-left: 1ex; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; &quot;&gt;Some other things about ffmpeg issues:&lt;br&gt;&lt;br&gt;1. It doesn't split the NALs correctly. For example, when I receive a &quot;video packet start&quot; signal from the MPEG-TS stream, the payload &amp;nbsp;doesn't start with a NAL. It is in the middle of it. That could be a &amp;nbsp;reason why you see garbled image. The ts file that I've sent you is &amp;nbsp;properly encoded and EVERY logical payload of data from the MPEG-TS &amp;nbsp;stream starts with a NAL.&lt;br&gt;&lt;br&gt;2. No pts/dst timestamps markers on the MPEG-TS container. So, my &amp;nbsp;opinion is that you are struggling too much with the wrong stuff&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;--&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;hr&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349439&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26349439.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26349425</id>
	<title>Which methods of red5 are invoked by NetStream??</title>
	<published>2009-11-14T03:55:29Z</published>
	<updated>2009-11-14T03:55:29Z</updated>
	<author>
		<name>Prashant Ghildiyal</name>
	</author>
	<content type="html">Hello Everyone,&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;br&gt;I have few questions and would be grateful if someone could point me in the right direction.&lt;br&gt;&lt;br&gt;1) NetStream.publish, NetStream.play functions call which function in red5?(Do they call some function in ClientBroadCastStream?)&lt;br&gt;


2) In order to record live broadcast if we are using saveAs function of ClientBroadCastStream just once or it should be repeatedly called?&lt;br&gt;&lt;br&gt;Regards, &lt;br&gt;~Prashant&lt;br&gt;
&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26349425&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Which-methods-of-red5-are-invoked-by-NetStream---tp26325203p26349425.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26348431</id>
	<title>red5 plugin error when trying to debug</title>
	<published>2009-11-14T01:20:59Z</published>
	<updated>2009-11-14T01:20:59Z</updated>
	<author>
		<name>Valentin Plamadeala</name>
	</author>
	<content type="html">i&amp;#39;ve installed the red5 plugin following the instructions from &lt;a href=&quot;http://red5.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5.org&lt;/a&gt; but the last step doesn&amp;#39;t work.&lt;br&gt;when i right click the red5 server and click debug i get this error:&lt;br&gt;&lt;br&gt;Could not publish to the server.&lt;br&gt;
java.lang.NullPointerException&lt;br&gt;&lt;br&gt;i&amp;#39;ve installed the red5 plugin on my Flex builder 3&lt;br&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26348431&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-plugin-error-when-trying-to-debug-tp26348431p26348431.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347819</id>
	<title>Re: come on... how hard does compiling the examples have to be</title>
	<published>2009-11-13T23:20:03Z</published>
	<updated>2009-11-13T23:20:03Z</updated>
	<author>
		<name>zoro-4</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Thanks Michael,&amp;nbsp; just a lot of&amp;nbsp; frustration on my end after a long day
of trying to figure this out.&lt;br&gt;
&lt;br&gt;
So I have two set ups&lt;br&gt;
1) remote linux &lt;br&gt;
path set as &lt;br&gt;
PATH=/home/usr/red5/red5-0.9.0/bin/:$PATH&lt;br&gt;
PATH=/home/usr/red5/red5-0.9.0/lib/:$PATH&lt;br&gt;
&lt;br&gt;
structure&lt;br&gt;
/home/usr/red5/red5-0.9.0/bin&lt;br&gt;
/home/usr/red5/red5-0.9.0/dist&lt;br&gt;
/home/usr/red5/red5-0.9.0/examples&lt;br&gt;
/home/usr/red5/red5-0.9.0/lib&lt;br&gt;
/home/usr/red5/red5-0.9.0/src&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
when I run the examples/build.xml via ant&lt;br&gt;
-&amp;gt;Target &quot;dist&quot; does not exist in the project &quot;Red5Examples&quot;.&lt;br&gt;
no idea what that means&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
2) win xp sp2 eclipse 3.4.1 flex 3&lt;br&gt;
environmental variables -&amp;gt; system variables -&amp;gt; classpath =
D:\webdav\red5\0.9.0\lib;&lt;br&gt;
&lt;br&gt;
examples/build.xml&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&quot;1.0&quot; ?&amp;gt;&lt;br&gt;
&amp;lt;project name=&quot;Red5Examples&quot; basedir=&quot;.&quot; default=&quot;dist&quot; &amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;macrodef name=&quot;antdemo&quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;attribute name=&quot;demo&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;attribute name=&quot;target&quot; default=&quot;dist&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequential&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;echo message=&quot;antdemo demo=@{demo} target=@{target}&quot;/&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ant dir=&quot;@{demo}&quot; target=&quot;@{target}&quot;/&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/sequential&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/macrodef&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp; &amp;lt;target name=&quot;dist&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; depends=&quot;dist-noflex, dist-flex&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; description=&quot;build all demos&quot; /&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp; &amp;lt;target name=&quot;dist-flex&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; description=&quot;build all demos that depend on Flex&quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;LocalApp&quot; target=&quot;compile&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;RemoteApp&quot; target=&quot;compile&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/target&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;target name=&quot;dist-noflex&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; description=&quot;build all demos that don't depend on Flex&quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;SOSample&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;admin&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;bwcheck&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;dump&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;echo&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;fitcDemo&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;loadtest&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;messageRecorder&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;midiDemo&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;oflaDemo&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;test&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;tutorial&quot; target=&quot;war&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/target&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp; &amp;lt;target name=&quot;clean&quot;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; description=&quot;clean all demos&quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;LocalApp&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;RemoteApp&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;SOSample&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;admin&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;bwcheck&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;dump&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;echo&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;fitcDemo&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;loadtest&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;messageRecorder&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;midiDemo&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;oflaDemo&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;test&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;antdemo demo=&quot;tutorial&quot; target=&quot;clean&quot; /&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/target&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;lt;/project&amp;gt;&lt;br&gt;
&lt;br&gt;
where do I hard code the classpaths?&lt;br&gt;
thanks&lt;br&gt;
Art&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Michael Hollenbeck wrote:
&lt;blockquote cite=&quot;mid:58f8fd250911132206n1bd1c193y252248cf6f0bc612@mail.gmail.com&quot; type=&quot;cite&quot;&gt;
  &lt;p&gt;I'm sorry you had to experience maven, but it's completely beside
the point. All the mina jars are included in $RED5_HOME/lib. Look at
the classpaths in the examples build.xml and see if they point to the
right dir. &lt;/p&gt;
  &lt;blockquote type=&quot;cite&quot;&gt;On Nov 13, 2009 9:54 PM, &quot;zoro&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347819&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;&amp;gt;
wrote:&lt;br&gt;
    &lt;br&gt;
    &lt;div bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;Pardon my frustration but
compiling the examples such as oflaDemo for
custom directories is &lt;b&gt;&lt;i&gt;ridiculous!&lt;br&gt;
    &lt;br&gt;
    &lt;/i&gt;&lt;/b&gt;Firstly I am a seasoned php/mysql programmer and regularly
build and deploy *nix servers,so dealing with the likes of cpan etc at
first was daunting but achievable. But it seems red5 has been made as
hard to use for a java novice as possible.&amp;nbsp; I have tried to compile the
examples on a remote linux machine and every single step is met with a
need to install a further dependency. So ok to compile I learn about
ant and setting that up and all the dependencies it needs. Then try to
build by requires MINA, so install but that requires MAVEN so install,
then back to&lt;br&gt;
    &lt;br&gt;
cd ${INSTALLDIR}/${RED5}/examples&lt;br&gt;
ant &lt;br&gt;
    &lt;br&gt;
to be met with the output below.&lt;br&gt;
    &lt;br&gt;
Can somebody advise what is going on here and what I can do to make
this easier&lt;br&gt;
    &lt;br&gt;
Thanks&lt;br&gt;
Art&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
war:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] antdemo demo=dump target=war&lt;br&gt;
    &lt;br&gt;
prepare:&lt;br&gt;
    &lt;br&gt;
compile:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] java.home is /home/usr/JAVA6-16-EE/jdk1.6.0_16/jre and the
target version is 1.6&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] red5.root is /home/usr/red5/red5-0.9.0/dist/&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] javac version: 1.6.0_16&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] Compiling 2 source files to
/home/usr/red5/red5-0.9.0_v1/examples/dump/www/WEB-INF/classes&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:17:
package org.apache.mina.common does not exist&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:30:
package org.apache.mina.common does not exist&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:145:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else
if (decodedObject instanceof ByteBuffer) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
[javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
[javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:62:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer reqBuffer = null;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:68:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reqBuffer =
ByteBuffer.allocate(req.getContentLength());&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] 11 errors&lt;br&gt;
    &lt;br&gt;
    &lt;br&gt;
    &lt;em&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;br&gt;
    &lt;/font&gt;&lt;br&gt;
    &lt;/em&gt; &lt;/div&gt;
    &lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
    &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347819&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
    &lt;a moz-do-not-send=&quot;true&quot; href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
    &lt;br&gt;
  &lt;/blockquote&gt;
  &lt;pre wrap=&quot;&quot;&gt;&lt;hr size=&quot;4&quot; width=&quot;90%&quot;&gt;
_______________________________________________
Red5 mailing list
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347819&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;
  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347819&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/come-on...-how-hard-does-compiling-the-examples-have-to-be-tp26347453p26347819.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347508</id>
	<title>Re: o.r.s.n.p.ProtocolException: Error during decoding</title>
	<published>2009-11-13T22:07:55Z</published>
	<updated>2009-11-13T22:07:55Z</updated>
	<author>
		<name>Michael Hollenbeck</name>
	</author>
	<content type="html">&lt;p&gt;First, a question: which revision?&lt;/p&gt;
&lt;p&gt;Now that that&amp;#39;s out of the way, I have run into the same problem, but I had no idea what exactly was causing it. In my case, also, this would eat up all the memory.&lt;/p&gt;
&lt;p&gt;&lt;blockquote type=&quot;cite&quot;&gt;On Nov 13, 2009 4:40 PM, &amp;quot;Zayzon, Gergely&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347508&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gergoe@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;Dear list,&lt;br&gt;
&lt;br&gt;
I&amp;#39;m facing an occasional problem of having users stream video without audio (no Microphone object attached to NetStream) for a long time (few hours), and when they enable the sending of audio data (a Microphone is being attached on the fly to the NetStream), then suddenly the decoder fails to process the incoming data, the errors visible on &lt;a href=&quot;http://pastebin.com/m5e5a8f6f&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m5e5a8f6f&lt;/a&gt; are generated, and the connection is closed by Red5. I never experienced this when I were testing it myself, not after some minutes of testing at least. In this particular case the client was a Flash 10.0.22.87 ActiveX player, so nothing exotic there. Red5 is a V8 final (3639) release (while I&amp;#39;m patiently waiting for a stable release to upgrade) running on Debian.&lt;br&gt;

&lt;br&gt;
Can I do something to eliminate the problem?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;
-- &lt;br&gt;
Gergely Zayzon&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347508&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/p&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347508&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/o.r.s.n.p.ProtocolException%3A-Error-during-decoding-tp26345862p26347508.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347500</id>
	<title>Re: come on... how hard does compiling the examples have to be</title>
	<published>2009-11-13T22:06:30Z</published>
	<updated>2009-11-13T22:06:30Z</updated>
	<author>
		<name>Michael Hollenbeck</name>
	</author>
	<content type="html">&lt;p&gt;I&amp;#39;m sorry you had to experience maven, but it&amp;#39;s completely beside the point. All the mina jars are included in $RED5_HOME/lib. Look at the classpaths in the examples build.xml and see if they point to the right dir. &lt;/p&gt;

&lt;p&gt;&lt;blockquote type=&quot;cite&quot;&gt;On Nov 13, 2009 9:54 PM, &amp;quot;zoro&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347500&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&lt;br&gt;



&lt;div bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Pardon my frustration but compiling the examples such as oflaDemo for
custom directories is &lt;b&gt;&lt;i&gt;ridiculous!&lt;br&gt;
&lt;br&gt;
&lt;/i&gt;&lt;/b&gt;Firstly I am a seasoned php/mysql programmer and regularly
build and deploy *nix servers,so dealing with the likes of cpan etc at
first was daunting but achievable. But it seems red5 has been made as
hard to use for a java novice as possible.  I have tried to compile the
examples on a remote linux machine and every single step is met with a
need to install a further dependency. So ok to compile I learn about
ant and setting that up and all the dependencies it needs. Then try to
build by requires MINA, so install but that requires MAVEN so install,
then back to&lt;br&gt;
&lt;br&gt;
cd ${INSTALLDIR}/${RED5}/examples&lt;br&gt;
ant &lt;br&gt;
&lt;br&gt;
to be met with the output below.&lt;br&gt;
&lt;br&gt;
Can somebody advise what is going on here and what I can do to make
this easier&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
Art&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
war:&lt;br&gt;
     [echo] antdemo demo=dump target=war&lt;br&gt;
&lt;br&gt;
prepare:&lt;br&gt;
&lt;br&gt;
compile:&lt;br&gt;
     [echo] java.home is /home/usr/JAVA6-16-EE/jdk1.6.0_16/jre and the
target version is 1.6&lt;br&gt;
     [echo] red5.root is /home/usr/red5/red5-0.9.0/dist/&lt;br&gt;
     [echo] javac version: 1.6.0_16&lt;br&gt;
    [javac] Compiling 2 source files to
/home/usr/red5/red5-0.9.0_v1/examples/dump/www/WEB-INF/classes&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:17:
package org.apache.mina.common does not exist&lt;br&gt;
    [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
    [javac]                              ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:30:
package org.apache.mina.common does not exist&lt;br&gt;
    [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
    [javac]                              ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
    [javac]                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
    [javac]                                      ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
    [javac]                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                     ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
    [javac]                                     ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:145:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                     } else
if (decodedObject instanceof ByteBuffer) {&lt;br&gt;
   
[javac]                                                                                        
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                            
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
    [javac]                                                            
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
    [javac]                                                            
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
   
[javac]                                                                              
^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:62:
cannot find symbol&lt;br&gt;
    [javac] symbol  : class ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
    [javac]             ByteBuffer reqBuffer = null;&lt;br&gt;
    [javac]             ^&lt;br&gt;
    [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:68:
cannot find symbol&lt;br&gt;
    [javac] symbol  : variable ByteBuffer&lt;br&gt;
    [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
    [javac]                     reqBuffer =
ByteBuffer.allocate(req.getContentLength());&lt;br&gt;
    [javac]                                 ^&lt;br&gt;
    [javac] 11 errors&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;em&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;br&gt;
&lt;/em&gt;
&lt;/div&gt;

&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347500&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/p&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347500&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/come-on...-how-hard-does-compiling-the-examples-have-to-be-tp26347453p26347500.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347453</id>
	<title>come on... how hard does compiling the examples have to be</title>
	<published>2009-11-13T21:54:01Z</published>
	<updated>2009-11-13T21:54:01Z</updated>
	<author>
		<name>zoro-4</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
Pardon my frustration but compiling the examples such as oflaDemo for
custom directories is &lt;b&gt;&lt;i&gt;ridiculous!&lt;br&gt;
&lt;br&gt;
&lt;/i&gt;&lt;/b&gt;Firstly I am a seasoned php/mysql programmer and regularly
build and deploy *nix servers,so dealing with the likes of cpan etc at
first was daunting but achievable. But it seems red5 has been made as
hard to use for a java novice as possible.&amp;nbsp; I have tried to compile the
examples on a remote linux machine and every single step is met with a
need to install a further dependency. So ok to compile I learn about
ant and setting that up and all the dependencies it needs. Then try to
build by requires MINA, so install but that requires MAVEN so install,
then back to&lt;br&gt;
&lt;br&gt;
cd ${INSTALLDIR}/${RED5}/examples&lt;br&gt;
ant &lt;br&gt;
&lt;br&gt;
to be met with the output below.&lt;br&gt;
&lt;br&gt;
Can somebody advise what is going on here and what I can do to make
this easier&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
Art&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
war:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] antdemo demo=dump target=war&lt;br&gt;
&lt;br&gt;
prepare:&lt;br&gt;
&lt;br&gt;
compile:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] java.home is /home/usr/JAVA6-16-EE/jdk1.6.0_16/jre and the
target version is 1.6&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] red5.root is /home/usr/red5/red5-0.9.0/dist/&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [echo] javac version: 1.6.0_16&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] Compiling 2 source files to
/home/usr/red5/red5-0.9.0_v1/examples/dump/www/WEB-INF/classes&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:17:
package org.apache.mina.common does not exist&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:30:
package org.apache.mina.common does not exist&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] import org.apache.mina.common.ByteBuffer;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:94:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer cap =
ByteBuffer.wrap(capMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:95:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer in =
ByteBuffer.wrap(rawMappedFile);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:145:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else
if (decodedObject instanceof ByteBuffer) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
[javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/CaptureViewerServlet.java:146:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.CaptureViewerServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
ByteBuffer buf = (ByteBuffer) decodedObject;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
[javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:62:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : class ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ByteBuffer reqBuffer = null;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]
/home/usr/red5/red5-0.9.0_v1/examples/dump/src/org/red5/server/net/servlet/RequestDumpServlet.java:68:
cannot find symbol&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] symbol&amp;nbsp; : variable ByteBuffer&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] location: class
org.red5.server.net.servlet.RequestDumpServlet&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reqBuffer =
ByteBuffer.allocate(req.getContentLength());&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; [javac] 11 errors&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;em&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;br&gt;
&lt;/em&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347453&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/come-on...-how-hard-does-compiling-the-examples-have-to-be-tp26347453p26347453.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347322</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T21:19:55Z</published>
	<updated>2009-11-13T21:19:55Z</updated>
	<author>
		<name>Andy Shaules</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.5890&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY bgColor=#ffffff&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Thanks Paul,&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Its an obsessive habit.&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Points to note about NSV h264 encoders. It is 
wrapping ffmpeg. Comes in a couple flavours. FIle source. Batch encoder, nsvcap, 
and commandline. &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Linux version can only stream from files but there 
is a cross-platform lib somewhere on source forge which also uses 
avlib.&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;the video doesnt need a flip. &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;There are no artifacts like when using the VPx 
codecs.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Probably going to spend some time clening up and 
testing before release.&amp;nbsp;Any monetary donations highly appreciated, and 
would get you early editions. ;)&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Andy&lt;/FONT&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE style=&quot;PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px&quot;&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;----- Original Message ----- &lt;/DIV&gt;
  &lt;DIV style=&quot;BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black&quot;&gt;&lt;B&gt;From:&lt;/B&gt; 
  &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;To:&lt;/B&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Sent:&lt;/B&gt; Friday, November 13, 2009 6:33 
  PM&lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Subject:&lt;/B&gt; Re: [Red5] red5 can feed only 
  one client with fme3 in h264&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;You guys rock!&lt;BR&gt;&lt;BR&gt;
  &lt;DIV class=gmail_quote&gt;On Fri, Nov 13, 2009 at 4:45 PM, Andy Shaules &lt;SPAN dir=ltr&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bowljoman@...&lt;/a&gt;&amp;gt;&lt;/SPAN&gt; 
  wrote:&lt;BR&gt;
  &lt;BLOCKQUOTE class=gmail_quote style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid&quot;&gt;You 
    were absolutly right!&lt;BR&gt;&lt;BR&gt;The leading zero 8 bit in ffmpeg NSV pay-load 
    is actually the final byte of the preceding NAL&lt;BR&gt;&lt;BR&gt;Thank you 
    G!&lt;BR&gt;&lt;BR&gt;&lt;A href=&quot;http://www.thebitstream.com/success.png&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/success.png&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;Andy&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;----- 
    Original Message ----- From: &quot;Gavriloaie Eugen-Andrei&quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&amp;gt;&lt;BR&gt;To: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;gt;&lt;BR&gt;Sent: Friday, November 13, 2009 
    12:56 PM
    &lt;DIV class=im&gt;&lt;BR&gt;Subject: Re: [Red5] red5 can feed only one client with 
    fme3 in h264&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;
    &lt;DIV&gt;
    &lt;DIV&gt;&lt;/DIV&gt;
    &lt;DIV class=h5&gt;
    &lt;BLOCKQUOTE class=gmail_quote style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid&quot;&gt;Some 
      other things about ffmpeg issues:&lt;BR&gt;&lt;BR&gt;1. It doesn't split the NALs 
      correctly. For example, when I receive a &quot;video packet start&quot; signal from 
      the MPEG-TS stream, the payload &amp;nbsp;doesn't start with a NAL. It is in 
      the middle of it. That could be a &amp;nbsp;reason why you see garbled image. 
      The ts file that I've sent you is &amp;nbsp;properly encoded and EVERY logical 
      payload of data from the MPEG-TS &amp;nbsp;stream starts with a NAL.&lt;BR&gt;&lt;BR&gt;2. 
      No pts/dst timestamps markers on the MPEG-TS container. So, my 
      &amp;nbsp;opinion is that you are struggling too much with the wrong 
      stuff&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Red5 
      mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Red5 
    mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;BR&gt;&lt;BR clear=all&gt;&lt;BR&gt;-- &lt;BR&gt;&lt;A href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/A&gt;&lt;BR&gt;&lt;A href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/A&gt;&lt;BR&gt;&lt;A href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/A&gt;&lt;BR&gt;
  &lt;P&gt;
  &lt;HR&gt;

  &lt;P&gt;&lt;/P&gt;_______________________________________________&lt;BR&gt;Red5 mailing 
  list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;BR&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347322&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26347322.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26347028</id>
	<title>ant build auto install oflaDemo</title>
	<published>2009-11-13T20:07:55Z</published>
	<updated>2009-11-13T20:07:55Z</updated>
	<author>
		<name>zoro-4</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;Is there a script or way to build red5 with certain demos already 
&lt;br&gt;installed, ie oflaDemo.
&lt;br&gt;&lt;br&gt;I use custom streaming dir and have a script to compile the 
&lt;br&gt;CustomFileNameGenerator.java but have to build the server then log on 
&lt;br&gt;and add the demo before I can change everything.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Art
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26347028&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ant-build-auto-install-oflaDemo-tp26347028p26347028.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26346581</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T18:33:55Z</published>
	<updated>2009-11-13T18:33:55Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">You guys rock!&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 4:45 PM, Andy Shaules &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bowljoman@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;

You were absolutly right!&lt;br&gt;
&lt;br&gt;
The leading zero 8 bit in ffmpeg NSV pay-load is actually the final byte of the preceding NAL&lt;br&gt;
&lt;br&gt;
Thank you G!&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.thebitstream.com/success.png&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/success.png&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Andy&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
----- Original Message ----- From: &amp;quot;Gavriloaie Eugen-Andrei&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&amp;gt;&lt;br&gt;
To: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;gt;&lt;br&gt;
Sent: Friday, November 13, 2009 12:56 PM&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
Subject: Re: [Red5] red5 can feed only one client with fme3 in h264&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;
Some other things about ffmpeg issues:&lt;br&gt;
&lt;br&gt;
1. It doesn&amp;#39;t split the NALs correctly. For example, when I receive a &amp;quot;video packet start&amp;quot; signal from the MPEG-TS stream, the payload  doesn&amp;#39;t start with a NAL. It is in the middle of it. That could be a  reason why you see garbled image. The ts file that I&amp;#39;ve sent you is  properly encoded and EVERY logical payload of data from the MPEG-TS  stream starts with a NAL.&lt;br&gt;


&lt;br&gt;
2. No pts/dst timestamps markers on the MPEG-TS container. So, my  opinion is that you are struggling too much with the wrong stuff&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346581&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26346581.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26346318</id>
	<title>Re: client interruption</title>
	<published>2009-11-13T17:49:22Z</published>
	<updated>2009-11-13T17:49:22Z</updated>
	<author>
		<name>Walter Tak</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;META content=&quot;MSHTML 6.00.2900.2180&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY bgColor=#ffffff&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Let the user connect to a database first (via a 
dot.net- or PHP-script for example) , create a unique ID on the server, send the 
ID to the client, store the ID on the client (e.g. in the Local Shared Object in 
Flash, the &quot;flash cookie&quot;) , let the client pass his ID to Red5 on/after 
connecting ; et voila you now know who your client is and you can redirect him 
to his 'old' room and give him access to 'his' files.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Walter&lt;/FONT&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE style=&quot;PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px&quot;&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;----- Original Message ----- &lt;/DIV&gt;
  &lt;DIV style=&quot;BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black&quot;&gt;&lt;B&gt;From:&lt;/B&gt; 
  &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346318&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tomabroad@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;To:&lt;/B&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346318&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Sent:&lt;/B&gt; Friday, 13 November 2009 
20:49&lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Subject:&lt;/B&gt; [Red5] client interruption&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;hi,&lt;BR&gt;&lt;BR&gt;whats the common scenario when a client gets 
  interrupted?&lt;BR&gt;eg:&lt;BR&gt;video meeting, client is identified by his clientID 
  (red5). now he can build a little file-system in the background (upload &amp;amp; 
  download &amp;amp; share), but all relies on the clientID. after all, i think that 
  was not the best way, maybe i should nail that down to his email or something 
  else unique...&lt;BR&gt;how are u guys dong this when a user has unique stuff which 
  hee needs to access in random scopes? (my scopes are based on 
  rand(9999999)...&lt;BR&gt;thx tom&lt;BR&gt;
  &lt;P&gt;
  &lt;HR&gt;

  &lt;P&gt;&lt;/P&gt;_______________________________________________&lt;BR&gt;Red5 mailing 
  list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346318&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;BR&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26346318&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/client-interruption-tp26342471p26346318.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26345924</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T16:45:31Z</published>
	<updated>2009-11-13T16:45:31Z</updated>
	<author>
		<name>Andy Shaules</name>
	</author>
	<content type="html">You were absolutly right!
&lt;br&gt;&lt;br&gt;The leading zero 8 bit in ffmpeg NSV pay-load is actually the final byte of 
&lt;br&gt;the preceding NAL
&lt;br&gt;&lt;br&gt;Thank you G!
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.thebitstream.com/success.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/success.png&lt;/a&gt;&lt;br&gt;&lt;br&gt;Andy
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Original Message ----- 
&lt;br&gt;From: &amp;quot;Gavriloaie Eugen-Andrei&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345924&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345924&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Friday, November 13, 2009 12:56 PM
&lt;br&gt;Subject: Re: [Red5] red5 can feed only one client with fme3 in h264
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Some other things about ffmpeg issues:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. It doesn't split the NALs correctly. For example, when I receive a 
&lt;br&gt;&amp;gt; &amp;quot;video packet start&amp;quot; signal from the MPEG-TS stream, the payload &amp;nbsp;doesn't 
&lt;br&gt;&amp;gt; start with a NAL. It is in the middle of it. That could be a &amp;nbsp;reason why 
&lt;br&gt;&amp;gt; you see garbled image. The ts file that I've sent you is &amp;nbsp;properly encoded 
&lt;br&gt;&amp;gt; and EVERY logical payload of data from the MPEG-TS &amp;nbsp;stream starts with a 
&lt;br&gt;&amp;gt; NAL.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2. No pts/dst timestamps markers on the MPEG-TS container. So, my &amp;nbsp;opinion 
&lt;br&gt;&amp;gt; is that you are struggling too much with the wrong stuff
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Red5 mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345924&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345924&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26345924.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26345862</id>
	<title>o.r.s.n.p.ProtocolException: Error during decoding</title>
	<published>2009-11-13T16:36:26Z</published>
	<updated>2009-11-13T16:36:26Z</updated>
	<author>
		<name>Zayzon, Gergely</name>
	</author>
	<content type="html">Dear list,
&lt;br&gt;&lt;br&gt;I'm facing an occasional problem of having users stream video without 
&lt;br&gt;audio (no Microphone object attached to NetStream) for a long time (few 
&lt;br&gt;hours), and when they enable the sending of audio data (a Microphone is 
&lt;br&gt;being attached on the fly to the NetStream), then suddenly the decoder 
&lt;br&gt;fails to process the incoming data, the errors visible on 
&lt;br&gt;&lt;a href=&quot;http://pastebin.com/m5e5a8f6f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/m5e5a8f6f&lt;/a&gt;&amp;nbsp;are generated, and the connection is 
&lt;br&gt;closed by Red5. I never experienced this when I were testing it myself, 
&lt;br&gt;not after some minutes of testing at least. In this particular case the 
&lt;br&gt;client was a Flash 10.0.22.87 ActiveX player, so nothing exotic there. 
&lt;br&gt;Red5 is a V8 final (3639) release (while I'm patiently waiting for a 
&lt;br&gt;stable release to upgrade) running on Debian.
&lt;br&gt;&lt;br&gt;Can I do something to eliminate the problem?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-- 
&lt;br&gt;Gergely Zayzon
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26345862&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/o.r.s.n.p.ProtocolException%3A-Error-during-decoding-tp26345862p26345862.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26344483</id>
	<title>convert main.asc file to red5</title>
	<published>2009-11-13T14:17:45Z</published>
	<updated>2009-11-13T14:17:45Z</updated>
	<author>
		<name>vip killa</name>
	</author>
	<content type="html">is there anyway to convert a main.asc file to red5 format?&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26344483&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/convert-main.asc-file-to-red5-tp26344483p26344483.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26343450</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T12:56:20Z</published>
	<updated>2009-11-13T12:56:20Z</updated>
	<author>
		<name>Gavriloaie Eugen-Andrei</name>
	</author>
	<content type="html">Some other things about ffmpeg issues:
&lt;br&gt;&lt;br&gt;1. It doesn't split the NALs correctly. For example, when I receive a &amp;nbsp;
&lt;br&gt;&amp;quot;video packet start&amp;quot; signal from the MPEG-TS stream, the payload &amp;nbsp;
&lt;br&gt;doesn't start with a NAL. It is in the middle of it. That could be a &amp;nbsp;
&lt;br&gt;reason why you see garbled image. The ts file that I've sent you is &amp;nbsp;
&lt;br&gt;properly encoded and EVERY logical payload of data from the MPEG-TS &amp;nbsp;
&lt;br&gt;stream starts with a NAL.
&lt;br&gt;&lt;br&gt;2. No pts/dst timestamps markers on the MPEG-TS container. So, my &amp;nbsp;
&lt;br&gt;opinion is that you are struggling too much with the wrong stuff
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343450&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26343450.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26343163</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T12:33:33Z</published>
	<updated>2009-11-13T12:33:33Z</updated>
	<author>
		<name>Gavriloaie Eugen-Andrei</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;base href=&quot;x-msg://178/&quot;&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Nov 13, 2009, at 10:05 PM, Andy Shaules wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot; style=&quot;word-wrap: break-word; &quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;The sequence I am processing is as : SEI, SPS,PPS, IDR, Slice, ...,SPS,PPS, IDR,Slice, ...,&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;I do send special packet after both SPS and PPS is received.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;I do send only IDR and slices.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;I do send only one packet per rtmp message.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;I was thinking maybe some how I am promoting bytes or something.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Or maybe I am copying the wrong segment from input to stored SPS and PPS values.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Or maybe I have trouble with endian ness, but I can parse both my codec info and FME codec info.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;The stream compressor is ffmpeg. First frame contains { SEI, SPS,PPS} but I only send derived codec data.&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;Arrr, forget ffmpeg! Is not good at this job. Many bugs. Here is a sample TS file encoded with Apple splitter. I know, we should be more fault tolerant and try to get over ffmpeg's shortcomings, but at least you need a correctly encoded file when you do developing. Just my thoughts&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;https://dl.dropbox.com/u/2918563/fileSequence0.ts&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dl.dropbox.com/u/2918563/fileSequence0.ts&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot; style=&quot;word-wrap: break-word; &quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Second frame contains single IDR, and all frames after contain only one NALU. except as you say, befor another IDR.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;FME sends new/replicated codec data before every IDR also. I tried that too.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;I do get NALU prefixed chunks and I do convert them to Size markers, with size marker specified in codec data.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Both streams can be re-parsed with the same code in my application addapter, and each rtmp packet re-identified as the correct NALU type. Codec data is re-parsed as you can see in the screen shot.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;So, I have no clue, but it make me hopeful knowing you have also seen the distortion before you 'tuned' it in correctly.&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;I've just reproduced the bug with distorted data just to show you the results of sending consecutive NALs over the same RTMP frame&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;https://dl.dropbox.com/u/2918563/screenshoot.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dl.dropbox.com/u/2918563/screenshoot.png&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Again, don't trust ffmpeg too much. Learned that the hard way. Is a wonderful source of information for many many things, but mpeg-ts is just not one of them.&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot; style=&quot;word-wrap: break-word; &quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Thanks,&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Andy&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;blockquote style=&quot;padding-right: 0px; padding-left: 5px; margin-left: 5px; border-left-color: rgb(0, 0, 0); border-left-width: 2px; border-left-style: solid; margin-right: 0px; &quot;&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;----- Original Message -----&lt;/div&gt;&lt;div style=&quot;background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: rgb(228, 228, 228); font: normal normal normal 10pt/normal arial; background-position: initial initial; &quot;&gt;&lt;b&gt;From:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;To:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Sent:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Friday, November 13, 2009 11:43 AM&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Subject:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Re: [Red5] red5 can feed only one client with fme3 in h264&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;That is because you are sending more than a NAL unit.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Suppose you have a stream of NAL units like this:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;N1, N2, N3, ..., Nn&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You must find the SPS and PPS NALs and build the codec setup special packet.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;After that, you can safely send only IDR and SLICE NALs. IDR is a key frame and SLICE is a inter-frame. Ignore the rest.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I'm pretty sure that somehow you feed an IDR or SLICE immediately followed by another NAL.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example, you could have the following situation:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;PPS,U,SPS,U,IDR,U,SLICE,U,SLICE,U,IDR,U,SLICE,U,SPS,PPS,IDR, etc&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;U - &quot;unknown&quot; NAL (ignored in fact)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You must send ONLY SPS+PPS as a codec setup and after that send ONLY IDRs and SLICEs. In your case I think you somehow send an IDR/SLICE followed by another NAL in the same RTMP video frame. That exactly thing happened to me: garbled image.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Also make sure that you cache the codec setup packet and send it to the new subscribers once they arrive.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Cheers&lt;/div&gt;&lt;div&gt;Andrei&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Nov 13, 2009, at 7:53 PM, Andy Shaules wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font: normal normal normal medium/normal Helvetica; &quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Suffering data corruption of some kind.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;a href=&quot;http://www.thebitstream.com/fail.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/fail.png&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;FAIL&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;:(&lt;/font&gt;&lt;/div&gt;&lt;blockquote style=&quot;padding-right: 0px; padding-left: 5px; margin-left: 5px; border-left-color: rgb(0, 0, 0); border-left-width: 2px; border-left-style: solid; margin-right: 0px; &quot;&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;----- Original Message -----&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; background-color: rgb(228, 228, 228); &quot;&gt;&lt;b&gt;From:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;To:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Sent:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Thursday, November 12, 2009 11:00 AM&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Subject:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Re: [Red5] red5 can feed only one client with fme3 in h264&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;Hey Lenny's back ;)&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 12, 2009 at 10:45 AM, Lenny Sorey&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lrsorey@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;padding-left: 1ex; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; &quot;&gt;Andy,&lt;br&gt;&lt;br&gt;&lt;br&gt;This sounds pretty cool.&lt;br&gt;&lt;br&gt;Lenny&lt;br&gt;&lt;div class=&quot;im&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thursday, November 12, 2009, Yann JAMAR &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yann.jamar@...&lt;/a&gt;&amp;gt; wrote:&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; that will be nice , thx :)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; ----- Original Message -----&lt;br&gt;&amp;gt; &amp;nbsp; From:&lt;br&gt;&amp;gt; &amp;nbsp; iMDT - Tiago&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt; &amp;nbsp; Jacobs&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tiago@...&lt;/a&gt;');&amp;gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp; To:&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; Sent: Thursday, November 12, 2009 12:47&lt;br&gt;&amp;gt; &amp;nbsp; PM&lt;br&gt;&amp;gt; &amp;nbsp; Subject: Re: [Red5] red5 can feed only&lt;br&gt;&amp;gt; &amp;nbsp; one client with fme3 in h264&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Hi, i will take a look on this.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Are you using trunk&lt;br&gt;&amp;gt; &amp;nbsp; version?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Tiago&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Yann JAMAR wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I have tried to connect several clients on the&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; same h264 stream , it works only for one client after other clients have&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; only audio ...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I use fme3 to upload my live&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; stream.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Any suggestions?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Regards.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; _______________________________________________&lt;br&gt;&amp;gt; Red5 mailing list&lt;/div&gt;&lt;/div&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; _______________________________________________&lt;br&gt;&amp;gt; Red5 mailing&lt;br&gt;&amp;gt; &amp;nbsp; list&lt;br&gt;&lt;/div&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;--&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;hr&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;hr&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=17&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26343163&amp;i=18&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26343163.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342802</id>
	<title>Re: share desktop</title>
	<published>2009-11-13T12:09:00Z</published>
	<updated>2009-11-13T12:09:00Z</updated>
	<author>
		<name>Richard Alam</name>
	</author>
	<content type="html">Just go through last months archive &amp;nbsp;with title &amp;quot;Desktop Sharing&amp;quot;.
&lt;br&gt;&lt;br&gt;There are several apps that will give you this depending on what your
&lt;br&gt;requirements are.
&lt;br&gt;&lt;br&gt;There's &lt;a href=&quot;http://code.google.com/p/red5-screenshare&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5-screenshare&lt;/a&gt;&amp;nbsp;and OpenMeetings has one too.
&lt;br&gt;&lt;br&gt;On Fri, Nov 13, 2009 at 3:02 PM, Denis Zgonjanin &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342802&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;me.snap@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; You can try the open source desktop sharing component of BigBlueButton,
&lt;br&gt;&amp;gt; which is built with Flex 3 and red5
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://code.google.com/p/bigbluebutton/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/bigbluebutton/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, Nov 13, 2009 at 3:00 PM, Jorge Carlos Iglesias Alvarez
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342802&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jciglesias@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;     I  was wondering is there any way to share my desktop in real time
&lt;br&gt;&amp;gt;&amp;gt; with red5 and flex buielder 3
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Red5 mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342802&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Red5 mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342802&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;---
&lt;br&gt;BigBlueButton
&lt;br&gt;&lt;a href=&quot;http://www.bigbluebutton.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bigbluebutton.org&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/bigbluebutton&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/bigbluebutton&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342802&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/share-desktop-tp26342650p26342802.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342791</id>
	<title>Re: red5 0.9 RC2 where is the admin panel?</title>
	<published>2009-11-13T12:07:48Z</published>
	<updated>2009-11-13T12:07:48Z</updated>
	<author>
		<name>Markus85</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=DE link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Hi Paul,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;thank you very much, that helped a lot.  The machine is running
now and also the  Demos work when I connect directly to the IP-adress.  Please
allow one more question. I´ve installed red5 for about 4 weeks on a different
server, I can access the admin panel via /admin/ but not with 0.9RC2. Do you
know if there is a workaround here? Otherwise I´ve to use &lt;a href=&quot;http://myserver:5080/demos/adminPanel.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myserver:5080/demos/adminPanel.html&lt;/a&gt;
which is not pretty handy. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Kind Regards&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Markus&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;Von:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt;] &lt;b&gt;Im Auftrag von &lt;/b&gt;Mondain&lt;br&gt;
&lt;b&gt;Gesendet:&lt;/b&gt; Freitag, 13. November 2009 20:20&lt;br&gt;
&lt;b&gt;An:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Betreff:&lt;/b&gt; Re: [Red5] red5 0.9 RC2 where is the admin panel?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;Create a &amp;quot;plugins&amp;quot; directory within red5, so it
should be something like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;/opt/red5/plugins&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Then grab the admin zip file:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;a href=&quot;http://red5.googlecode.com/files/AdminPlugin-1.0.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/AdminPlugin-1.0.zip&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;Unzip and restart red5.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;One last thing, this only works with version 0.9 RC2 and
later.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;Paul&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Fri, Nov 13, 2009 at 10:56 AM, Catch4 Technologies &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ms@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;Hi Paul,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;I don´t even have the plugin folder. &lt;/span&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;Where should it be located? I
just installed red5 exactly as described on &lt;a href=&quot;http://osflash.org/red5/debian&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/red5/debian&lt;/a&gt;
with the latest trunk.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;Kind Regards&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;Markus&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span lang=EN-US style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:10.0pt'&gt;Von:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt'&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt;
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt;]
&lt;b&gt;Im Auftrag von &lt;/b&gt;Mondain&lt;br&gt;
&lt;b&gt;Gesendet:&lt;/b&gt; Freitag, 13. November 2009 19:49&lt;br&gt;
&lt;b&gt;An:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Betreff:&lt;/b&gt; Re: [Red5] red5 0.9 RC2 where is the admin panel?&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;I'm
going to assume that you either dont have the adminplugin.jar in red5/plugins
or it failed to start.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;Paul&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;On
Fri, Nov 13, 2009 at 10:25 AM, vip killa &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vipkilla@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;after
setting up admin panel, i go to &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;, then after filling in
username and password, i get: Error in db setup Table/View 'APPUSER' does not
exist.&lt;br&gt;
why is this happening?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;On
Fri, Nov 13, 2009 at 3:44 AM, Mauro &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mrsanna1@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;2009/11/12
Mondain &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;&amp;gt;
You can find a &amp;quot;helper&amp;quot; page&lt;br&gt;
&amp;gt; here:&amp;nbsp;&lt;a href=&quot;http://red5.googlecode.com/files/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; This will allow you to add or modify users.&lt;br&gt;
&amp;gt; Instructions:&lt;br&gt;
&amp;gt; 1. Start your server&lt;br&gt;
&amp;gt; 2. Put the admin.jsp page in red5/webapps/root directory&lt;br&gt;
&amp;gt; 3. Request the page via browser - &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; 4. Enter your info and submit&lt;br&gt;
&amp;gt; 5. Go to the admin panel and login&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;It's
all ok, thanks a lot.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;br&gt;
&lt;br clear=all&gt;
&lt;br&gt;
-- &lt;br&gt;
&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;br&gt;
&lt;br clear=all&gt;
&lt;br&gt;
-- &lt;br&gt;
&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342791&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-0.9-RC2-where-is-the-admin-panel--tp26300966p26342791.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342767</id>
	<title>Re: red5 0.9 RC2 where is the admin panel?</title>
	<published>2009-11-13T12:06:37Z</published>
	<updated>2009-11-13T12:06:37Z</updated>
	<author>
		<name>vip killa</name>
	</author>
	<content type="html">i&amp;#39;m running red5 on linux, and i have adminplugin.jar in the lib folder, there is no red5/plugins&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 1:49 PM, Mondain &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;I&amp;#39;m going to assume that you either dont have the adminplugin.jar in red5/plugins or it failed to start.&lt;div&gt;
&lt;br&gt;&lt;/div&gt;&lt;div&gt;Paul&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 10:25 AM, vip killa &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vipkilla@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;


&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;after setting up admin panel, i go to &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;, then after filling in username and password, i get: Error in db setup Table/View &amp;#39;APPUSER&amp;#39; does not exist.&lt;br&gt;



why is this happening?&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 3:44 AM, Mauro &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mrsanna1@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;


&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;2009/11/12 Mondain &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;:&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt; You can find a &amp;quot;helper&amp;quot; page&lt;br&gt;
&amp;gt; here: &lt;a href=&quot;http://red5.googlecode.com/files/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; This will allow you to add or modify users.&lt;br&gt;
&amp;gt; Instructions:&lt;br&gt;
&amp;gt; 1. Start your server&lt;br&gt;
&amp;gt; 2. Put the admin.jsp page in red5/webapps/root directory&lt;br&gt;
&amp;gt; 3. Request the page via browser - &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; 4. Enter your info and submit&lt;br&gt;
&amp;gt; 5. Go to the admin panel and login&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;It&amp;#39;s all ok, thanks a lot.&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;/div&gt;&lt;/div&gt;
&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342767&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-0.9-RC2-where-is-the-admin-panel--tp26300966p26342767.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342750</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T12:05:01Z</published>
	<updated>2009-11-13T12:05:01Z</updated>
	<author>
		<name>Andy Shaules</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;HTML&gt;&lt;HEAD&gt;
&lt;META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;&lt;BASE href=x-msg://178 /&gt;
&lt;META content=&quot;MSHTML 6.00.2900.5890&quot; name=GENERATOR&gt;

&lt;/HEAD&gt;
&lt;BODY style=&quot;WORD-WRAP: break-word; webkit-nbsp-mode: space; webkit-line-break: after-white-space&quot; bgColor=#ffffff&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;The sequence I am processing is as : SEI, SPS,PPS, 
IDR, Slice, ...,SPS,PPS, IDR,Slice, ...,&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;I do send special packet after both SPS and PPS is 
received. &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;I do send only IDR and slices.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;I do send only one packet per rtmp 
message.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;I was thinking maybe some how I am promoting bytes 
or something.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Or maybe I am copying the wrong segment from input 
to stored SPS and PPS values.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Or maybe I have trouble with endian ness, but I can 
parse both my codec info and FME codec info.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;The stream compressor is ffmpeg. First frame 
contains { SEI, SPS,PPS} but I only send derived codec data.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Second frame contains single IDR, and all frames 
after contain only one NALU. except as you say, befor another IDR.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;FME sends new/replicated codec data before every 
IDR also. I tried that too.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;I do get NALU prefixed chunks and I do convert them 
to Size markers, with size marker specified in codec data.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Both streams can be re-parsed with the same code in 
my application addapter, and each rtmp packet re-identified as the correct NALU 
type. Codec data is re-parsed as you can see in the screen shot.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;So, I have no clue, but it make me hopeful knowing 
you have also seen the distortion before you 'tuned' it in 
correctly.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Thanks, &lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Andy&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;BLOCKQUOTE style=&quot;PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px&quot;&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;----- Original Message ----- &lt;/DIV&gt;
  &lt;DIV style=&quot;BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black&quot;&gt;&lt;B&gt;From:&lt;/B&gt; 
  &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;To:&lt;/B&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt; &lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Sent:&lt;/B&gt; Friday, November 13, 2009 11:43 
  AM&lt;/DIV&gt;
  &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Subject:&lt;/B&gt; Re: [Red5] red5 can feed only 
  one client with fme3 in h264&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;That is because you are sending more than a NAL unit.
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;Suppose you have a stream of NAL units like this:&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;N1, N2, N3, ..., Nn&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;You must find the SPS and PPS NALs and build the codec setup special 
  packet.&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;After that, you can safely send only IDR and SLICE NALs. IDR is a key 
  frame and SLICE is a inter-frame. Ignore the rest.&amp;nbsp;&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;I'm pretty sure that somehow you feed an IDR or SLICE immediately 
  followed by another NAL.&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;For example, you could have the following situation:&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;PPS,U,SPS,U,IDR,U,SLICE,U,SLICE,U,IDR,U,SLICE,U,SPS,PPS,IDR, etc&lt;/DIV&gt;
  &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;U - &quot;unknown&quot; NAL (ignored in fact)&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;You must send ONLY SPS+PPS as a codec setup and after that send ONLY IDRs 
  and SLICEs. In your case I think you somehow send an IDR/SLICE followed by 
  another NAL in the same RTMP video frame. That exactly thing happened to me: 
  garbled image.&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;Also make sure that you cache the codec setup packet and send it to the 
  new subscribers once they arrive.&amp;nbsp;&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;Cheers&lt;/DIV&gt;
  &lt;DIV&gt;Andrei&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;DIV&gt;&lt;BR&gt;
  &lt;DIV&gt;
  &lt;DIV&gt;On Nov 13, 2009, at 7:53 PM, Andy Shaules wrote:&lt;/DIV&gt;&lt;BR class=Apple-interchange-newline&gt;
  &lt;BLOCKQUOTE type=&quot;cite&quot;&gt;&lt;SPAN class=Apple-style-span style=&quot;WORD-SPACING: 0px; FONT: medium Helvetica; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate; orphans: 2; widows: 2; webkit-border-horizontal-spacing: 0px; webkit-border-vertical-spacing: 0px; webkit-text-decorations-in-effect: none; webkit-text-size-adjust: auto; webkit-text-stroke-width: 0px&quot;&gt;
    &lt;DIV bgcolor=&quot;#ffffff&quot;&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;Suffering data corruption of some 
    kind.&lt;/FONT&gt;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;A href=&quot;http://www.thebitstream.com/fail.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/fail.png&lt;/A&gt;&lt;/FONT&gt;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;FAIL&lt;/FONT&gt;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;
    &lt;DIV&gt;&lt;FONT face=Arial size=2&gt;:(&lt;/FONT&gt;&lt;/DIV&gt;
    &lt;BLOCKQUOTE style=&quot;PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(0,0,0) 2px solid; MARGIN-RIGHT: 0px&quot;&gt;
      &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;----- Original Message -----&lt;/DIV&gt;
      &lt;DIV style=&quot;FONT: 10pt arial; BACKGROUND-COLOR: rgb(228,228,228); webkit-background-clip: initial; webkit-background-origin: initial&quot;&gt;&lt;B&gt;From:&lt;/B&gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&lt;/DIV&gt;
      &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;To:&lt;/B&gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;/DIV&gt;
      &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Sent:&lt;/B&gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;Thursday, November 12, 2009 11:00 
      AM&lt;/DIV&gt;
      &lt;DIV style=&quot;FONT: 10pt arial&quot;&gt;&lt;B&gt;Subject:&lt;/B&gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;Re: [Red5] red5 can feed only one 
      client with fme3 in h264&lt;/DIV&gt;
      &lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;Hey Lenny's back ;)&lt;BR&gt;&lt;BR&gt;
      &lt;DIV class=gmail_quote&gt;On Thu, Nov 12, 2009 at 10:45 AM, Lenny Sorey&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN dir=ltr&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lrsorey@...&lt;/a&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;wrote:&lt;BR&gt;
      &lt;BLOCKQUOTE class=gmail_quote style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: rgb(204,204,204) 1px solid&quot;&gt;Andy,&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;This 
        sounds pretty cool.&lt;BR&gt;&lt;BR&gt;Lenny&lt;BR&gt;
        &lt;DIV class=im&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;On Thursday, November 12, 2009, Yann JAMAR 
        &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yann.jamar@...&lt;/a&gt;&amp;gt; 
        wrote:&lt;div class='shrinkable-quote'&gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; that will be nice 
        , thx :)&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; &amp;nbsp; ----- Original Message -----&lt;BR&gt;&amp;gt; 
        &amp;nbsp; From:&lt;BR&gt;&amp;gt; &amp;nbsp; iMDT - Tiago&lt;/div&gt;&lt;/DIV&gt;
        &lt;DIV class=im&gt;&amp;gt; &amp;nbsp; Jacobs&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tiago@...&lt;/a&gt;');&amp;gt;&lt;div class='shrinkable-quote'&gt;&lt;BR&gt;&amp;gt; 
        &amp;nbsp; To:&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 
        'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;');&amp;gt;&lt;BR&gt;&amp;gt; 
        &amp;nbsp; Sent: Thursday, November 12, 2009 12:47&lt;BR&gt;&amp;gt; &amp;nbsp; PM&lt;BR&gt;&amp;gt; 
        &amp;nbsp; Subject: Re: [Red5] red5 can feed only&lt;BR&gt;&amp;gt; &amp;nbsp; one client 
        with fme3 in h264&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; Hi, i will take a look on 
        this.&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; Are you using trunk&lt;BR&gt;&amp;gt; &amp;nbsp; 
        version?&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; Tiago&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; Yann JAMAR 
        wrote:&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I have 
        tried to connect several clients on the&lt;BR&gt;&amp;gt; &amp;nbsp; &amp;nbsp; same h264 
        stream , it works only for one client after other clients have&lt;BR&gt;&amp;gt; 
        &amp;nbsp; &amp;nbsp; only audio ...&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I use fme3 to 
        upload my live&lt;BR&gt;&amp;gt; &amp;nbsp; &amp;nbsp; stream.&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; &amp;nbsp; 
        &amp;nbsp; Any suggestions?&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
        Regards.&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; 
        _______________________________________________&lt;BR&gt;&amp;gt; Red5 mailing 
        list&lt;/div&gt;&lt;/DIV&gt;&amp;gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 
        'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;BR&gt;
        &lt;DIV class=im&gt;&amp;gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt; 
        &amp;nbsp; _______________________________________________&lt;BR&gt;&amp;gt; Red5 
        mailing&lt;BR&gt;&amp;gt; &amp;nbsp; list&lt;BR&gt;&lt;/DIV&gt;&amp;gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 
        'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;BR&gt;
        &lt;DIV&gt;
        &lt;DIV&gt;&lt;/DIV&gt;
        &lt;DIV class=h5&gt;&amp;gt;&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&amp;gt;&lt;BR&gt;&lt;BR&gt;_______________________________________________&lt;BR&gt;Red5 
        mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=_blank rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;BR&gt;&lt;BR clear=all&gt;&lt;BR&gt;--&lt;SPAN class=Apple-converted-space&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR&gt;&lt;A href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/A&gt;&lt;BR&gt;&lt;A href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/A&gt;&lt;BR&gt;&lt;A href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/A&gt;&lt;BR&gt;
      &lt;DIV&gt;&lt;BR class=webkit-block-placeholder&gt;&lt;/DIV&gt;
      &lt;HR&gt;

      &lt;DIV&gt;&lt;BR class=webkit-block-placeholder&gt;&lt;/DIV&gt;_______________________________________________&lt;BR&gt;Red5 
      mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&lt;/BLOCKQUOTE&gt;_______________________________________________&lt;BR&gt;Red5 
    mailing list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=15&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;&lt;A href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/A&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;BR&gt;&lt;/DIV&gt;
  &lt;P&gt;
  &lt;HR&gt;

  &lt;P&gt;&lt;/P&gt;_______________________________________________&lt;BR&gt;Red5 mailing 
  list&lt;BR&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;BR&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;BR&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342750&amp;i=17&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26342750.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342709</id>
	<title>Re: share desktop</title>
	<published>2009-11-13T12:02:02Z</published>
	<updated>2009-11-13T12:02:02Z</updated>
	<author>
		<name>Denis Zgonjanin</name>
	</author>
	<content type="html">You can try the open source desktop sharing component of BigBlueButton, which is built with Flex 3 and red5&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/bigbluebutton/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/bigbluebutton/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Fri, Nov 13, 2009 at 3:00 PM, Jorge Carlos Iglesias Alvarez &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342709&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jciglesias@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
     I  was wondering is there any way to share my desktop in real time with red5 and flex buielder 3&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342709&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342709&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/share-desktop-tp26342650p26342709.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342650</id>
	<title>share desktop</title>
	<published>2009-11-13T12:00:01Z</published>
	<updated>2009-11-13T12:00:01Z</updated>
	<author>
		<name>Jorge Carlos Iglesias Alvarez</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I &amp;nbsp;was wondering is there any way to share my desktop in real time with red5 and flex buielder 3 
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342650&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/share-desktop-tp26342650p26342650.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342471</id>
	<title>client interruption</title>
	<published>2009-11-13T11:49:46Z</published>
	<updated>2009-11-13T11:49:46Z</updated>
	<author>
		<name>tommaso159</name>
	</author>
	<content type="html">hi,&lt;br&gt;&lt;br&gt;whats the common scenario when a client gets interrupted?&lt;br&gt;eg:&lt;br&gt;video meeting, client is identified by his clientID (red5). now he can build a little file-system in the background (upload &amp;amp; download &amp;amp; share), but all relies on the clientID. after all, i think that was not the best way, maybe i should nail that down to his email or something else unique...&lt;br&gt;
how are u guys dong this when a user has unique stuff which hee needs to access in random scopes? (my scopes are based on rand(9999999)...&lt;br&gt;thx tom&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342471&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/client-interruption-tp26342471p26342471.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342392</id>
	<title>Re: red5 can feed only one client with fme3 in h264</title>
	<published>2009-11-13T11:43:50Z</published>
	<updated>2009-11-13T11:43:50Z</updated>
	<author>
		<name>Gavriloaie Eugen-Andrei</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;base href=&quot;x-msg://178/&quot;&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;That is because you are sending more than a NAL unit.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Suppose you have a stream of NAL units like this:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;N1, N2, N3, ..., Nn&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You must find the SPS and PPS NALs and build the codec setup special packet.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;After that, you can safely send only IDR and SLICE NALs. IDR is a key frame and SLICE is a inter-frame. Ignore the rest.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I'm pretty sure that somehow you feed an IDR or SLICE immediately followed by another NAL.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For example, you could have the following situation:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;PPS,U,SPS,U,IDR,U,SLICE,U,SLICE,U,IDR,U,SLICE,U,SPS,PPS,IDR, etc&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;U - &quot;unknown&quot; NAL (ignored in fact)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You must send ONLY SPS+PPS as a codec setup and after that send ONLY IDRs and SLICEs. In your case I think you somehow send an IDR/SLICE followed by another NAL in the same RTMP video frame. That exactly thing happened to me: garbled image.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Also make sure that you cache the codec setup packet and send it to the new subscribers once they arrive.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Cheers&lt;/div&gt;&lt;div&gt;Andrei&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Nov 13, 2009, at 7:53 PM, Andy Shaules wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div bgcolor=&quot;#ffffff&quot;&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;Suffering data corruption of some kind.&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;a href=&quot;http://www.thebitstream.com/fail.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thebitstream.com/fail.png&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;FAIL&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;font face=&quot;Arial&quot; size=&quot;2&quot;&gt;:(&lt;/font&gt;&lt;/div&gt;&lt;blockquote style=&quot;padding-right: 0px; padding-left: 5px; margin-left: 5px; border-left-color: rgb(0, 0, 0); border-left-width: 2px; border-left-style: solid; margin-right: 0px; &quot;&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;----- Original Message -----&lt;/div&gt;&lt;div style=&quot;background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: rgb(228, 228, 228); font: normal normal normal 10pt/normal arial; background-position: initial initial; &quot;&gt;&lt;b&gt;From:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;To:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Sent:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Thursday, November 12, 2009 11:00 AM&lt;/div&gt;&lt;div style=&quot;font: normal normal normal 10pt/normal arial; &quot;&gt;&lt;b&gt;Subject:&lt;/b&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;Re: [Red5] red5 can feed only one client with fme3 in h264&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;Hey Lenny's back ;)&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 12, 2009 at 10:45 AM, Lenny Sorey&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lrsorey@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;padding-left: 1ex; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; &quot;&gt;Andy,&lt;br&gt;&lt;br&gt;&lt;br&gt;This sounds pretty cool.&lt;br&gt;&lt;br&gt;Lenny&lt;br&gt;&lt;div class=&quot;im&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thursday, November 12, 2009, Yann JAMAR &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;yann.jamar@...&lt;/a&gt;&amp;gt; wrote:&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; that will be nice , thx :)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; ----- Original Message -----&lt;br&gt;&amp;gt; &amp;nbsp; From:&lt;br&gt;&amp;gt; &amp;nbsp; iMDT - Tiago&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt; &amp;nbsp; Jacobs&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tiago@...&lt;/a&gt;');&amp;gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp; To:&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; Sent: Thursday, November 12, 2009 12:47&lt;br&gt;&amp;gt; &amp;nbsp; PM&lt;br&gt;&amp;gt; &amp;nbsp; Subject: Re: [Red5] red5 can feed only&lt;br&gt;&amp;gt; &amp;nbsp; one client with fme3 in h264&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Hi, i will take a look on this.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Are you using trunk&lt;br&gt;&amp;gt; &amp;nbsp; version?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Tiago&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Yann JAMAR wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I have tried to connect several clients on the&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; same h264 stream , it works only for one client after other clients have&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; only audio ...&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I use fme3 to upload my live&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; stream.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Any suggestions?&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Regards.&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; _______________________________________________&lt;br&gt;&amp;gt; Red5 mailing list&lt;/div&gt;&lt;/div&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; &amp;nbsp; _______________________________________________&lt;br&gt;&amp;gt; Red5 mailing&lt;br&gt;&amp;gt; &amp;nbsp; list&lt;br&gt;&lt;/div&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&amp;nbsp;&amp;lt;javascript:_e({}, 'cvml', '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;');&amp;gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&lt;br&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;--&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;hr&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=13&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342392&amp;i=14&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-can-feed-only-one-client-with-fme3-in-h264-tp26317120p26342392.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342114</id>
	<title>Re: Red5 - Flashlite Video Stream problem</title>
	<published>2009-11-13T11:25:17Z</published>
	<updated>2009-11-13T11:25:17Z</updated>
	<author>
		<name>M.Barros</name>
	</author>
	<content type="html">Hi Andrei,&lt;br&gt;&lt;br&gt;Sorry by the late response.&lt;br&gt;&lt;br&gt;But i found interesting things.&lt;br&gt;&lt;br&gt;I think red5 developers, help in this project &lt;a href=&quot;http://www.rtmpd.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rtmpd.com/&lt;/a&gt;. In a resume explication, this is a rtmp server similar to red5, but developed in C. It also have a folder where you can put  the .flv files (&lt;font size=&quot;2&quot;&gt;trunk/builders/cmake/applications/flvplayback/mediaFolder&lt;/font&gt;), and then acess with a interface flash. So i install this server, and try to play the same flv file, that i put in streams directory (red5). Accessing with a mobile, using flash lite 3.0.1 player the &lt;b&gt;DON&amp;#39;T &lt;/b&gt;&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;&lt;b&gt;choppy&lt;/b&gt; like around every 2-3 seconds&lt;/span&gt;&lt;/font&gt;.&lt;br&gt;
&lt;br&gt;The big difference with red5 is the way that the packing of media date is made. I saw that using Wireshark. If you use Red5, you will see the diference. The red5 send audio and video packets, the rtmpd server send the audio and video, in same packets. It&amp;#39;s i little beat strange, but it works nice, and have the same compertament, like adobe FMS. &lt;br&gt;
&lt;br&gt;May be with the help of RTMPD developers, we can change and correct this little bug. &lt;br&gt;&lt;br&gt;The file that i used to test: &lt;br&gt;&lt;a href=&quot;http://rapidshare.com/files/306546211/TheLio.flv.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rapidshare.com/files/306546211/TheLio.flv.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;Thank you very much for the attention.&lt;br&gt;&lt;br&gt;Best Regards,&lt;br&gt;&lt;br&gt;Miguel Barros&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/11/10 Gavriloaie Eugen-Andrei &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;crtmpserver@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div style=&quot;word-wrap: break-word;&quot;&gt;Can you post that little flv somewhere please? Also could you provide us with the client swf that you are using on the phone?&lt;div&gt;
&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thank you&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Nov 10, 2009, at 2:52 PM, M.Barros wrote:&lt;/div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;Hello Brian and everyone,&lt;br&gt;&lt;br&gt;I&amp;#39;m having the same problem in red5 0.9 rc1. Any news about this problem?&lt;br&gt;
&lt;br&gt;Miguel&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;2009/7/14 brian karlo gutierrez &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;brikz559@...&lt;/a&gt;&amp;gt;&lt;/span&gt;&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;

&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;&lt;div&gt;Hello everyone,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;    I have problem with the application i created.  I have a red5 version 0.8.rc3 server streaming prerecorded flv videos.  the client is the mobile phones web browser( flash lite 3.0 enabled ).  The video output is choppy like around every 2-3 seconds the video chops. I tried to use my FMS and using the same flv video file to be played and it works well. No video chopping or any problem occured.  When I switched back to red5 got again the problem. I wonder why is it the problem occured when I used the Red5 server.  Hoping for your great help.&lt;/span&gt;&lt;/font&gt;&lt;div&gt;

&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;Thanks,&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;&lt;br&gt;

&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font size=&quot;3&quot; face=&quot;arial&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;Brian&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;Red5 mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342114&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Red5---Flashlite-Video-Stream-problem-tp24476718p26342114.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26342040</id>
	<title>Re: red5 0.9 RC2 where is the admin panel?</title>
	<published>2009-11-13T11:20:16Z</published>
	<updated>2009-11-13T11:20:16Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">Create a &amp;quot;plugins&amp;quot; directory within red5, so it should be something like this:&lt;div&gt;/opt/red5/plugins&lt;/div&gt;&lt;div&gt;Then grab the admin zip file:&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://red5.googlecode.com/files/AdminPlugin-1.0.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/AdminPlugin-1.0.zip&lt;/a&gt;&lt;/div&gt;

&lt;div&gt;Unzip and restart red5.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;One last thing, this only works with version 0.9 RC2 and later.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Paul&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 10:56 AM, Catch4 Technologies &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ms@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;









&lt;div lang=&quot;DE&quot; link=&quot;blue&quot; vlink=&quot;purple&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt;Hi Paul,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt;I don´t even have the plugin folder. &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt;Where
should it be located? I just installed red5 exactly as described on &lt;a href=&quot;http://osflash.org/red5/debian&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/red5/debian&lt;/a&gt; with
the latest trunk.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt;Kind Regards&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt;Markus&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:11.0pt;color:#1F497D&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size:10.0pt&quot;&gt;Von:&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size:10.0pt&quot;&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt;] &lt;b&gt;Im Auftrag von &lt;/b&gt;Mondain&lt;br&gt;
&lt;b&gt;Gesendet:&lt;/b&gt; Freitag, 13. November 2009 19:49&lt;br&gt;
&lt;b&gt;An:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Betreff:&lt;/b&gt; Re: [Red5] red5 0.9 RC2 where is the admin panel?&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;I&amp;#39;m going to assume that you either dont have the
adminplugin.jar in red5/plugins or it failed to start.&lt;/p&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom:12.0pt&quot;&gt;Paul&lt;/p&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;On Fri, Nov 13, 2009 at 10:25 AM, vip killa &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vipkilla@...&lt;/a&gt;&amp;gt; wrote:&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;after setting up admin panel, i go to &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;,
then after filling in username and password, i get: Error in db setup
Table/View &amp;#39;APPUSER&amp;#39; does not exist.&lt;br&gt;
why is this happening?&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom:12.0pt&quot;&gt; &lt;/p&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;On Fri, Nov 13, 2009 at 3:44 AM, Mauro &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mrsanna1@...&lt;/a&gt;&amp;gt;
wrote:&lt;/p&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;2009/11/12 Mondain &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;:&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom:12.0pt&quot;&gt;&amp;gt; You can find a
&amp;quot;helper&amp;quot; page&lt;br&gt;
&amp;gt; here: &lt;a href=&quot;http://red5.googlecode.com/files/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; This will allow you to add or modify users.&lt;br&gt;
&amp;gt; Instructions:&lt;br&gt;
&amp;gt; 1. Start your server&lt;br&gt;
&amp;gt; 2. Put the admin.jsp page in red5/webapps/root directory&lt;br&gt;
&amp;gt; 3. Request the page via browser - &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; 4. Enter your info and submit&lt;br&gt;
&amp;gt; 5. Go to the admin panel and login&lt;/p&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;It&amp;#39;s all ok, thanks a lot.&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom:12.0pt&quot;&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;br&gt;
&lt;br clear=&quot;all&quot;&gt;
&lt;br&gt;
-- &lt;br&gt;
&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26342040&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-0.9-RC2-where-is-the-admin-panel--tp26300966p26342040.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26341669</id>
	<title>Re: red5 0.9 RC2 where is the admin panel?</title>
	<published>2009-11-13T10:56:53Z</published>
	<updated>2009-11-13T10:56:53Z</updated>
	<author>
		<name>Markus85</name>
	</author>
	<content type="html">&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;

&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=DE link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Hi Paul,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I don´t even have the plugin folder. &lt;/span&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D'&gt;Where
should it be located? I just installed red5 exactly as described on &lt;a href=&quot;http://osflash.org/red5/debian&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/red5/debian&lt;/a&gt; with
the latest trunk.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Kind Regards&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Markus&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;Von:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5-bounces@...&lt;/a&gt;] &lt;b&gt;Im Auftrag von &lt;/b&gt;Mondain&lt;br&gt;
&lt;b&gt;Gesendet:&lt;/b&gt; Freitag, 13. November 2009 19:49&lt;br&gt;
&lt;b&gt;An:&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;red5@...&lt;/a&gt;&lt;br&gt;
&lt;b&gt;Betreff:&lt;/b&gt; Re: [Red5] red5 0.9 RC2 where is the admin panel?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;I'm going to assume that you either dont have the
adminplugin.jar in red5/plugins or it failed to start.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;Paul&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Fri, Nov 13, 2009 at 10:25 AM, vip killa &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vipkilla@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;after setting up admin panel, i go to &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;,
then after filling in username and password, i get: Error in db setup
Table/View 'APPUSER' does not exist.&lt;br&gt;
why is this happening?&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Fri, Nov 13, 2009 at 3:44 AM, Mauro &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mrsanna1@...&lt;/a&gt;&amp;gt;
wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;2009/11/12 Mondain &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&amp;gt; You can find a
&amp;quot;helper&amp;quot; page&lt;br&gt;
&amp;gt; here:&amp;nbsp;&lt;a href=&quot;http://red5.googlecode.com/files/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; This will allow you to add or modify users.&lt;br&gt;
&amp;gt; Instructions:&lt;br&gt;
&amp;gt; 1. Start your server&lt;br&gt;
&amp;gt; 2. Put the admin.jsp page in red5/webapps/root directory&lt;br&gt;
&amp;gt; 3. Request the page via browser - &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; 4. Enter your info and submit&lt;br&gt;
&amp;gt; 5. Go to the admin panel and login&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;It's all ok, thanks a lot.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;br&gt;
&lt;br clear=all&gt;
&lt;br&gt;
-- &lt;br&gt;
&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341669&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-0.9-RC2-where-is-the-admin-panel--tp26300966p26341669.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26341551</id>
	<title>Re: red5 0.9 RC2 where is the admin panel?</title>
	<published>2009-11-13T10:49:22Z</published>
	<updated>2009-11-13T10:49:22Z</updated>
	<author>
		<name>Mondain</name>
	</author>
	<content type="html">I&amp;#39;m going to assume that you either dont have the adminplugin.jar in red5/plugins or it failed to start.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Paul&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 10:25 AM, vip killa &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vipkilla@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;after setting up admin panel, i go to &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;, then after filling in username and password, i get: Error in db setup Table/View &amp;#39;APPUSER&amp;#39; does not exist.&lt;br&gt;


why is this happening?&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 3:44 AM, Mauro &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mrsanna1@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex&quot;&gt;
&lt;div&gt;2009/11/12 Mondain &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mondain@...&lt;/a&gt;&amp;gt;:&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt; You can find a &amp;quot;helper&amp;quot; page&lt;br&gt;
&amp;gt; here: &lt;a href=&quot;http://red5.googlecode.com/files/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://red5.googlecode.com/files/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; This will allow you to add or modify users.&lt;br&gt;
&amp;gt; Instructions:&lt;br&gt;
&amp;gt; 1. Start your server&lt;br&gt;
&amp;gt; 2. Put the admin.jsp page in red5/webapps/root directory&lt;br&gt;
&amp;gt; 3. Request the page via browser - &lt;a href=&quot;http://localhost:5080/admin.jsp&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:5080/admin.jsp&lt;/a&gt;&lt;br&gt;
&amp;gt; 4. Enter your info and submit&lt;br&gt;
&amp;gt; 5. Go to the admin panel and login&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;It&amp;#39;s all ok, thanks a lot.&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Red5 mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;&lt;a href=&quot;http://gregoire.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gregoire.org/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/red5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/red5/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://code.google.com/p/blue5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/blue5/&lt;/a&gt;&lt;br&gt;


&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Red5 mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26341551&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Red5@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://osflash.org/mailman/listinfo/red5_osflash.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://osflash.org/mailman/listinfo/red5_osflash.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/red5-0.9-RC2-where-is-the-admin-panel--tp26300966p26341551.html" />
</entry>

</feed>
