I'm using a fork of the fl5 project ( http://developer.longtailvideo.com/trac/browser/trunk/fl5 ) and recompile it in Flash builder with features I've implemented (draw over the movie, add text, shapes, ...).
I'm also using Amazon S3 and Cloudfront to store and stream (rtmp) my movies (.mp4, h264, 1500kbps, 720p).
The framerate is to low to show the components (texts, shapes, …) at precise cue points.
I'm using the MediaEvent.JWPLAYER_MEDIA_TIME event.
Here's an documented simplified example of my code to make me better understood ;-)
AS3 code example: https://gist.github.com/4556848
The problem is simple:
- I draw a shape at the position 3500 (ms)
- I play the movie and the mediaTime function is called every 250 ms for example.
- the shape shows randomly at the position 3550 for example, or 3600, or 3700…because the playhead position has exceeded the cue point in of my shape component.
How can I improve the framerate? (or call mediaTime function more frequently)
Any help or advices you can provide could really help me.
Many thanks.