apache responce time for each request

2007-11-22 Thread lists user
hello members, We run a video playing site. For each movie, we want to record its played time. ( for example, client A watched movie A for 30 minutes, client B watched movie B for 2 hours). So I think for each requested movie, it's maybe possible to get apache's responce time by modperl. But how c

Re: apache responce time for each request

2007-11-22 Thread Ben van Staveren
You can time how long it takes for someone to download the movie, which isn't equal to the time it takes them to view it. Viewing statistics can only be had from the player, so as long as your player reports back when someone started viewing and when they hit the pause/ stop/play buttons, yo

Re: apache responce time for each request

2007-11-22 Thread lists user
On 11/22/07, Ben van Staveren <[EMAIL PROTECTED]> wrote: > You can time how long it takes for someone to download the movie, > which isn't equal to the time it takes them to view it. Yes I just need the download time.How can I get it? use which handler and which function? thank you again.

Re: apache responce time for each request

2007-11-22 Thread John ORourke
lists user wrote: On 11/22/07, Ben van Staveren <[EMAIL PROTECTED]> wrote: You can time how long it takes for someone to download the movie, which isn't equal to the time it takes them to view it. Yes I just need the download time.How can I get it? use which handler and which function?