Tech Support Posted July 27, 2023 Share Posted July 27, 2023 KVS default theme rendered HD flag for videos like this: Now with 6.1.2 version you can extend this to render more detailed info, such as 720p, 1080p and higher. In order to do this please edit the template in Website UI -> Page components -> include_list_videos_block_common.tpl. It should have the following line (could be slightly different in your case): {{if $item.is_hd==1}}<span class="is-hd">HD</span>{{/if}} Change it to the following line: {{if $item.resolution_type==1}}<span class="is-hd">720p</span>{{elseif $item.resolution_type==2}}<span class="is-hd is-2k">1080p</span>{{elseif $item.resolution_type>0}}<span class="is-hd is-{{$item.resolution_type}}k">{{$item.resolution_type}}K</span>{{/if}} Quote Link to comment Share on other sites More sharing options...
mixporn Posted October 23, 2023 Share Posted October 23, 2023 How can I also add for 1440p? Quote Link to comment Share on other sites More sharing options...
Tech Support Posted October 23, 2023 Author Share Posted October 23, 2023 KVS doesn't support this kind of resolution flag, after 1080p it supports 4K, 5K, 6K and 8K. Quote Link to comment Share on other sites More sharing options...
Mich Posted October 27, 2023 Share Posted October 27, 2023 On 10/23/2023 at 9:59 AM, Tech Support said: KVS doesn't support this kind of resolution flag, after 1080p it supports 4K, 5K, 6K and 8K. So, why not support 1440p (2K)? It should be included in the next update if there aren't any issues with it :) Quote Link to comment Share on other sites More sharing options...
Tech Support Posted October 27, 2023 Author Share Posted October 27, 2023 This is because 2K is considered as 1080p. We don't have free slot for 1440p. One would say we could use 3, but then given the current template code we would have it displayed as 3K (not as 2K). Quote Link to comment Share on other sites More sharing options...
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.