OnSeek Event - Shorten the Search Process

is it possible to abbreviate the search process? My URLs expire after 10 seconds, so I have to request a new URL when the user clicks on the search.

onSeek: function(event)
{
     getFreshUrl({videoId:'XXXXX', action:get}, function(data)
     {
        jwplayer().load({file: data.url, start: event.offset});
     });
     // STOP SEEKING
}

Is it possible?

Thanks in advance! Peter

+5
source share
1 answer

Perhaps a little late:

You are using a URL that has already been verified and will stop working after x seconds.

Try using the verification URL instead of the verified URL (so that all queries during the game and search will be checked again).

I do not see the answer from the verification server / page, but for this I need to redirect it.

0
source

All Articles