GBMan
GBMan

Reputation: 495

Where is StrobeMediaPlayback.swf in OSMF 2.0?

I just download the OSMF 2.0 zip on sourceforge (here) and there is no StrobeMediaPlayback.swf in the folder?

I'm confused. Somebody can enlight me?

Thanks,

Upvotes: 0

Views: 1107

Answers (1)

user2342460
user2342460

Reputation: 114

You won't find it, you will have to build it yourself using Flex builder or the mxmlc application command line compiler for flex.

First install mxmlc as described here: https://github.com/johansyd/flex-installer

The StrobeMediaPlayback source is found in: ./OSMF/player/StrobeMediaPlayback

cd OSMF/player/StrobeMediaPlayback

download the OSMF.swc and place it in: OSMF/player/StrobeMediaPlayback/libs

Then do:

mxmlc src/StrobeMediaPlayback.as -library-path+=libs -library-path+=assets -sp="src/" -static-link-runtime-shared-libraries=true -o bin-debug/StrobeMediaPlayback.swf -swf-version=11 -debug=false  -default-script-limits 1000 60 -define CONFIG::LOGGING false -define CONFIG::FLASH_10_1 true

You should then have a StrobeMediaPlayback.swf you can use.

Upvotes: 0

Related Questions