Search the web
Sign In
New User? Sign Up
brightcove-dev · NEW BC Forums: http://tinyurl.com/7zrqce
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Events to listen for in order to show a "post frame" before next vid   Message List  
Reply | Forward Message #4118 of 4279 |
Re: Events to listen for in order to show a "post frame" before next video starts


* Using the API, which module allow for checking of automaticAdvance
(step 2 & 7) and how do you get a handle to it?
* Using the API, how do you programatically advance to the next video
in the playlist

--- In brightcove-dev@yahoogroups.com, Brian Deitte <bdeitte@...>
wrote:
>
> It's been suggested that you shut off automatic advance in the list
and then advance to the next in the list when postroll is completed.
>
> So you need to listen for the videoComplete event, and within that
listener do the following things:
>
> 1. Block the playlist area with an overlay so that no other videos
can be clicked on.
> 2. Check if automaticAdvance is on through the API
> 3. If automaticAdvance was on, turn off automaticAdvance through
the API
> 4. Show postframe for X seconds
> 5. Hide postframe
> 6. Unblock the playlist area
> 7. If automaticAdvance was on, turn automaticAdvance back on
through the API
> 8. If automaticAdvance was on, advance to the next video through
the API
>
> ________________________________
> From: brightcove-dev@yahoogroups.com [mailto:brightcove-
dev@yahoogroups.com] On Behalf Of Brian Deitte
> Sent: Monday, December 29, 2008 3:59 PM
> To: brightcove-dev@yahoogroups.com
> Subject: RE: [brightcove-dev] Re: Events to listen for in order to
show a "post frame" before next video starts
>
>
> Thanks for the details. I've heard of ScanScout, but I wasn't sure
exactly how you were using Brightcove. I wish I could help here, but
I'm scratching my head at the moment. It could work if you could
programmatically assign a postroll ad to a video (which isn't
possible) or if there was a way to pause a video before it started
and then unpause it again (which I don't think is possible). I'm
asking around to see if anybody else has an idea on this. -Brian
>
> ________________________________
> From: brightcove-dev@yahoogroups.com [mailto:brightcove-
dev@yahoogroups.com] On Behalf Of marathonburke
> Sent: Monday, December 29, 2008 3:33 PM
> To: brightcove-dev@yahoogroups.com
> Subject: [brightcove-dev] Re: Events to listen for in order to show
a "post frame" before next video starts
>
>
> Brian,
> We're an ad network with an AdSwf that delivers overlay ads during
> the stream. We are loaded when the video player is loaded and on the
> start of each content (whether manually started or automatically in
> started from playlist rotation), we start serving overlays.
>
> At the end of a video we want to show our postframe. However, if the
> site's player is set up to auto-advance, we need to halt that auto-
> advance while our postframe is showing.
>
> So to answer your questions:
> * The adSwf has 2 roles: show overlays during the video and a
> postframe after completion (but not let the next video begin)
> * We do not control the player, so we have to work around auto-
> advance that might exist for the player
>
> --- In brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
40yahoogroups.com>, Brian Deitte <bdeitte@>
> wrote:
> >
> > How is the ad SWF triggered? ad SWFs are supposed to be triggered
> at specific ad policy events. For instance, an ad SWF can happen at
> the postroll, as set up in the ad module. It sounds to me like this
> ad SWF just stays around?
> >
> > Can you just use "videoComplete" here, or does it have to be when
> the video is changed?
> >
> > If it helps, you can also turn off (and then back on)
> automaticAdvance through the API. It is a property of List and
> TileList.
> > ________________________________
> > From: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
40yahoogroups.com> [mailto:brightcove-
> dev@yahoogroups.com<mailto:dev%40yahoogroups.com>] On Behalf Of
marathonburke
> > Sent: Monday, December 29, 2008 2:46 PM
> > To: brightcove-dev@yahoogroups.com<mailto:brightcove-dev%
40yahoogroups.com>
> > Subject: [brightcove-dev] Re: Events to listen for in order to
show
> a "post frame" before next video starts
> >
> >
> > This is happening in an AdSwf.
> >
> > I was going to use "videoChange" and when that happens, I'd do the
> > following:
> > 1) VideoChange is thrown
> > 2) Pause Video
> > 3) Show Postframe for X seconds
> > 4) Hide Postframe
> > 5) Resume Video
> >
> > Not the most elegant, but it would do the trick.
> >
> > However, I saw that "videoChange" event has been removed?
> > http://help.brightcove.com/publisher/docs/intro/known-
> issues.cfm#BC14359
> >
>





Mon Dec 29, 2008 9:55 pm

marathonburke
Online Now Online Now
Send Email Send Email

Forward
Message #4118 of 4279 |
Expand Messages Author Sort by Date

I want to show an "postframe" after the video is over and BEFORE the next video auto-starts. I could listen for "videoComplete", but how would one stop the...
marathonburke
Online Now Send Email
Dec 29, 2008
5:42 pm

Is this work being done in an ad SWF, a SWFLoader component, or outside of both of these? ________________________________ From: brightcove-dev@yahoogroups.com...
Brian Deitte
bdeitte
Online Now Send Email
Dec 29, 2008
7:42 pm

This is happening in an AdSwf. I was going to use "videoChange" and when that happens, I'd do the following: 1) VideoChange is thrown 2) Pause Video 3) Show...
marathonburke
Online Now Send Email
Dec 29, 2008
7:46 pm

How is the ad SWF triggered? ad SWFs are supposed to be triggered at specific ad policy events. For instance, an ad SWF can happen at the postroll, as set up...
Brian Deitte
bdeitte
Online Now Send Email
Dec 29, 2008
8:16 pm

Brian, We're an ad network with an AdSwf that delivers overlay ads during the stream. We are loaded when the video player is loaded and on the start of each...
marathonburke
Online Now Send Email
Dec 29, 2008
8:33 pm

Thanks for the details. I've heard of ScanScout, but I wasn't sure exactly how you were using Brightcove. I wish I could help here, but I'm scratching my...
Brian Deitte
bdeitte
Online Now Send Email
Dec 29, 2008
8:59 pm

It's been suggested that you shut off automatic advance in the list and then advance to the next in the list when postroll is completed. So you need to listen...
Brian Deitte
bdeitte
Online Now Send Email
Dec 29, 2008
9:08 pm

Thanks for the steps, Under which module can I toggle autoAdvance (steps 2 & 7)? Also, how to jump to the next video (step 8)? ... and then advance to the next...
marathonburke
Online Now Send Email
Jan 15, 2009
10:19 pm

* Using the API, which module allow for checking of automaticAdvance (step 2 & 7) and how do you get a handle to it? * Using the API, how do you...
marathonburke
Online Now Send Email
Jan 15, 2009
10:19 pm

These steps should do the trick -- thanks for the help, Brian! ... and then advance to the next in the list when postroll is completed. ... can be clicked on. ...
marathonburke
Online Now Send Email
Jan 15, 2009
10:20 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help