How to set start and end time parameters using Vimeo player? - vimeo-player

For Youtube player I can set start and end time parameters which will crop video in this range. How can I do the same thing using Vimeo player?

Vimeo JavaScript API: seekTo(seconds:Number):void and pause():void after some progress.
Vimeo ActionScript API:
seek(seconds:Number):void and pause():void after some progress.
Also basic link parameter from this Help Center article: vimeo.com/148198462#t=1m5s Stopping the video at the particular time in this case isn't implemented yet.

I was able to solve it using "setCurrentTime" for set the start of the video, and 'timeupdate' for set the end.
For the start of the video at a specific time:
Player.setCurrentTime(5);
The video will start after 5 seconds.
For the end of video:
video01Player.on('timeupdate', function(data) {
if (data.seconds > '10') {
video01Player.pause();
}
});
In this case the video will pause after 10 seconds.
timeupdate
This event fires when the playback position of the video changes, generally every 250 ms during playback, but the interval can vary depending on the browser.

Related

Flutter - show video length while recording video

I am using the camera package to record video in my app, via the
CameraController.startVideoRecording() method.
I would like to display the increasing value for the length of the video while recording.
My initial thought was to create a timer. But, I wonder if there is a better solution that is more integrated with the video recording itself, such a a callback/event that I can listen to for the current length of the video or some property related to the video that I can interrogate?
Any suggestions/recommendations or examples are appreciated.
Thanks

Listen to video progress Flutter video Player plugin

Hi I'm using the flutter video player plugin, I have something similar like this [{phrase:"something", startAt: 1039}, {phrase:"other something", startAt: 26500}] is there a way to change in ui the phrase based on the start time while the video is playing.
I have try to use a timer with a duration of 100 ms and use a player controller reference playerController.value.position.inMilliseconds and find if a phrase start at this time to scroll to this but it didn't work.
How I can't do that?
I tested the video plugin and I suggest you do the time comparison in seconds instead of milliseconds.
If you add a listener to your video plugin, unfortunately it won´t listen to it every millisecond, but it won´t fail the seconds count

How to stop video player on samsung Smart TV App without to show the black screen

Hi I'm developing Samsung app with SDK and emulator 4.5. I have a issue..The App shows by videoPlayer some videos loaded on server. My issue is: when the video play and I push button STOP, the video stops and the screen becomes black..I'd like to show the screen with the first frame of the video.
I have tried to do:
sf.service.VideoPlayer.setKeyHandler(tvKey.KEY_STOP, function()
{
if(Popup.getPopup()==Popup.getNPOPUP() && Similars.getOpenS()==false){
//videoPlayer.enterVideo(videoPlayer.url,videoPlayer.title,videoPlayer.from,videoPlayer.axoid,videoPlayer.nid); //riparte l'esecuzione del video
sf.service.VideoPlayer.stop();
videoPlayer.play();//insert function play
sf.service.VideoPlayer.pause();// stop video
videoPlayer.setFullScreen();
sf.service.VideoPlayer.show();
sf.service.VideoPlayer.pause();//stefa
}
});
I have inserted:
videoPlayer.play();//insert function play
sf.service.VideoPlayer.pause();// stop video
The play works but the pausa command not work
How can I do? Have you got a solution?
Thanks
I have inserted below
sf.service.VideoPlayer.stop();
setTimeout(function(){sf.service.VideoPlayer.pause();},2000); //delay function called of 2000 millisecond
I resolved my issue.
if delay time is not enough, you can increase the time to get the finish request.

How to delay video streaming in MPMoviePlayer

I am playing video stream from urls,in MPMoviePlayer.When I click the play button,Json
parsing happens and video is getting played after a buffer. all the videos are 30s. After the
first buffer video plays for 5-6 seconds,and stops.then again buffers and play.It continues
till 30th second.So the viewers get disturbed a lot. Is there any idea to overcome this?
one shortcut idea is you out
sleep(4);
in before playing the player
~thanking You

When my embed youtube video finished I can't play it again?

I have a working webview in Titanium with an embeded youtube video. The video plays nice, I can stop it, resume it and so on. But when the video plays to the end and I press "done". The webview goes black with the text: YouTube. Nothing else. I would like there to be the same thumb and playbutton as before I played the video.
My embeded code looks like this:
html:'<html><head></head><body style="margin:0"> <embed id="yt" src="'+tubeURL+'" type="application/x-shockwave-flash" width="150" height="113"></embed></body></html>',
I've googled this problem for days now. I hope someone can help me here.
Cheers
//Martin
EDIT: This solved it. Put &controls=1&rel=0 in the end of the URL.
YouTube players can be embedded in a web page using either an < iframe> tag or an < object> tag.
By appending parameters to the SWF or IFrame URL, you can customize the playback experience in your application. For example, you can automatically play videos using the autoplay parameter or cause a video to play repeatedly using the loop parameter or in your case hide or show controls.
controls
Values: 0, 1, or 2. Default is 1. This parameter indicates whether the video player controls will display. For AS3 players, it also defines when the Flash player will load:
controls=0 – Player controls do not display in the player. For AS3 players, the Flash player loads immediately.
controls=1 – Player controls display in the player. For AS3 players, the Flash player loads immediately.
controls=2 – Player controls display in the player. For AS3 players, the Flash player loads afer the user initiates the video playback.
The correct answer for your question would be controls=2.
SOURCE INFO: https://developers.google.com/youtube/player_parameters#controls