![]() |
Platforms, Frameworks & Libraries »
Windows Presentation Foundation »
General
Beginner
License: The Code Project Open License (CPOL)
Stream YouTube Videos In WPFBy Sacha BarberWPF : A simple article on using WebBrowser to Stream YouTube videos |
C# (C#3.0), .NET (.NET3.5), WPF, Architect, Dev, Design
|
||||||||||
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
This is going to be a quite small article, and probably not that useful, but I think its quite cool all the same. Basically this article shows how to play streaming videos from YouTube in WPF.
Thats it.
So if this doesn't float your boat I'd suggest stop reading right here.
This article also reads from an RSS feed.....I know again, god you are always doing that Sacha. Well I promise I have other stuff, it's just that I like images and videos in WPF apps, and RSS feeds give you a nice diverse selection.
This article does rely on 1 peice of software being installed, which is as follows:
Microsoft .NET Framework 3.5 Service pack 1 Beta
This is required for the new WebBrowser control that comes with the SP1 installation
The app when running is yet another of my RSS feed search type apps. I promise this is the very last one of these. I just had to get this YouTube thing out of my system, so there you heard me say it "NO MORE RSS FEED WPF ARTICLES!!!!!". Never. Never. I'm done with those.
Here are a couple of screen shots assuming you clicked the Most Popular button.
You are free to drag the YouTube feed items around, providing you are currently in Drag mode. Where the Mode is changable using the right click context menu.
When you toggle out of Drag mode, you will be in Play mode, so will no longer be able to move the video items around. Instead when you move the mouse over an video item you will see a PLAY icon appear.
When you then click this PLAY icon a new video viewer will be shown where you can view the YouTube video. This window is animated into/out of view. You should be able to open the viewer window whenever you are in Play mode and click on a unique video item.
So that's the screen shots done with, so how does it all work.
Well starting at the top, the RSS feed, this is actually just a bit of XLINQ, as follows
var xraw = XElement.Load(string.Format(SEARCH,keyWord));
var xroot = XElement.Parse(xraw.ToString());
var links = (from item in xroot.Element("channel").Descendants("item")
select new YouTubeInfo
{
LinkUrl = item.Element("link").Value,
EmbedUrl = GetEmbedUrlFromLink(item.Element("link").Value),
ThumnailUrl =
item.Elements().Where(
child => child.Name.ToString().Contains("thumbnail")
).Single().Attribute("url").Value
}).Take(20);
return links.ToList<YouTubeInfo>();
So this is used within the YouViewerMainWindow to create a bunch
of YouTubeResultControl controls, which are then added to a DragCanvas.
I can take no credit for the DragCanvas, I stole that straight
from Josh Smith, using this
code
There is nothing special to say about the YouTubeResultControl
controls, they are fairly simply controls, that simply contain a single YouTubeInfo
item which is used within an event that is raised when the user clicks the internal
YouTubeResultControl controls play button. The YouViewerMainWindow
uses the YouTubeInfo item to pass to the Viewer control,
which in turn is resposible for playing the actual video.
So far nothing special right, all very easy stuff.
The only part that's a bit interesting is that we can play the YouTube video
in the new WebBrowser control. This is neat.
How does this work. Normally WPF only lets you play Windows Media Player supported files that are loca,l or MMS prefixed streams.
YouTube is neither of these, so how does it work. Well luckily the RSS feed contains enough information for us to do some string manipulation to get a new Url, that points to something much more interesting.
Basically from the RSS feed we can get the following string
http://youtube.com/?v=FhZ-HsiS8aI
but if we mess around with it a bit we can get
http://www.youtube.com/v/FhZ-HsiS8aI&hl=en
Which is a link to a SWF (Flash) file, that will play directly in the new browser if you past this in to a browser address bar. Aha.
So we can use this new Url and use that as the Source property
for the new .NET 3.5 SP1 WebBrowser control, and we get the usual
YouTube player we are used to, for free. Neato. I also tried this with the .NET
2.0 WinForms WebBrowser (interop so WindowsIntegration Dll required)
control, and the WPF Frame control but they didn't work like the
new .NET 3.5 SP1 WebBrowser control.
I had originally wanted to use the .NET 3.5 SP1 WebBrowser control,
within my latest 3D WPF article MarsaX,
but that didn't work on account of the fact that the new .NET 3.5 SP1
WebBrowser control is actually a HWnd based control, and really not much
like a WPF control. So it doesn't play nice like other WPF controls, which is
a shame but it has led to this article.

And you know what that's it.
As I say this was a very quick and small article, so I don't expect too many votes for this one...But if you feel you want to vote, feel free, thanks.
| You must Sign In to use this message board. | ||||||
|
||||||
|
||||||
|
||||||
General
News
Question
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+PgUp/PgDown to switch pages.
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 30 Jun 2008 Editor: |
Copyright 2008 by Sacha Barber Everything else Copyright © CodeProject, 1999-2010 Web17 | Advertise on the Code Project |