Home
> JC Player 1 (discontinued version)
> Topic
DIsable auto rewind?
Posted by sammi
|
DIsable auto rewind? September 28, 2008 02:55PM | Registered: 4 years ago Posts: 10 |
|
Re: DIsable auto rewind? September 29, 2008 01:52AM | Admin Registered: 4 years ago Posts: 38 |
|
Re: DIsable auto rewind? September 29, 2008 04:33PM | Registered: 4 years ago Posts: 10 |
Roger that.
Would you consider a feature request regarding this? I think it is often quite useful to have the video stop on the last frame.
Even for my current project that is a specific requirement that I must fulfill. I will possibly do some hack - and possibly use another player. That would be to bad because I really like this player.
Best,
Sammi
Would you consider a feature request regarding this? I think it is often quite useful to have the video stop on the last frame.
Even for my current project that is a specific requirement that I must fulfill. I will possibly do some hack - and possibly use another player. That would be to bad because I really like this player.
Best,
Sammi
|
Re: DIsable auto rewind? September 30, 2008 01:42AM | Admin Registered: 4 years ago Posts: 38 |
|
Re: DIsable auto rewind? December 09, 2008 09:52AM | Registered: 4 years ago Posts: 13 |
|
Re: DIsable auto rewind? December 10, 2008 01:20AM | Admin Registered: 4 years ago Posts: 38 |
The standard functionality of the component is that when the video ends, the playhead moves to the beginning of the timeline, to the first frame of the video. The image that is displayed through the startPhotoSource property is an image that is shown until the video gets loaded, so there won't be an empty background displayed while the viewer waits.
|
Re: DIsable auto rewind? December 10, 2008 02:28PM | Registered: 4 years ago Posts: 13 |
|
Re: DIsable auto rewind? December 11, 2008 12:53AM | Admin Registered: 4 years ago Posts: 38 |
|
Re: DIsable auto rewind? December 11, 2008 11:25AM | Registered: 4 years ago Posts: 13 |
|
Re: DIsable auto rewind? December 12, 2008 01:12AM | Admin Registered: 4 years ago Posts: 38 |
No, JCPlayer is only for playing the video file. You cannot edit the video clips with it. Maybe this will help you out: http://www.flvjoiner.com/flv-editor.html.
|
Re: DIsable auto rewind? December 16, 2008 12:04PM | Registered: 4 years ago Posts: 13 |
The answer I got from Neaga is that the images are displayed at the beginning, while the video files are loading. This is how the player was designed to work. However, you could use a workaround for this, by reloading the video file when the video reached the end. So you need to listen for the STOP event and set the videoURL property of the player again to your clip. This will reload the clip and load the jpg file.
But when I try to put any actionscript, I get this warning, Warning: 5002: The frame scripts of the symbol 'JCPlayer ' have been ignored because a compiled clip contains a definition for JCPlayer. To override the JCPlayer definition, place a custom class file within your classpath.
But when I try to put any actionscript, I get this warning, Warning: 5002: The frame scripts of the symbol 'JCPlayer ' have been ignored because a compiled clip contains a definition for JCPlayer. To override the JCPlayer definition, place a custom class file within your classpath.
|
Re: DIsable auto rewind? December 17, 2008 01:56AM | Admin Registered: 4 years ago Posts: 38 |
|
Re: DIsable auto rewind? December 17, 2008 03:42AM | Registered: 4 years ago Posts: 1 |
|
Re: DIsable auto rewind? December 18, 2008 01:13AM | Admin Registered: 4 years ago Posts: 38 |
Here's an example:
You need to change playerInstance with the instance name you gave to your player.
import JCPlayerEvent;
playerInstance.addEventListener(JCPlayerEvent.STOP, reloadVideo);
function reloadVideo(evtObj:JCPlayerEvent):void {
var newURL : String = playerInstance.videoURL;
playerInstance.videoURL = newURL;
}You need to change playerInstance with the instance name you gave to your player.
|
Re: DIsable auto rewind? June 19, 2009 09:27PM | Registered: 3 years ago Posts: 1 |
|
Re: DIsable auto rewind? December 04, 2009 03:03PM | Registered: 3 years ago Posts: 1 |
|
Re: DIsable auto rewind? December 10, 2009 10:21AM | Registered: 4 years ago Posts: 76 |
|
Re: DIsable auto rewind? February 12, 2010 10:09AM | Registered: 3 years ago Posts: 2 |
|
Re: DIsable auto rewind? December 08, 2010 04:32PM | Registered: 3 years ago Posts: 1 |
|
Re: DIsable auto rewind? December 09, 2010 07:16AM | Admin Registered: 4 years ago Posts: 65 |
Sorry, only registered users may post in this forum.






