18 Mart 2008 Salı

FLV Flash video streaming with ASP.NET 2.0, IIS and HTTP handler

 

Yazının Gerçek Adresi : http://blogs.ugidotnet.org/kfra/archive/2006/10/04/50003.aspx

Using this HTTP handler you can easily FLV streaming downloads just like video.google.com does. All you need is to install on your IIS 5.0/6.0 the following HTTP handler and to get this to work correctly, you will need to make sure that IIS handles request for .flv files. In your site's properties, click the "Home directory tab" and click the "Configuration" button. You'll get a form like this:

iis1

Add the entry for .flv, click edit, and copy the path in the executable field. This is the aspnet_isapi.dll for the current version of the .NET Framework of your virtual site. Cancel out of that dialog and click "add." Paste the path into the executable, use the extension .flv and set your verbs limited to "GET, POST, HEAD, DEBUG" like this:

iis2

Now any request for a .flv file on the site will be handled by ASP.NET. Since the server-wide machine.config file doesn't specify what class should handle the request, a default handler is used unless we add the following lines to the web.config file:

Web.config

   1: <httpHandlers>        


   2:        verb="*" path="*.flv" type="FLVStreaming" />


   3: </httpHandlers> 






FLVStreaming.cs






   1: using System.Web;


   2:  


   3: public class FLVStreaming : IHttpHandler


   4: {


   5:  


   6:     // FLV header


   7:     private static readonly byte[] _flvheader = HexToByte("464C5601010000000900000009");


   8:  


   9:     public FLVStreaming()


  10:     {


  11:     }


  12:  


  13:     public void ProcessRequest(HttpContext context)


  14:     {


  15:         try


  16:         {


  17:             int pos;


  18:             int length;


  19:  


  20:             // Check start parameter if present


  21:             string filename = Path.GetFileName(context.Request.FilePath);


  22:  


  23:             using (FileStream fs = new FileStream(context.Server.MapPath(filename), FileMode.Open, FileAccess.Read, FileShare.Read))


  24:             {


  25:                 string qs = context.Request.Params["start"];


  26:  


  27:                 if (string.IsNullOrEmpty(qs))


  28:                 {


  29:                     pos = 0;


  30:                     length = Convert.ToInt32(fs.Length);


  31:                 }


  32:                 else


  33:                 {


  34:                     pos = Convert.ToInt32(qs);


  35:                     length = Convert.ToInt32(fs.Length - pos) + _flvheader.Length;


  36:                 }


  37:  


  38:                 // Add HTTP header stuff: cache, content type and length        


  39:                 context.Response.Cache.SetCacheability(HttpCacheability.Public);


  40:                 context.Response.Cache.SetLastModified(DateTime.Now);


  41:  


  42:                 context.Response.AppendHeader("Content-Type", "video/x-flv");


  43:                 context.Response.AppendHeader("Content-Length", length.ToString());


  44:  


  45:                 // Append FLV header when sending partial file


  46:                 if (pos > 0)


  47:                 {


  48:                     context.Response.OutputStream.Write(_flvheader, 0, _flvheader.Length);


  49:                     fs.Position = pos;


  50:                 }


  51:  


  52:                 // Read buffer and write stream to the response stream


  53:                 const int buffersize = 16384;


  54:                 byte[] buffer = new byte[buffersize];


  55:                 


  56:                 int count = fs.Read(buffer, 0, buffersize);


  57:                 while (count > 0)


  58:                 {


  59:                     if (context.Response.IsClientConnected)


  60:                     {


  61:                         context.Response.OutputStream.Write(buffer, 0, count);


  62:                         count = fs.Read(buffer, 0, buffersize);


  63:                     }


  64:                     else


  65:                     {


  66:                         count = -1;


  67:                     }


  68:                 }


  69:             }


  70:         }


  71:         catch (Exception ex)


  72:         {


  73:             System.Diagnostics.Debug.WriteLine(ex.ToString());


  74:         }


  75:     }


  76:  


  77:     public bool IsReusable


  78:     {


  79:         get { return true; }


  80:     }


  81:  


  82:     private static byte[] HexToByte(string hexString)


  83:     {


  84:         byte[] returnBytes = new byte[hexString.Length / 2];


  85:         for (int i = 0; i < returnBytes.Length; i++)


  86:             returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);


  87:         return returnBytes;


  88:     }


  89:  


  90: }




All you need now to stream your favorite FLV movies is a custom-made player which is fetching the contents passing to the request the ?start= parameter in order to seek the current position inside the video file.



Fabian Topfstedt has one available onto his site (get the player and place it in your site document root)



To use Fabian player you have to embed the following HTML code inside your page:





   1: <object 


   2:   classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 


   3:   codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0


   4:   width="336" 


   5:   height="297">    


   6:   <param name="movie" value="scrubber.swf?file=http://&bufferTime=3&autoStart=false" />    


   7:   <param name="quality" value="high" />    


   8:   <embed src="scrubber.swf?file=http://&bufferTime=3&autoStart=false" 


   9:     quality="high" 


  10:     pluginspage="http://www.macromedia.com/go/getflashplayer" 


  11:     type="application/x-shockwave-flash" 


  12:     width="336" 


  13:     height="297"></embed>  


  14: </object>




The video file was converted into a .flv using of ffmpeg and indexed with flvtool2 in order to add the correct metadata inside the FLV file.





   1: ffmpege.exe -i test.avi test.flv


   2: flvtool2.exe -U test.flv




You can download here solution and project files or if you have the chance check online demo here.



An ASP.NET v1.1 version is available here.



Feel free to contact me for any information.

23 Şubat 2008 Cumartesi

Generic Sınıflara Giriş

Yazar : Resul Çavuşoğlu [Yazar hakkında detaylı Bilgi için tıklayın]
Tarih : 07.04.2004

Generic kavramı C#2,0 ile beraber artık hayatımıza girmeye başlamıştır. Performans konusunda büyük avantajlar sağlayan generic sınıfların temel özelliklerinden daha önce sitemizde bahsetmiştik. Bu makalemizde generic sınıfların oluşturulması, türetilmesi, metotların tanımlanması vb konuları aydınlatmaya çalışacağız. Generic Sınıflar temel olarak normal sınıflar ile aynı özellikleri göstermektedir. Generic sınıfların normal sınıflardan farkı,  kullanılacak olan tiplerin sınıf tanımlama aşamasında belirtilmesidir. Aşağıda normal bir sınıf ile generic sınıf arasındaki tanımlama farkını görebilirsiniz

   1: using System;


   2:  


   3: namespace GenericDeneme


   4: {


   5:          class myclass    // Normal Sınıf


   6:          {


   7:          }


   8:  


   9:          class mygenclass1<tip1>  // Generic Sınıf


  10:          {


  11:          }


  12:  


  13:          class mygenclass2<tip1,tip2,tip3>  // Birden çok tipli generic sınıf


  14:          {


  15:          }


  16: }






Generic sınıflarda 1 adet tip tanımlana bileceği gibi yukarıdaki örneğimizde mygenclass2 sınıfında da olduğu gibi ihtiyaçlar doğrultusunda birden çok tip tanımlanabilir. Generic sınıfların tanımında bir aşırı yükleme (overloading) gerçekleştirmek mümkün değildir. Generic sınıflardaki tanımlanmış tiplerdeki değişim isimlerinin değiştiğini göstermez. Aşağıdaki örneği incelersek aynı isme fakat farklı türde ve sayıda tiplere sahip sınıfların hata verdiğini göreceksiniz.





   1: using System;


   2:  


   3: namespace GenericOverload 


   4: { 


   5:     class mygenclass<tip1>{    }              //  


   6:  


   7:     class mygenclass<tip1,tip2,tip3>{     } // Hata Çift Tanımlama 


   8: }


   9:  




Generic sınıflarda normal sınıflarda olduğu gibi sınıf içinde sınıf tanımlamak mümkündür. Bu tanımlamalar aşamasında dıştaki sınıfta kullanılan tip içteki sınıfta da kullanılabilir. Burada dikkat edilmesi gereken konu içteki sınıfları örneklerken dıştaki sınıfa ait generic tanımlamalar gerçekleştirilmelidir.





   1: using System; 


   2: namespace GenericClass 


   3: { 


   4:        class MyClass<ItemType> 


   5:        { 


   6:            public ItemType field1; 


   7:            public void deneme(ItemType tmp){} 


   8:            public MyClass(){} 


   9:            public class MyClass2<ItemType>{} 


  10:        } 


  11:        class MainClass 


  12:       { 


  13:            [STAThread] 


  14:            static void Main(string[] args) 


  15:            { 


  16:                   MyClass<string> myclass = new MyClass<string>(); 


  17:                   MyClass<int>.MyClass2<int> myclass2 = new MyClass<int>.MyClass2<int>(); 


  18:            } 


  19:        } 


  20: }




Generic Sınıflarda Türeme:



Generic sınıflarda türeme konusunda dikkat edilmesi gereken en önemli nokta bir generic sınıfı türetmiş olduğumuz sınıfın veya arayüzün adı ile generic sınıfımızda kullanmış olduğumuz parametre aynı isimde olamaz. class Extend<V>: V {} şeklindeki bir tanımlama hataya neden olacaktır. Bununla birlikte generic sınıfımızın başka bir generic sınıftan türetilmesi durumunda temel sınıfımızda veya arayüzümüzde aynı parametreyi kullanmak bir hataya sebep olmamaktadır. Aşağıda değişik şekillerde türetilmiş generic sınıflar bulunmaktadır.





   1: class C<U,V> {}


   2:  


   3: interface I1<V> {}


   4:  


   5: class D: C<string,int>, I1<string> {}


   6:  


   7: class E<T>: C<int,T>, I1<T> {}




Generic Sınıflarda Methodlar:



Generic sınıflarda kullanılan metotlar 2 şekilde incelenebilir. Bunlar Generic Metotlar ve Generic Olmayan Metotlar. Peki bir metodun generic veya non-generic olması arasındaki değişiklik nedir. Bir metodun içerisinde sınıf başlığında tanımlanmış generic tiplerin kullanılması bu metodun generic bir metod olduğunu göstermez. Şimdi aşağıdaki örneğimizi inceleyelim.





   1: using System; 


   2: namespace GenericClass 


   3: { 


   4:         class MyClass<ItemType1,ItemType2> 


   5:        { 


   6:            public ItemType1 field1; 


   7:            public MyClass(){} 


   8:            public void deneme(ItemType1 tmp){} 


   9:        } 


  10:        .................. 


  11:        .................. 


  12: }




Yukarıda ki örneğimizde sınıfta tanımlanmış olan generic tipler deneme metodu içerisinde kullanılmıştır. Bu metot generic sınıfta tanımlanmış ama generic olmayan bir metottur.



Generic metodlar metot adından sonra parametrelerden önce kullanılacak olan generic tiplerin tanımlanmasından oluşur. Bu tanımlanan tipler sınıfta tanımlanan generic tiplerle aynı ada sahip olabileceği gibi başka bir isimle de bulunabilirler.  Aşağıda generic bir metodun tanımlanması ve daha sonra kullanımını gösteren bir örnek bulunmaktadır.





   1: using System; 


   2: namespace GenericClass 


   3: { 


   4:         class MyClass<ItemType1,ItemType2> 


   5:        { 


   6:            public ItemType1 field1; 


   7:            public MyClass(){} 


   8:            public void deneme<ItemType3,ItemType1>() 


   9:            { 


  10:                ItemType3 myfiled; 


  11:                Console.WriteLine(myfield.ToString()); 


  12:            } 


  13:        } 


  14:        class MainClass 


  15:        {


  16:  


  17:            MyClass C1 = new MyClass<int,string>(); 


  18:            C1.deneme<double>();           


  19:        } 


  20: }




Generic Metotlarda kullanılan Generic tipler içinde bulunduğu Generic sınıfa ait tiplerle aynı isimde olabilir. Yukarıdaki örneğimizde Deneme metodumuzda kullanılan ItemType1 MyClass üzerinde de kullanılmıştır.



Generic sınıflarda static alan ve metot kullanımında hiç bir farklılık bulunmamaktadır. Static alan tanımlanırken sınıf üzerinde tanımlanmış olan Generic tiplerde tür olarak kullanılabilir.



Microsoft Firmasının Whidbey�nin piyasaya sürülmesi ile ilgili planlarını ileriye ötelemesi nedeniyle C#2.0 üzerinde bulunan generic sınıflarla ilgili konuya detaylı bir yazı yazmaktan kaçındım. İlerleyen zamanlarda generic kavramı daha detaylı olarak ta işlenecektir.



Resul ÇAVUŞOĞLU

c.resul@concort.com



Resul Çavuşoğlu adlı yazara ait diğer makaleleri görmek için tıklayın >>