]> git.sesse.net Git - vlc/blob - share/lua/http/dialogs/sout
Fix lua http interface loading.
[vlc] / share / lua / http / dialogs / sout
1 <?vlc --[[
2 vim:syntax=html
3 <!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
4 <  sout: VLC media player web interface - stream output dialog
5 < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
6 <  Copyright (C) 2005-2006 the VideoLAN team
7 <  $Id$
8
9 <  Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
10
11 <  This program is free software; you can redistribute it and/or modify
12 <  it under the terms of the GNU General Public License as published by
13 <  the Free Software Foundation; either version 2 of the License, or
14 <  (at your option) any later version.
15
16 <  This program is distributed in the hope that it will be useful,
17 <  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 <  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 <  GNU General Public License for more details.
20
21 <  You should have received a copy of the GNU General Public License
22 <  along with this program; if not, write to the Free Software
23 <  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24 < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25
26 This dialog needs the following dialogs to be fully functional: <none>
27 Note that the sout chain is used and sent to VLC by the input dialog
28 ]]?>
29
30 <div id="sout" class="dialog" style="display: none">
31   <div class="title">
32     Stream Output
33     <img class="close" src="images/white_cross_small.png" alt="Close" onclick="hide('sout');"/>
34   </div>
35   <div class="controls">
36     <label for="sout_mrl">Destination (MRL)</label>
37     <?vlc if current_page == "vlm" then ?>
38       <input type="text" name="sout_mrl" id="sout_mrl" size="60" onkeypress="if( event.keyCode == 13 ) vlm_output_change();"/>
39       <br/>
40       <input type="button" value="Ok" onclick="vlm_output_change();" />
41       <input type="button" value="Cancel" onclick="hide('sout');" />
42       <input type="hidden" id="sout_dest" />
43     <?vlc else ?>
44       <input type="text" name="sout_mrl" id="sout_mrl" size="60" onkeypress="if( event.keyCode == 13 ) save_sout();" />
45       <br/>
46       <input type="button" value="Save" onclick="save_sout();" />
47     <?vlc end ?>
48     <input type="button" value="Reset" onclick="reset_sout();"/>
49     <input type="hidden" id="sout_old_mrl" value="" /> <!-- FIXME -->
50     <input type="button" id="sout_helper_toggle" onclick="toggle_show_sout_helper()" value="Hide sout interface" />
51   </div>
52   <div id="sout_helper" class="helper">
53     Stream Output Helper
54     <hr/>
55     <div id="sout_method">
56       <table>
57         <tr>
58           <td>
59             <input type="checkbox" id="sout_display" onchange="update_sout()"/>
60             <label for="sout_display">Display</label>
61           </td>
62           <td></td>
63           <td></td>
64         </tr>
65         <tr>
66           <td>
67             <input type="checkbox" id="sout_file" onchange="update_sout()"/>
68             <label for="sout_file">File</label>
69           </td>
70           <td>
71             <label for="sout_file_filename">File name</label>
72             <input type="text" id="sout_file_filename" onchange="update_sout()"/>
73           </td>
74           <td></td>
75         </tr>
76         <tr>
77           <td>
78             <input type="checkbox" id="sout_http" onchange="update_sout()"/>
79             <label for="sout_http">HTTP</label>
80           </td>
81           <td>
82             <label for="sout_http_addr">Address</label>
83             <input type="text" id="sout_http_addr" onchange="update_sout()"/>
84           </td>
85           <td>
86             <label for="sout_http_port">Port</label>
87             <input type="text" id="sout_http_port" onchange="update_sout()"/>
88           </td>
89         </tr>
90         <tr>
91           <td>
92             <input type="checkbox" id="sout_mmsh" onchange="update_sout()"/>
93             <label for="sout_mmsh">MMSH</label>
94           </td>
95           <td>
96             <label for="sout_mmsh_addr">Address</label>
97             <input type="text" id="sout_mmsh_addr" onchange="update_sout()"/>
98           </td>
99           <td>
100             <label for="sout_mmsh_port">Port</label>
101             <input type="text" id="sout_mmsh_port" onchange="update_sout()"/>
102           </td>
103         </tr>
104         <tr>
105           <td>
106             <input type="checkbox" id="sout_rtp" onchange="update_sout()"/>
107             <label for="sout_rtp">RTP</label>
108           </td>
109           <td>
110             <label for="sout_rtp_addr">Address</label>
111             <input type="text" id="sout_rtp_addr" onchange="update_sout()"/>
112           </td>
113           <td>
114             <label for="sout_rtp_port">Port</label>
115             <input type="text" id="sout_rtp_port" onchange="update_sout()"/>
116           </td>
117         </tr>
118         <tr>
119           <td>
120             <input type="checkbox" id="sout_udp" onchange="update_sout()"/>
121             <label for="sout_udp">UDP</label>
122           </td>
123           <td>
124             <label for="sout_udp_addr">Address</label>
125             <input type="text" id="sout_udp_addr" onchange="update_sout()"/>
126           </td>
127           <td>
128             <label for="sout_udp_port">Port</label>
129             <input type="text" id="sout_udp_port" onchange="update_sout()"/>
130           </td>
131         </tr>
132       </table>
133     </div>
134     <hr/>
135     <div id="sout_muxh">
136       <input type="radio" name="sout_mux" id="sout_mux_default" value="" onchange="update_sout()" />
137       <label for="sout_mux_default">Default</label>
138       <input type="radio" name="sout_mux" id="sout_mux_ts" value="ts" onchange="update_sout()"/>
139       <label for="sout_mux_ts">MPEG TS</label>
140       <input type="radio" name="sout_mux" id="sout_mux_ps" value="ps" onchange="update_sout()"/>
141       <label for="sout_mux_ps">MPEG PS</label>
142       <input type="radio" name="sout_mux" id="sout_mux_mpeg1" value="mpeg1" onchange="update_sout()"/>
143       <label for="sout_mux_ts">MPEG 1</label>
144       <input type="radio" name="sout_mux" id="sout_mux_ogg" value="ogg" onchange="update_sout()"/>
145       <label for="sout_mux_ts">OGG</label>
146       <br/>
147       <input type="radio" name="sout_mux" id="sout_mux_asf" value="asf" onchange="update_sout()"/>
148       <label for="sout_mux_ts">ASF</label>
149       <input type="radio" name="sout_mux" id="sout_mux_mp4" value="mp4" onchange="update_sout()"/>
150       <label for="sout_mux_ts">MP4</label>
151       <input type="radio" name="sout_mux" id="sout_mux_mov" value="mov" onchange="update_sout()"/>
152       <label for="sout_mux_ts">MOV</label>
153       <input type="radio" name="sout_mux" id="sout_mux_wav" value="wav" onchange="update_sout()"/>
154       <label for="sout_mux_ts">WAV</label>
155       <input type="radio" name="sout_mux" id="sout_mux_raw" value="raw" onchange="update_sout()"/>
156       <label for="sout_mux_ts">Raw</label>
157     </div>
158     <hr/>
159     <div id="sout_transcode">
160       <input type="hidden" id="sout_transcode_extra" value="" />
161       <table>
162         <tr>
163           <td>
164             <input type="checkbox" id="sout_vcodec_s" onchange="update_sout()"/>
165             <label for="sout_vcodec_s">Video Codec</label>
166           </td>
167           <td>
168             <select id="sout_vcodec" onchange="update_sout()">
169               <option value="mp1v">mp1v</option>
170               <option value="mp2v">mp2v</option>
171               <option value="mp4v">mp4v</option>
172               <option value="DIV1">DIV1</option>
173               <option value="DIV2">DIV2</option>
174               <option value="DIV3">DIV3</option>
175               <option value="H263">H263</option>
176               <option value="H264">H264</option>
177               <option value="WMV1">WMV1</option>
178               <option value="WMV2">WMV2</option>
179               <option value="MJPG">MJPG</option>
180               <option value="theo">theo</option>
181             </select>
182           </td>
183           <td>
184             <label for="sout_vb">Bitrate (kb/s)</label>
185             <select id="sout_vb" onchange="update_sout()">
186               <option value="4096">4096</option>
187               <option value="3072">3072</option>
188               <option value="2048">2048</option>
189               <option value="1024">1024</option>
190               <option value="768">768</option>
191               <option value="512">512</option>
192               <option value="384">384</option>
193               <option value="256">256</option>
194               <option value="192">192</option>
195               <option value="128">128</option>
196               <option value="96">96</option>
197               <option value="64">64</option>
198               <option value="32">32</option>
199               <option value="16">16</option>
200             </select>
201           </td>
202           <td>
203             <label for="sout_scale">Scale</label>
204             <select id="sout_scale" onchange="update_sout()">
205               <option value="0.25">0.25</option>
206               <option value="0.5">0.5</option>
207               <option value="0.75">0.75</option>
208               <option value="1" selected="selected">1</option>
209               <option value="1.25">1.25</option>
210               <option value="1.5">1.5</option>
211               <option value="1.75">1.75</option>
212               <option value="2">2</option>
213             </select>
214           </td>
215         </tr>
216         <tr>
217           <td>
218             <input type="checkbox" id="sout_acodec_s" onchange="update_sout()"/>
219             <label for="sout_acodec_s">Audio Codec</label>
220           </td>
221           <td>
222             <select id="sout_acodec" onchange="update_sout()">
223               <option value="mpga">mpga</option>
224               <option value="mp2a">mp2a</option>
225               <option value="mp3">mp3</option>
226               <option value="mp4a">mp4a</option>
227               <option value="a52">a52</option>
228               <option value="vorb">vorb</option>
229               <option value="flac">flac</option>
230               <option value="spx">spx</option>
231               <option value="s16l">s16l</option>
232               <option value="fl32">fl32</option>
233             </select>
234           </td>
235           <td>
236             <label for="sout_ab">Bitrate (kb/s)</label>
237             <select id="sout_ab" onchange="update_sout()">
238               <option value="512">512</option>
239               <option value="384">384</option>
240               <option value="256">256</option>
241               <option value="192">192</option>
242               <option value="128">128</option>
243               <option value="96">96</option>
244               <option value="64">64</option>
245               <option value="32">32</option>
246               <option value="16">16</option>
247             </select>
248           </td>
249           <td>
250             <label for="sout_channels">Channels</label>
251             <select id="sout_channels" onchange="update_sout()">
252               <option value="">default</option>
253               <option value="1">1</option>
254               <option value="2">2</option>
255               <option value="4">4</option>
256               <option value="6">6</option>
257             </select>
258           </td>
259         </tr>
260         <tr>
261           <td>
262             <input type="checkbox" id="sout_sub" onchange="update_sout()"/>
263             <label for="sout_sub">Subtitles Codec</label>
264           </td>
265           <td>
266             <select id="sout_scodec" onchange="update_sout()">
267               <option value="dvbs">dvbs</option>
268             </select>
269           </td>
270           <td colspan="2">
271             <input type="checkbox" id="sout_soverlay" onchange="update_sout()"/>
272             <label for="sout_soverlay">Subtitles overlay</label>
273           </td>
274         </tr>
275       </table>
276     </div>
277     <hr/>
278     <div id="sout_misc">
279       <input type="checkbox" id="sout_sap" onchange="update_sout()"/>
280       <label for="sout_sap">SAP announce</label>
281       <br/>
282       <label for="sout_sap_group">Group name</label>
283       <input type="text" id="sout_sap_group" onchange="update_sout()"/>
284       <label for="sout_sap_name">Channel name</label>
285       <input type="text" id="sout_sap_name" onchange="update_sout()"/>
286       <hr/>
287       <input type="checkbox" id="sout_all" onchange="update_sout()"/>
288       <label for="sout_all">Select all elementary streams</label>
289       <hr/>
290       <label for="sout_ttl">Time-To-Live (TTL)</label>
291       <input type="text" id="sout_ttl" onchange="update_sout()"/>
292     </div>
293   </div>
294 </div>