0

I was wondering does Azure Media Player has some Netflix-like continue the playback where left off feature or plugin, do implement into the my MVC app?

2 Answers2

1

you need to record the previous time somewhere(*) and then by setting currentTime after the playing event (after the source is set) you should have what you want.

Kamran
  • 1,258
  • 1
  • 16
  • 28
0

Correct, you can simply make a plugin or script it up to cache the current position for the user by Video ID into a cloud database. When user logs back in or returns to the video, just request the video-id, user-id combination and check the last known position value. Move the current position of the player ahead if it exists.

johndeu
  • 2,494
  • 1
  • 11
  • 10