我正在尝试创建一个简单的视频库,用ASP.net从特定Ustream用户的录制节目中提取视频。我一直在做一些研究并查看API文档,但似乎无法弄清楚所有示例都在PHP中。
任何人都可以帮助我..如果可能的话,给我一些代码或博客链接Asp.net与Ustream。
由于
答案 0 :(得分:1)
简单!看这里http://msdn.microsoft.com/en-us/library/ms525208(v=vs.90).aspx
您可以在ADODB.Stream中使用Classic ASP(也可以在ASP.Net中使用)
在asp中写这个:
'Set the content type to the specific type that you are sending.
Response.ContentType = "video/mp4"
Const adTypeBinary = 1
Dim strFilePath
strFilePath = server.mappath("stream.mp4")
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = adTypeBinary
objStream.LoadFromFile strFilePath
Response.BinaryWrite objStream.Read
objStream.Close
Set objStream = Nothing
我认为这对你很有帮助。