![]() |
|
|
|
#1 |
|
how can i develop a youtube like website.. the thing i want to know is how
to protect the video by converting ot to flash? Jassim Rahma |
|
|
|
|
#2 |
|
Posts: n/a
|
Jassim Rahma wrote:
> how can i develop a youtube like website.. the thing i want to know is > how to protect the video by converting ot to flash? Flash Pro (I think) comes with a video converter to convert to flash video... Plus, I think its pretty easy to load a regular encoded video into a flash app. Bryce |
|
|
|
#3 |
|
Posts: n/a
|
On Aug 2, 3:57 pm, Bryce <newss...@berzerker-soft.com> wrote:
> Jassim Rahma wrote: > > how can i develop a youtube like website.. the thing i want to know is > > how to protect the video by converting ot to flash? > > Flash Pro (I think) comes with a video converter to convert to flash > video... Plus, I think its pretty easy to load a regular encoded video > into a flash app. You also could use SilverLight, download the SDK from Microsoft and it has a built in way to display videos, very similar to flash. dotnet_coder |
|
|
|
#4 |
|
Posts: n/a
|
any example on how to use silver light to convert or load a video file with ASP.NET? "dotnet_coder" <> wrote in message news: ups.com... > On Aug 2, 3:57 pm, Bryce <newss...@berzerker-soft.com> wrote: >> Jassim Rahma wrote: >> > how can i develop a youtube like website.. the thing i want to know is >> > how to protect the video by converting ot to flash? >> >> Flash Pro (I think) comes with a video converter to convert to flash >> video... Plus, I think its pretty easy to load a regular encoded video >> into a flash app. > > You also could use SilverLight, download the SDK from Microsoft and it > has a built in way to display videos, very similar to flash. > Jassim Rahma |
|
|
|
#5 |
|
Posts: n/a
|
On Aug 2, 7:34 pm, "Jassim Rahma" <jra...@hotmail.com> wrote:
> any example on how to use silver light to convert or load a video file with > ASP.NET? > > "dotnet_coder" <jbfra...@gmail.com> wrote in message > > news: ups.com... > > > > > On Aug 2, 3:57 pm, Bryce <newss...@berzerker-soft.com> wrote: > >> Jassim Rahma wrote: > >> > how can i develop a youtube like website.. the thing i want to know is > >> > how to protect the video by converting ot to flash? > > >> Flash Pro (I think) comes with a video converter to convert to flash > >> video... Plus, I think its pretty easy to load a regular encoded video > >> into a flash app. > > > You also could use SilverLight, download the SDK from Microsoft and it > > has a built in way to display videos, very similar to flash.- Hide quoted text - > > - Show quoted text - You can download the SDK and see examples here: http://silverlight.net/ dotnet_coder |
|
|
|
#6 |
|
Posts: n/a
|
Hi,
Jassim Rahma wrote: > > any example on how to use silver light to convert or load a video file > with ASP.NET? With Silverlight, you encode the video using Expression Media Encoder (an application by Microsoft), which does almost everything for you. If you want to host the video yourself, that's about all you have to do. You can also use a free service provided by Microsoft to host your video on a streaming server. You get 4GB for free at http://silverlight.live.com For ASP.NET, you use the "ASP.NET futures" controls, one of them is a Media control allowing to eaqsily integrate the Silverlight video player on your ASP.NET web page, including skin customization. http://www.microsoft.com/downloads/d...ng=en#Overview http://quickstarts.asp.net/Futures/S...ght/media.aspx That should get you started! Laurent -- Laurent Bugnion [MVP ASP.NET] Software engineering, Blog: http://www.galasoft.ch PhotoAlbum: http://www.galasoft.ch/pictures Support children in Calcutta: http://www.calcutta-espoir.ch Laurent Bugnion, MVP |
|
|
|
#7 |
|
Posts: n/a
|
what i want to know is the following: is it possible to let my website visitors to upload the wmv or avi but when viewing the site it will run avi or wmv in silverlight? "Laurent Bugnion, MVP" <galasoft-> wrote in message news:%... > Hi, > > Jassim Rahma wrote: >> >> any example on how to use silver light to convert or load a video file >> with ASP.NET? > > With Silverlight, you encode the video using Expression Media Encoder (an > application by Microsoft), which does almost everything for you. If you > want to host the video yourself, that's about all you have to do. You can > also use a free service provided by Microsoft to host your video on a > streaming server. You get 4GB for free at http://silverlight.live.com > > For ASP.NET, you use the "ASP.NET futures" controls, one of them is a > Media control allowing to eaqsily integrate the Silverlight video player > on your ASP.NET web page, including skin customization. > > http://www.microsoft.com/downloads/d...ng=en#Overview > http://quickstarts.asp.net/Futures/S...ght/media.aspx > > That should get you started! > > Laurent > -- > Laurent Bugnion [MVP ASP.NET] > Software engineering, Blog: http://www.galasoft.ch > PhotoAlbum: http://www.galasoft.ch/pictures > Support children in Calcutta: http://www.calcutta-espoir.ch Jassim Rahma |
|
|
|
#8 |
|
Posts: n/a
|
Hi,
Jassim Rahma wrote: > > what i want to know is the following: > > is it possible to let my website visitors to upload the wmv or avi but > when viewing the site it will run avi or wmv in silverlight? In the moment, Silverlight supports only WMV and VC1 (which is the codec used in Blu-Ray HD disks). You can change the source of the movie to anything you like, but of course that implies some programming. It's not very difficult to do. The advantage of using Silverlight to do this instead of Flash is the very good integration of Silverlight with ASP.NET. The disadvantage is that Silverlight is not released yet, so you would work with pre-release code (however Silverlight RC1 has been released last Friday, and Microsoft promises that there won't be any more breaking changes in the future, so that shouldn't be too painful). I hope it helps, Laurent > > > "Laurent Bugnion, MVP" <galasoft-> wrote in message > news:%... >> Hi, >> >> Jassim Rahma wrote: >>> >>> any example on how to use silver light to convert or load a video >>> file with ASP.NET? >> >> With Silverlight, you encode the video using Expression Media Encoder >> (an application by Microsoft), which does almost everything for you. >> If you want to host the video yourself, that's about all you have to >> do. You can also use a free service provided by Microsoft to host your >> video on a streaming server. You get 4GB for free at >> http://silverlight.live.com >> >> For ASP.NET, you use the "ASP.NET futures" controls, one of them is a >> Media control allowing to eaqsily integrate the Silverlight video >> player on your ASP.NET web page, including skin customization. >> >> http://www.microsoft.com/downloads/d...ng=en#Overview >> >> http://quickstarts.asp.net/Futures/S...ght/media.aspx >> >> That should get you started! >> >> Laurent >> -- >> Laurent Bugnion [MVP ASP.NET] >> Software engineering, Blog: http://www.galasoft.ch >> PhotoAlbum: http://www.galasoft.ch/pictures >> Support children in Calcutta: http://www.calcutta-espoir.ch > -- Laurent Bugnion [MVP ASP.NET] Software engineering, Blog: http://www.galasoft.ch PhotoAlbum: http://www.galasoft.ch/pictures Support children in Calcutta: http://www.calcutta-espoir.ch Laurent Bugnion, MVP |
|
|
|
#9 |
|
Posts: n/a
|
On Aug 3, 2:09 am, dotnet_coder <jbfra...@gmail.com> wrote:
> On Aug 2, 3:57 pm, Bryce <newss...@berzerker-soft.com> wrote: > > > Jassim Rahma wrote: > > > how can i develop a youtube like website.. the thing i want to know is > > > how to protect the video by converting ot to flash? > > > Flash Pro (I think) comes with a video converter to convert to flash > > video... Plus, I think its pretty easy to load a regular encoded video > > into a flash app. > > You also could use SilverLight, download the SDK from Microsoft and it > has a built in way to display videos, very similar to flash. Silver ligth is beta software and not ready for production sites. Adobe Flash is a more tested tecnology. Best regards. Oscar Acosta Cubaman |
|
|
|
#10 |
|
Posts: n/a
|
On Aug 3, 11:18 pm, Cubaman <oscar.acostamonte...@googlemail.com>
wrote: > > Silver ligth is beta software and not ready for production sites. > Adobe Flash is a more tested tecnology. ....and not so many people have Silverlight plugin installed. In case of Flash nearly everyone has its plugin Alexey Smirnov |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Some professional free downloading tools for YouTube | vcr | The Lounge | 2 | 06-22-2009 01:41 AM |
| Convert Video files to MP4 for iPod | ivan | DVD Video | 0 | 04-26-2006 08:38 AM |
| Very slow recognising DVD disc | Terry Pinnell | DVD Video | 1 | 03-28-2006 06:53 PM |
| Now I introduce some popular software of multimedia | eightsome@gmail.com | DVD Video | 0 | 03-28-2006 02:29 PM |