Ticket #373 (closed defect: fixed)
Mid-rolls broken with Flowplayer 3.2.8
| Reported by: | paul | Owned by: | paul |
|---|---|---|---|
| Priority: | blocker | Milestone: | OVA for Flowplayer (v1.0.1) |
| Component: | OVA for Flowplayer | Version: | OVA for Flowplayer (trunk) |
| Keywords: | Cc: | ||
| Forum thread: |
Description
Mid-roll configurations throw a Flowplayer exception with 3.2.8.
See:
http://localhost/ova/ova.flowplayer/examples/ad-formats/http/example05.html
Change History
Note: See
TracTickets for help on using
tickets.

Fixed in 1.0.1 RC2 (Build 10).
In OVA for Flowplayer OpenAdStreamer.as:
modifyTrackingCuepoints() has logic that restructures the cuepoints after an onMetaData event to make sure that the cuepoints match the new length of the video.
In 3.2.7 originalCuepoints is an array of arrays of cuepoints [ [ { cuepoint }, { cuepoint } ], [ { cuepoint }, .... ] ] but in 3.2.8, it's an array of cuepoints [ { cuepoint }, { cuepoint }, ... ]
Modified the modifyTrackingCuepoints() code to differentiate based on whether or not an array of arrays is returned or just an array of elements.