This is a migrated thread and some comments may be shown as answers.

HDSource / HD not work

3 Answers 43 Views
MediaPlayer
This is a migrated thread and some comments may be shown as answers.
Kjell
Top achievements
Rank 1
Iron
Kjell asked on 17 Jun 2014, 04:41 PM
The HD button / function not work!

​Even if I link to another hd movie the "dansskola.mp4" still playing.
"showskola_1080p.mp4" should play in HD mode....
RadMediaPlayer1.Source = "~/video/dansskola.mp4"
RadMediaPlayer1.HDSource = "~/video/showskola_1080p.mp4"
RadMediaPlayer1.Poster = "~/posters/dansskola.jpg"


And how do I choose which social media i want to use in the ShareButton function?
I might just want to take advantage of Facebook and Twitter....

3 Answers, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 20 Jun 2014, 11:55 AM
Hello Kjell,

Can you verify that you are testing with the latest release version of the controls?

I have created a sample web site to demonstrate that the property works as expected. Please run the attached application and let me know about the result.

Regards,
Eyup
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Kjell
Top achievements
Rank 1
Iron
answered on 22 Jun 2014, 11:04 AM
Yes, it did work when i update from version 2014.1.403.45 to 2014.2.618.45

​And how do I choose which social media i want to use in the ShareButton function?
I might just want to take advantage of Facebook and Twitter....
0
Eyup
Telerik team
answered on 26 Jun 2014, 07:03 AM
Hi Kjell,

In this case, you can use the following approach:
AddHandler player.Load, Sub(s, a)
                            With player.TitleBar.SocialShare.MainButtons
                                .Clear()
                                .Add(New RadSocialButton() With {.SocialNetType = SocialNetType.ShareOnFacebook})
                                .Add(New RadSocialButton() With {.SocialNetType = SocialNetType.ShareOnTwitter})
                            End With
                        End Sub

That should do the trick. Looking forward to your reply.

Regards,
Eyup
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
MediaPlayer
Asked by
Kjell
Top achievements
Rank 1
Iron
Answers by
Eyup
Telerik team
Kjell
Top achievements
Rank 1
Iron
Share this question
or