Closed GoogleCodeExporter closed 9 years ago
I'll take a look, but my first thought is: did you set a new name for your file
that differs from the one red5 creates when recording?
Original comment by mondain
on 28 Aug 2013 at 3:26
Hi, mondain.
Yes, I set a different name to every record stream when call
NetStream.publish(diffrentName, "record") method in FLEX client.
Original comment by Taly....@gmail.com
on 29 Aug 2013 at 1:21
Try a newer version of 1.0.2 and let me know if you still see the same issue.
It looks like this consumer is uninitialized at some point, but the queue is
not cleared for the particular stream.
Original comment by mondain
on 29 Aug 2013 at 2:49
Hi, mondain.
What do you mean "a newer version of 1.0.2"? (Wait for a newer version of
1.0.2, like '1.0.2 Final'?)
By the way, I did the same test with 1.0.0 Final Version today, and 1.0.0
haven't this issues.
Original comment by Taly....@gmail.com
on 29 Aug 2013 at 4:51
If you want to display stream information and not do an "extra" recording, then
you should not be extending RecordingListener; That class records to a file!
Create your class implementing IStreamListener and add it to your stream in the
streamPublishStart method.
@Override
public void streamPublishStart(final IBroadcastStream stream) {
log.debug("streamPublishStart - stream name: {}", stream.getPublishedName());
if (stream instanceof ClientBroadcastStream) {
// create and add the stream listener
((ClientBroadcastStream) stream).addStreamListener(new MyCustomStreamListener());
}
}
Original comment by mondain
on 29 Aug 2013 at 7:50
Also the latest stable "trunk" builds can be found here:
https://builds.apache.org/job/Red5%20Trunk/
Original comment by mondain
on 29 Aug 2013 at 7:52
Original issue reported on code.google.com by
Taly....@gmail.com
on 28 Aug 2013 at 9:20Attachments: