mp4 module
Андрей Василишин
a.vasilishin на kpi.ua
Пн Сен 12 11:07:21 UTC 2011
12.09.2011 8:27, Igor Sysoev пишет:
>> И еще вопрос, параметр start=xxx в каких единица надо передавать
>> (секундах|кадрах|байтах)?
>
> В секундах, конечно. Потому и ошибка.
> Если бы было в байтах, то не нужно было бы городить этот модуль.
>
>> 2011/09/11 22:45:12 [debug] 16008#0: *410634 http request line: "GET /flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=19097 HTTP/1.1"
>
>> 2011/09/11 22:45:12 [debug] 16008#0: *410634 mvhd timescale:600, duration:904678, time:1507.797s
>
>> Продолжительность : 25 м.
Поставили в секундах
Плеер uppod, все равно таже ошибка, при этом перестала работать
перемотка на флв, до этого стояло в байтах.
Добавил также "proxy_hide_header Content-Type;"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy status 200 "200 OK"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header: "Date:
Mon, 12 Sep 2011 10:58:11 GMT"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header: "Server:
Apache/2.2.19 (Debian)"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"X-Powered-By: PHP/5.2.17-0.dotdeb.0"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"X-Accel-Redirect:
/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header: "Vary:
Accept-Encoding"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"Content-Encoding: gzip"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"Content-Length: 20"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"Connection: close"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header:
"Content-Type: text/html"
2011/09/12 13:58:11 [debug] 20837#0: *701640 http proxy header done
но в итоге получаю:
Server: nginx/1.1.2
Date: Mon, 12 Sep 2011 10:58:11 GMT
Content-Type: text/html
Content-Length: 81829890
Last-Modified: Sun, 11 Sep 2011 09:07:30 GMT
Connection: keep-alive
Accept-Ranges: bytes
# grep mp4 /etc/nginx/mime.types
video/mp4 mp4;
На всякий случай конфиг
server {
# limit_conn download 2;
# limit_rate_after 2048k;
# limit_rate 256k;
listen 212.113.32.180:81;
server_name s4.site.com s1.site.com;
access_log /var/log/nginx/s4.site.com.access.log main;
error_log /var/log/nginx/s4.site.com.error.log crit;
open_file_cache max=3000 inactive=120s;
open_file_cache_valid 30s;
open_file_cache_min_uses 2;
open_file_cache_errors off;
output_buffers 1 1m;
location / {
rewrite ^/hdv/(\w+)/(.+)$
/get.php?hash=$1&filename=$2 last;
rewrite ^/flv/(\w+)/(.+)$
/get-flvideo.php?hash=$1&filename=$2 last;
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://s1.site.com:8080/ /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_hide_header Content-Type;
access_log /var/log/nginx/s4.site.com.access.log;
}
location ~ ^/cgi-bin {
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
}
location /hdvideo {
location ~ \.flv$ {
root /var/www/site/data/www;
access_log
/var/log/nginx/access-contenthd.log;
try_files
/s4.site.com-st1$uri
/s4.site.com-st2$uri
/s4.site.com-st3$uri
/s4.site.com-st4$uri
/s4.site.com-st5$uri
/s4.site.com-st6$uri
/s4.site.com-st7$uri
/s4.site.com-st8$uri
=404;
internal;
flv;
}
location ~ \.mp4$ {
root /var/www/site/data/www;
access_log
/var/log/nginx/access-contenthd.log;
try_files
/s4.site.com-st1$uri
/s4.site.com-st2$uri
/s4.site.com-st3$uri
/s4.site.com-st4$uri
/s4.site.com-st5$uri
/s4.site.com-st6$uri
/s4.site.com-st7$uri
/s4.site.com-st8$uri
=404;
internal;
mp4;
mp4_buffer_size 1m; # default 512k
mp4_max_moov_size 10m; # default 5m
}
}
location /flvideo {
location ~ \.flv$ {
root /var/www/site/data/www;
access_log
/var/log/nginx/access-contenthd.log;
try_files
/s4.site.com-st1$uri
/s4.site.com-st2$uri
/s4.site.com-st3$uri
/s4.site.com-st4$uri
/s4.site.com-st5$uri
/s4.site.com-st6$uri
/s4.site.com-st7$uri
/s4.site.com-st8$uri
=404;
internal;
flv;
}
location ~ \.mp4$ {
root /var/www/site/data/www;
access_log
/var/log/nginx/access-contenthd.log;
try_files
/s4.site.com-st1$uri
/s4.site.com-st2$uri
/s4.site.com-st3$uri
/s4.site.com-st4$uri
/s4.site.com-st5$uri
/s4.site.com-st6$uri
/s4.site.com-st7$uri
/s4.site.com-st8$uri
=404;
internal;
mp4;
mp4_buffer_size 1m; # default 512k
mp4_max_moov_size 10m; # default 5m
}
}
location /player_frame {
root /var/www/site/data/www;
try_files
/s4.site.com-st1$uri
/s4.site.com-st2$uri
/s4.site.com-st3$uri
/s4.site.com-st4$uri
/s4.site.com-st5$uri
/s4.site.com-st6$uri
/s4.site.com-st7$uri
/s4.site.com-st8$uri
=404;
}
location /nginx_status {
stub_status on;
access_log off;
}
}
# grep start /var/log/nginx/s4.site.com.error.log
2011/09/12 12:23:28 [debug] 32714#0: *652277 http request line: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http args: "start=634"
2011/09/12 12:23:28 [notice] 32714#0: *652277 "^/hdv/(\w+)/(.+)$" does
not match "/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652277 "^/flv/(\w+)/(.+)$"
matches "/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652277 rewritten data:
"/get-flvideo.php", args:
"hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634",
client: 77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652277 "^/hdv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652277 "^/flv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
"GET
/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634
HTTP/1.0
2011/09/12 12:23:28 [debug] 32714#0: *652277 http finalize request: -4,
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
a:1, c:2
2011/09/12 12:23:28 [debug] 32714#0: *652277 http run request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http proxy header:
"X-Accel-Redirect:
/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 internal redirect:
"/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 mp4 start:634000
2011/09/12 12:23:28 [debug] 32714#0: *652277 time-to-sample
start_time:2045032
2011/09/12 12:23:28 [debug] 32714#0: *652277 start_sample:2045, new
count:13032
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:251
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:270
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:311
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:368
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:413
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:456
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:533
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:783
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:809
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:853
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:895
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:924
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:958
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:991
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1012
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1045
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1064
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1090
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1111
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1150
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1189
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1206
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1261
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1299
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1315
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1387
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1406
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1429
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1519
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1543
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1558
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1580
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1615
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1714
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1759
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1790
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1810
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1840
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1858
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1883
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:1987
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:2006
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:2028
2011/09/12 12:23:28 [debug] 32714#0: *652277 start:2046, sync:2049
2011/09/12 12:23:28 [debug] 32714#0: *652277 start chunk:0
2011/09/12 12:23:28 [debug] 32714#0: *652277 start chunk offset:253663
2011/09/12 12:23:28 [debug] 32714#0: *652277 time-to-sample
start_time:2331098
2011/09/12 12:23:28 [debug] 32714#0: *652277 start_sample:2276, new
count:33063
2011/09/12 12:23:28 [debug] 32714#0: *652277 start chunk:715822373
2011/09/12 12:23:28 [error] 32714#0: *652277 start time is out mp4 stsc
chunks in "", client: 77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=634 HTTP/1.1",
upstream:
"http://127.0.0.1:8080/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http finalize request: 500,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
a:1, c:2
2011/09/12 12:23:28 [debug] 32714#0: *652277 http special response: 500,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http output filter
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http copy filter:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http copy filter: 0
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
2011/09/12 12:23:28 [debug] 32714#0: *652277 http finalize request: 0,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
a:1, c:2
2011/09/12 12:23:28 [debug] 32714#0: *652277 http finalize request: -4,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=634"
a:1, c:1
2011/09/12 12:23:28 [debug] 32714#0: *652278 http request line: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http args: "start=0"
2011/09/12 12:23:28 [notice] 32714#0: *652278 "^/hdv/(\w+)/(.+)$" does
not match "/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1", host:
"s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652278 "^/flv/(\w+)/(.+)$"
matches "/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1", host:
"s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652278 rewritten data:
"/get-flvideo.php", args:
"hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0",
client: 77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1", host:
"s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652278 "^/hdv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1", host:
"s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:23:28 [notice] 32714#0: *652278 "^/flv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10570.mp4?start=0 HTTP/1.1", host:
"s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
"GET
/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0
HTTP/1.0
2011/09/12 12:23:28 [debug] 32714#0: *652278 http finalize request: -4,
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
a:1, c:2
2011/09/12 12:23:28 [debug] 32714#0: *652278 http run request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http proxy header:
"X-Accel-Redirect:
/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 internal redirect:
"/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 mp4 start:0
2011/09/12 12:23:28 [debug] 32714#0: *652278 http output filter
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http copy filter:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http copy filter: -2
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:28 [debug] 32714#0: *652278 http finalize request: -2,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
a:1, c:2
2011/09/12 12:23:28 [debug] 32714#0: *652278 http finalize request: -4,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
a:1, c:2
2011/09/12 12:23:29 [debug] 32714#0: *652278 http run request:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http writer handler:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http output filter
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http copy filter:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http copy filter: -2
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http writer output filter:
-2,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http run request:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http writer handler:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http output filter
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http copy filter:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http copy filter: -2
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http writer output filter:
-2,
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http run request:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:23:29 [debug] 32714#0: *652278 http writer handler:
"/s4.site.com-st6/flvideo/10570.mp4?hash=7b709930f3c21d2823018e9c9b43466e&filename=10570.mp4&start=0"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http request line: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http args: "start=1572"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [notice] 32716#0: *657924 "^/hdv/(\w+)/(.+)$" does
not match "/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:55 [notice] 32716#0: *657924 "^/flv/(\w+)/(.+)$"
matches "/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv", client:
77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:55 [notice] 32716#0: *657924 rewritten data:
"/get-flvideo.php", args:
"hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572",
client: 77.47.176.189, server: s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [notice] 32716#0: *657924 "^/hdv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:55 [notice] 32716#0: *657924 "^/flv/(\w+)/(.+)$" does
not match "/get-flvideo.php", client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
"GET
/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572
HTTP/1.0
2011/09/12 12:33:55 [debug] 32716#0: *657924 http finalize request: -4,
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
a:1, c:2
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [info] 32702#0: *657798 client closed prematurely
connection while sending flv to client, client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=0 HTTP/1.1",
upstream:
"http://127.0.0.1:8080/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:55 [debug] 32702#0: *657798 http finalize request: 0,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
a:1, c:1
2011/09/12 12:33:55 [debug] 32702#0: *657798 http posted request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=0"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http upstream request:
"/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http proxy header:
"X-Accel-Redirect:
/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 internal redirect:
"/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http finalize request: -2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
a:1, c:2
2011/09/12 12:33:55 [debug] 32716#0: *657924 http finalize request: -4,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
a:1, c:2
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:55 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:56 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:57 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:58 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -2
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-2,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http run request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer handler:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http output filter
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [info] 32716#0: *657924 sendfile() failed (32:
Broken pipe) while sending flv to client, client: 77.47.176.189, server:
s4.site.com, request: "GET
/flv/7b709930f3c21d2823018e9c9b43466e/10601.flv?start=1572 HTTP/1.1",
upstream:
"http://127.0.0.1:8080/get-flvideo.php?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572",
host: "s1.site.com:81", referrer: "http://site.com/player/uppod.swf"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http copy filter: -1
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http writer output filter:
-1,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
2011/09/12 12:33:59 [debug] 32716#0: *657924 http finalize request: -1,
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
a:1, c:1
2011/09/12 12:33:59 [debug] 32716#0: *657924 http posted request:
"/s4.site.com-st3/flvideo/10601.flv?hash=7b709930f3c21d2823018e9c9b43466e&filename=10601.flv&start=1572"
--
WBR, Andrey Vasilishin CDIG1-UANIC, CDIG1-RIPE
Подробная информация о списке рассылки nginx-ru