Questions tagged [osmf]

Open Source Media Framework (OSMF) is a free, open source, development framework for building video experiences on the web and desktop. OSMF is a pure ActionScript3.0 based framework and is created by Adobe Systems.

Open Source Media Framework (OSMF) is a free, open source, development framework for building video experiences on the web and desktop. OSMF is a pure ActionScript3.0 based framework and is created by Adobe Systems.

103 questions
2
votes
2 answers

Strobe Media Playback (OSMF) events

Does someone know if Strobe Media Playback (OSMF) has events like: Streaming is ended Streaming is started Streaming error in order to access it via JavaScript? I have tried this but no joy.
NoWar
  • 36,338
  • 80
  • 323
  • 498
2
votes
0 answers

How can I allow BitmapData.draw on an HDS video loaded via OSMF

I am loading HDS video (an .f4m file) using OSMF and want to draw the video to a BitmapData. I am currently getting the following error: Exception fault: SecurityError: Error #2123: Security sandbox violation: BitmapData.draw: [url ommitted] cannot…
Simon Cave
  • 3,971
  • 4
  • 24
  • 28
2
votes
1 answer

What's the significance of "open source" media frameworks?

I was going through OSMF (Open Source Media Framework). I wonder why it's called open-source. Are the videos that I create via flash IDE are not free? Can't I publish them without paying? Are the videos on youtube paid videos? Or am I confusing…
Vishwas
  • 1,533
  • 2
  • 19
  • 40
1
vote
1 answer

Embedding OSMF (2.0) into a Flex App

I'm trying to emebed a simple OSMF player into my fex application. But it's not working. Here's my code :
ismail
  • 11
  • 2
1
vote
1 answer

Flash Player - osmf is not working with f4m

I created a video player from osmf library. When I stream live video with rtmp link by flash media server eveything is alright. But when I want to use it for http live streaming with f4m link is not working. How to fix this issu? I can't find any…
goodm
  • 7,275
  • 6
  • 31
  • 55
1
vote
1 answer

Listening to current time change with an OSMF proxy plugin

I am trying to create a proxy plugin for OSMF that will serve as an analytics plugin, that tracks certain events. I want to track the current time of the video. In the set method for the proxied element, I have the…
ustun
  • 6,941
  • 5
  • 44
  • 57
1
vote
0 answers

OSMF Playing Event

I am using OSMF and noticed when seeking almost immediately after, the "playing" event is fired causing my buffering icon to disappear almost instantly. The playing event is fired even though the video isn't actually playing. It takes a good 3-5…
Ronnie
  • 11,138
  • 21
  • 78
  • 140
1
vote
1 answer

setting a buffer graphic using OSMF

I'm building a pretty simple player and have a a buffer size set on my MediaPlayer (mediaPlayer.bufferTime = BUFFER_TIME). That's working but I want to show a graphic whenever it starts to buffer. I have an Event Listener on my mediaplayer to show…
Mark P.
  • 282
  • 1
  • 4
  • 16
1
vote
1 answer

Spark Video Player: seek() for Local Playback

I am playing back local video in an AIR application using the Spark Video Component. Using the seek method does not provide accurate positioning as per its description: The playheadTime property might not have the expected value immediately …
1
vote
2 answers

Flex 4.1 and OSMF 1.5 - does it work?

The Flex 4.1 SDK ships with OSMF 1.0. For new features, OSMF can be updated. Adding the updated osmf.swc to a Flex 4.1 project, I get error messages as soon as I add an OSMF component in my application (VideoDisplay in the sceenshot): Screenshot:…
1
vote
1 answer

after updating OSMF.swf: Type was not found or was not compile-time constant: NetGroup and DimensionEvenet

using Flash Builder 4 (and installed flashbuilder401-patch-mac). want to use OSMF: I removed OSMF.swf from project flex 4.1 libs and added osmf.swf v1.5 to libs I installed flashplayer_10_plugin_debug_ub-1 trying to build produces following…
doree
  • 11
  • 1
1
vote
3 answers

OSMF AS3/FlashCS5 Error: Type was not found [...]: StageVideoEvent

I am playing around with OSMF and have a problem running even a super simple example. I am running Flash CS5 on Win7 in VirtualBox on Arch Linux (just saying because I thought that this may have something to do with the underlying stuff). Also I am…
o1iver
  • 1,805
  • 2
  • 17
  • 23
1
vote
2 answers

OSMF Player stops working when deployed onto Apache Tomcat server

I downloaded OSMF Sample player and opened osmf.html, (C:\player\osmf.html)it worked perfectly without any problem. The same file when I deployed onto tomcat server,(http://localhost:8080/player/osmf.html) I get the error "The specified capability…
Antony
  • 1,608
  • 1
  • 20
  • 27
1
vote
0 answers

lighttpd mod_flv_streaming with Flex 4 OSMF VideoPlayer component

I try to get the OSMF working with lighttpd FLV streaming. The mod_flv_streaming works through appending a start=keyframe parameter to the FLV URL. The client has to search the nearest keyframe when the user hits the scrub bar to jump to a different…
valentin
  • 511
  • 3
  • 16
1
vote
1 answer

OSMF/ActionScript 3 - detecting the end of a live RTMP stream, etc

What's the best way to check whether there is video data (or not) in a live RTMP stream? For example, if a broadcast terminates, can I auto-detect that condition, to perform some sort of "thank you for watching" behavior? Also, how can I know if a…