This is a message.

Forum user: oytunsan

Basic information

Registered Nov 14, 2008
Last login yesterday 11:07
Forum posts 7
Direct URL http://www.flowplayer.org/forum/users/6266

Latest forum posts

Posts:

Registered:

two connection providers

Posted: Nov 16, 2009

Hi,

Can I use both secure streaming and clustering at the same time ?

Posts:

Registered:

» compile securestreaming

Posted: Jul 26, 2009

Hi,

It seems the source download of securestreaming misses the as3corelib.swc in lib/corelib dir. I downloaded and add it everything works fine.

Posts:

Registered:

compile securestreaming

Posted: Jul 26, 2009

Hi,

I cannot compile securestreaming plugin. Any help appreciated

Error is:

compile:
[echo] compiling with lib/corelib
[echo] compiling with
[exec] Loading configuration file /home/oytun/flex_sdk_3/frameworks/flex-config.xml
[exec] command line: Error: unable to open 'lib/corelib'
[exec]
[exec] Use 'mxmlc -help' for information about using the command line.

BUILD FAILED
/home/oytun/Desktop/flowplayer.devkit/plugin-build.xml:184: The following error occurred while executing this line:
/home/oytun/Desktop/flowplayer.devkit/plugin-build.xml:29: The following error occurred while executing this line:
/home/oytun/Desktop/flowplayer.devkit/plugin-build.xml:175: The following error occurred while executing this line:
/home/oytun/Desktop/flowplayer.devkit/plugin-build.xml:95: exec returned: 1

Posts:

Registered:

I think I have done this :)

Posted: Mar 21, 2009

Hi,

If you change the NetStreamControllingStreamProvider.as like below you will have secure token working

....

if (_stopping) {
log.info("_onNetStatus(), _stopping == true and will not process
the event any further");
return;
}

if (event.info.code == "NetConnection.Connect.Success") {

if (event.info.secureToken != null) {
_connection.call("secureTokenResponse", null,
TEA.decrypt(event.info.secureToken,
"XXX"));
}

createNetStream();
start(null, clip, _pauseAfterStart);
} else if (event.info.code == "NetStream.Buffer.Empty") {
dispatchPlayEvent(ClipEventType.BUFFER_EMPTY);
}

....

Posts:

Registered:

Resolved

Posted: Nov 29, 2008

Upgrading adobe flashplayer in IE solved the problem.

What is the minimum version of flashplayer is required ?

Posts:

Registered:

getTime() function returns object on IE

Posted: Nov 22, 2008

getTime() function returns object on IE, while it returns a decimal on firefox.

I am using flowplayer-3.0.0-rc5.js and flowplayer-3.0.0-rc4.swf.

Also api docs athttp://www.flowplayer.org/documentation/api.html states that it returns an integer.

Thanks in advance...
Oytun

Posts:

Registered:

cuepoints fire early on rtmp

Posted: Nov 14, 2008

Hi,

cuePoints work perfectly without rtmp.

When I use rtmp (red5 server) cuepoint events fire 4-5 seconds earlier then expected. This holds for both embedded cuepoints(flvtool2) or declarative cuepoints as array ([5,10,15]).

If you need example code to reproduce the error I will gladly post them.

Thanks in advance.