Tanjiro Posted November 16 Posted November 16 Hello, I see there is some sites that support this feature, user watch some videos and there is section something like "Recently watched" or "History watched videos" Is this feature available for KVS ? Thank you Quote
Tanjiro Posted November 17 Author Posted November 17 Oh, and the feature that can fast forward 10 seconds before and after, I hope KVS could update this Quote
Tech Support Posted November 18 Posted November 18 On 11/16/2024 at 4:59 PM, Tanjiro said: I see there is some sites that support this feature, user watch some videos and there is section something like "Recently watched" or "History watched videos" Yes, this is supported by KVS but not available in the default theme. This can be displayed by list_videos block with mode_history parameter switched on. One issue with this functionality is that it will be updated within 5 minutes, e.g. the history display has some delay due to stats update delay. May be fixed in future. On 11/17/2024 at 5:45 AM, Tanjiro said: Oh, and the feature that can fast forward 10 seconds before and after, I hope KVS could update this What is this feature about? 1 Quote
Tanjiro Posted November 18 Author Posted November 18 1 hour ago, Tech Support said: What is this feature about? It's like youtube, double tap to fast forward & rewind 10 seconds or button that has same feature like that Quote
PeladaNet Posted November 18 Posted November 18 On 11/17/2024 at 2:45 AM, Tanjiro said: Oh, and the feature that can fast forward 10 seconds before and after, I hope KVS could update this in my kvs i added this function but it was necessary to pay for it Quote
Tech Support Posted November 19 Posted November 19 20 hours ago, Tanjiro said: It's like youtube, double tap to fast forward & rewind 10 seconds or button that has same feature like that KVS player API supports skipping, but there are no GUI options for this available except for timeline. You can add the following code to implement skipping actions: <script> player_obj.listen('ktVideoProgress', function(time) { player_obj['currentTime'] = time; }); function player_seek(value) { player_obj.seek(parseInt(player_obj['currentTime']) + value); } </script> <a onclick="player_seek(10)">Skip forward</a> <a onclick="player_seek(-10)">Skip backward</a> 1 Quote
PeladaNet Posted November 19 Posted November 19 8 hours ago, Tech Support said: KVS player API supports skipping, but there are no GUI options for this available except for timeline. You can add the following code to implement skipping actions: <script> player_obj.listen('ktVideoProgress', function(time) { player_obj['currentTime'] = time; }); function player_seek(value) { player_obj.seek(parseInt(player_obj['currentTime']) + value); } </script> <a onclick="player_seek(10)">Skip forward</a> <a onclick="player_seek(-10)">Skip backward</a> such a simple function and I was charged 30 dollars by HTML script to add this function, I feel like an idiot now 🙃 1 Quote
Tech Support Posted November 19 Posted November 19 You still need to integrate it into design somehow, this is not easy as it may look. 1 Quote
Tanjiro Posted November 19 Author Posted November 19 5 hours ago, Tech Support said: You still need to integrate it into design somehow, this is not easy as it may look. Indeed, although you gave the code but I have no idea how to set it and where to put it in Also I need to put it in this position (and only this position) but I have no idea how to put it in, there literally no space for it (on mobile) Quote
Tech Support Posted November 20 Posted November 20 Yes, this is not an easy task and may require player menu design changes. Quote
viper Posted November 20 Posted November 20 On 11/19/2024 at 6:39 PM, PeladaNet said: such a simple function and I was charged 30 dollars by HTML script to add this function, I feel like an idiot now 🙃 Who charged 30 dollars? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.