I am developing a Windows Phone 8 app in which i want to display the list of Youtube videos from my channel. It should allow the user to play the video also.
Is there any third party library which can be used for Windows Phone 8 for working with Youtube ??
YouTube vedios can be played using MytoolKit Library
http://mytoolkit.codeplex.com/wikipage?title=YouTube
Related
This is more related to the UX of the actual Apple TV device.
After building up a video playlist of 3 mediaItem, how can I get to the next mediaItem using the remote control?
If you are doing your app in TVMLJS, it seems the skip functionality is not supported yet.
Source: https://forums.developer.apple.com/message/66628#66628
I have a problem while using MediaElement to play video. The video isn't shown in correct orientation if its VideoProperties.Orientation is different from VideoOrientation.Normal (e.g. VideoOrientation.Rotate90). Those videos can be recorded by native camera app while holding the phone vertically. It's strange that Windows Phone native video player also has the same problem and is always locked in landscape mode (this doesn't happen with IOS or Android video player). My question is : Does Windows Phone native video player use the same API to play video like MediaElement? In that case, is it possible that that API will be updated to fix this problem in future Windows Phone update? I need to confirm those things to make a suitable workaround for this problem.
Can Any one help me am new in windows phone.
Play any kind of videos in windows phone 8 like (youtub,brightcove,dvidshub)
You could simply use the Youtube class to play the youtube videos from Codeplex. Have a look into this
Reference:
How to Play youtube videos in windows phone 7?
http://sviluppomobile.blogspot.com/2013/07/embed-youtube-videos-into-your-windows.html
If you want to play a normal video from your local files you could use the MediaElement. This sample could be helpful.
Hope it helps!
you can have Reference form Nokia Developer Article given here (Video Playback with MediaElement in Windows Phone).
-This article demonstrates how to play a video using the MediaElement Windows Phone control and also how to play video from remote server in the default media player using MediaPlayerLauncher.
I am new to Windows Phone app development and I would like to know what is the best way to embed YouTube videos in Windows Phone 8 App? I would like to provide a list of videos with thumbnails and user should be able to click and watch the video just like any typical app.
Thanks a lot.
I had tried some third party SDKs while I was doing this for Windows 8 but was not happy with any of the solutions.
Finally I resorted to embedding the video in a Web View control and the output was pretty desirable. I have not tried this on Windows Phone but should work as it did on Windows 8 since the underlying browser is the same. Try it out:-
string html = #"<style> body{margin:0; padding:0;} iframe{width:100%;height:480px;}#media screen and (max-width:300px) { iframe{width:100%;height:180px;}} </style><iframe style=""padding:0px;margin-bottom:-20px;"" src=""http://www.youtube.com/embed/" + videoId + #"?rel=0"" frameborder=""0"" allowfullscreen></iframe>";
videoView.NavigateToString(html);
Let me know if this worked for you
First try creating sample video application in Windows Phone App Studio which uses YouTube API services and display videos in application.
Download the source code and refer, How it uses YouTube API services and gets video. Source code will be in MVVM pattern and its the best way to implement. You may get some basic knowledge on how to develop apps that uses YouTube services.
You can refer the source code which uses YouTube API services, which I generated for more information.
I want to implement camera in my application with HTML5 for blackberry 10 and in search of that I found this page https://developer.blackberry.com/html5/apis/blackberry.media.camera.html#.takePicture .And after reading that I concluded that camera application is not supported by Blackberry 10 with HTML5.
Am I right??
Please suggest!!!
You can in fact invoke a camera card, which will slide open a native card to take a picture or video. It will return the file system path in a callback when the card is closed.
If you want to capture media directly within your app, take a look at getUserMedia and the canvas. Here's a good article on it:
http://www.html5rocks.com/en/tutorials/getusermedia/intro/
I hope this helps.
John