blob: a3a81415ff4ff53b86038836738555a0b338b238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
=encoding utf-8
=head1 NAME
ngx_http_f4f_module - Module ngx_http_f4f_module
=head1
The C<ngx_http_f4f_module> module provides
server-side support for Adobe HTTP Dynamic Streaming (HDS).
This module implements handling of HTTP Dynamic Streaming requests in the
“C<E<sol>videoSeg1-Frag1>” form — extracting the needed fragment
from the F<videoSeg1.f4f> file using the F<videoSeg1.f4x>
index file.
This module is an alternative to the Adobe’s f4f module (HTTP Origin Module)
for Apache.
Usual pre-processing with Adobe’s f4fpackager is required, see relevant
documentation for details.
B<NOTE>
This module is available as part of our
commercial subscription.
=head1 Example Configuration
location /video/ {
f4f;
...
}
=head1 Directives
=head2 f4f
B<context:> I<location>
Turns on module processing in the surrounding location.
=head2 f4f_buffer_size
B<syntax:> f4f_buffer_size I<I<C<size>>>
B<default:> I<512k>
B<context:> I<http>
B<context:> I<server>
B<context:> I<location>
Sets the I<C<size>> of the buffer used for
reading the F<.f4x> index file.
|