Web Forms :: Browser Hangs On File (video) Streaming?

May 4, 2010

I'm having a problem with file streaming where this file is a video that is streamed to a FLV player.

Essential components for understanding the problem:

- An asp.net page called Viewer.aspx that has de FLV player incorporated in the HTML.

- An asp.net page (It could be an http handler but in this case it's not) called Downloader.aspx that gets a flv file from somewhere on the web and writes it to the Response Output Stream.

Everytime Viewer.aspx is called, it makes Downloader.aspx the source of the the FLV player and the video is correclty presented and streamed into the player.

The problem I am having now is that any user interaction with the page (even typing an URL inside the same website domain on the browser address bar) becames hung until the video download ends.

I can measure this video download with HTTP Watch for example, and confirm that just after the video download into the player ends, the command issued by the user is immediately processed (or the browser goes to another page if the user typed a new address in the browser address bar).

I tought that it could be the limit of 2 connections per domain, but HTTP Watch only shows one active connection (the video download into the FLV player).

Even if it was this 2 connections limit, I think a nice solution would be to somewhat detect the user interaction with the page and abort that video download.

View 1 Replies


Similar Messages:

Web Forms :: How To Implement Video Streaming

Oct 18, 2010

I need to do video streaming on my webpage. Whats the best way to implement video streaming functionality. I am using .NET 2.0 with VS 2005.

View 2 Replies

Web Forms :: How To Write Coding For Video Streaming

Apr 16, 2010

How to do/write coding for vedio streaming for asp.net(except usiing silver light)

View 2 Replies

Web Forms :: Video Conversion, Uploading & Streaming?

Apr 20, 2010

I am totally desparate with the task of Video Conversion, uploading & streaming. I have gone through various articles, posts, blogs and code snipped but couldnt find any full working solution for that.I was advised to work with ffmpeg and i got the functionality [URL]but later i come to know that most asp.net servers (including mine) do not allow to ffmpeg on the server.

Then i look for other solutions, some are saying to convert video files manually and then upload to website (funny hannn). Some are suggesting other site which can store our video and stream from there servers .....So i am stuck now and dont know where to go. I need a complete solution of this problem. Like Users could upload a video file (of any format or at least a good number of choice for upload file format), then they click an upload button and video conversion (e.g. to .flv took place) and the output should be displayed to a user in video player (showing our own logo, not youtube logo....etc.) and thats it.I will definately appreciate all of your comments and guidence.

View 4 Replies

Web Forms :: Live Audio / Video Streaming In An Website?

Sep 27, 2010

My project is to create a website that facilitates giving live lectures on intranet. Hence, the bandwidth is not an issue here.

Also, I have implemented some basic code of live streaming using windows media encoder SDK in a C# console application. I was able to view the streaming on another LAN PC in VLC player.

Now, how do I implement my code in the asp.net website? What I want is that in order to start the streaming (i.e., start the live lecture), the facutly just clicks on a button in a webpage. This will stream his movements to the students (via a server). Also, this will enable the facutly to view himself on the webpage.

Is this even possible? I mean it would be like : both the student and the faculty will access the same website. The interface to both of them will be different - one will start the stream and the other (student) will receive the stream.

Or will I have to create a different application to start the streaming? So it would be like the facutly will start that applicaiton to start the streaming and the students will access the stream throught the player embedded in the website.

Another question is : what player should I use to receive the stream (on the student side)? Windows Media Player (I heard that it has problems with firefox)? Or the ubiqutous flash plugin will succeed in capturing the media encoder stream?

View 1 Replies

Web Forms :: How To Implement Live Audio And Video Streaming

May 7, 2015

I need to audio and video streaming option on my website, like registered user can upload the video through browser option and other users can view that video on website like youtube.

View 1 Replies

Streaming Video Using Embed Tag?

Feb 20, 2010

I am trying to play a video file in an aspx page. the video resides in the database.

I am using handler file (ashx) for that, and using the ashx file as src value of embed tag in the aspx page.

[Code]...

it works if I use media player activex ( object tag) . but it does not work for FF. I think embed tag is most standard. so i am trying to use it for streaming video.

View 5 Replies

How To Use C# To Integrate With Video Streaming

Sep 1, 2010

how to use ASP.Net C# to display video streaming on the ASP.Net Web?

Another thing is the video can only run for one time. Do I need to use any plugin to develop it?


How to use C# code to control the video?

View 3 Replies

VS 2005 Flv Video Streaming Not Working On Local?

Mar 13, 2010

To get the lok and feel and lil idea about my problem[URL]in this web site you can see the list of videos..when you click on the video it starts..in my case it does not work...i've made setting in IIS that it should support flv files in my HTTP HEADERSbut still it's not working on my local machine and also i have the latest flash player..when i click on video the player is not loaded..so any idea ...wot is going on...?

View 3 Replies

Write .net Library For Audio - Video Streaming?

Jul 12, 2010

i have to write one .net library for audio/video streaming... how to write a .net library.

View 5 Replies

Flv Video Streaming Not Working On Local Machine?

Mar 14, 2010

go to [URL]

in this web site you can see the list of videos..

when you click on the video it starts..

in my case it does not work...

i've made setting in IIS that it should support flv files in my HTTP HEADERS

but still it's not working on my local machine and also i have the latest flash player..

when i click on video the player is not loaded..

View 4 Replies

HttpHandlers / Modules :: Streaming Flash Video From IIS?

Mar 30, 2010

I am wanting to stream flash video files from IIS to an .aspx page. I have added the video/x-flv mime type to IIS, but am still having problems. I have seen a few articles about using HTTP Handlers, but they seem to be inconsistent and I'm not exactly sure why they woul dbe needed.

View 13 Replies

Security :: Protecting A Video Streaming Url From Debugging Or Hacking Tools?

Feb 24, 2010

I am working on a video streaming project, objective is to upload video to content provider's server and play it to the authenticated user only, it should not be accessible to unauthorized users, content provider provided APIs and Endpoints to pass security options but it seems not working when I pass those parameters to API along while uploading video streaming file, I need to know how I can do that, is there any other way that I can use rather than Content Provider's API Endpoints

View 1 Replies

Web Forms :: Streaming CSV (or TXT) Content To The Browser Over SSL/HTTPS

May 4, 2010

Has anyone had issues with streaming CSV (or TXT) content to the browser over SSL/HTTPS.

There are no issues when running my code in Firefox - i've found a bunch of issues, all seem to be solved for people using PHP.

this.Response.ClearContent();
this.Response.ClearHeaders();
this.Response.Buffer = true;
...
this.Response.AddHeader("","") // headers
this.Response.Write("TXT STRING GOES HERE");
this.Response.Flush();
this.Response.End();

I've tried all different headers to remove the no-cache, pragma ...etc.

[code]....

View 7 Replies

IIS Configuration :: Browser Hangs When Too Many Requests Due To Session And Need To Start

Mar 10, 2013

I have developed an online exam application in college where we fix the timing for an exam the students conduct there exams at that time. this application is stored in local iis server in the college. i am using inproc session. here there are 200 students writing exam at a time .the problem is the browser stuck after some time and not resopnce unless we restrart the iis on the server. i checked the windows even log .the warning details are listed below. my question is ,is the inproc session is ok for here or i need to use the sql server session or state server session ... 

Log Name: ApplicationSource: ASP.NET 2.0.50727.0Date: 3/10/2013 12:36:52 PM
Event ID: 1309Task Category: Web EventLevel: WarningKeywords: ClassicUser: N/AComputer: ZCW-HV01.zahracol.edu.om
Description:Event code: 3005 Event message: An unhandled exception has occurred.
Event time: 3/10/2013 12:36:52 PM Event time (UTC): 3/10/2013 8:36:52 AM

[Code] ....

View 1 Replies

Web Forms :: How To Play Video In Browser.

Mar 6, 2011

I want to play the video file from my repository into the web browser using asp.net/c#.

View 3 Replies

Streaming The File From Memory?

Oct 21, 2010

The users have requested the option to "generate" an excel file representation of GridView contents.

Does anyone know how to do this without saving the file to the server but rather just streaming it to the user from memory?

My below code is working

streaming directly from memory instead of using physical path of server machine then saving the file on client machine

Private Sub generateExcelSheet()
Try
Dim weekFrom As String = DdFromWeek.SelectedValue
Dim weekTo As String = DdToWeek.SelectedValue

[Code]....

View 4 Replies

Visual Studio :: 2010 Hangs Up When Click On .sql File?

May 4, 2010

This is the first time i am experiencing vs 2010 hangs up when clicked on .sql file. I am using intel core 1.8Ghz with 2.24Gb of RAM. It work file with other project. We need to end the task to stop running. I have installed only Visual C# Items.The problem happens when i create a new project 1. file new project2. Under Visual C# Items Click on windows 3. Click on empty project4. Then i am trying to add .sql file but cannot find it.5. so i use add WinScript1.wsf and rename it to tblABC.sql 6. When i double click on tblABC.sql it hangs7. I need to end the task to stop working.

View 6 Replies

WCF / ASMX :: WCF - Download File Through Streaming?

May 15, 2010

1. what is streaming how we download File through Streaming.
2. what is service Behaviour and operation Behaviour In servic Contracts . plz Explain Me In brief

View 2 Replies

Streaming Wcf Service Returning Corrupt Streamed File?

Aug 31, 2010

I have a WCF service that returns a stream object. But for some reason i get a corrupt zip file back which i am streaming.

Contract Code

[ServiceContract(Namespace = "http://schemas.acme.it/2009/04/01")]
public interface IFileTransferService
{
[OperationContract(IsOneWay = false)]
FileDownloadReturnMessage DownloadFile(FileDownloadMessage request);

[Code].....

View 2 Replies

Visual Studio :: Can See Video At Any Browser Using Mobile Webpages

Mar 9, 2010

I wnt to see video but i don't wnt to use media player.....

View 1 Replies

Web Forms :: Get Thumbnail From Video File

Jan 7, 2010

i need to get thumbnail from video files using C#.

View 1 Replies

Web Forms :: How To Upload Video File In VS 2008 3.5

Jan 27, 2010

How to Upload Video file in VS 2008 3.5

View 5 Replies

Web Forms :: Read / Add Metadata Of A Video File?

Aug 3, 2010

am trying to read the metadata of a video file and also change/add some fields to that.

Note: .Net 3.5, VB

View 1 Replies

Web Forms :: Uploading & Retrieve Video File From Sql Server

Aug 7, 2010

i am doing an task about uploading & retrive video file in asp.net. first of all tell me How Can we Upload Video files In sql server? then second one is How Can we displays that uploaded video files in my web page?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved