]> git.sesse.net Git - vlc/blob - share/http/dialogs/sout
begining of a VLM interface and some code organisations changes. The vlm
[vlc] / share / http / dialogs / sout
1 <vlc id="if" param1="0" />
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 <vlc id="end" />
29
30 <div id="sout" class="dialog" style="display: none">
31   <div class="title">
32     Stream Output
33   </div>
34   <div class="controls">
35     <label for="sout_mrl">Destination (MRL)</label>
36     <input type="text" name="sout_mrl" id="sout_mrl" size="60" />
37     <br/>
38     <vlc id="if" param1="page value 'vlm' strcmp 0 =" />
39       <input type="submit" value="Ok" onclick="vlm_output_change();" />
40       <input type="hidden" id="sout_dest" />
41     <vlc id="else" />
42       <input type="submit" value="Save" onclick="save_sout();" />
43     <vlc id="end" />
44     <input type="button" value="Cancel" onclick="reset_sout();"/>
45     <input type="hidden" id="sout_old_mrl" value="" /> <!-- FIXME -->
46     <input type="button" id="sout_helper_toggle" onclick="toggle_show_sout_helper()" value="Full sout interface" />
47   </div>
48   <div id="sout_helper" class="helper" style="display: none;" >
49     Stream Output Helper
50     <hr/>
51     <div id="sout_method">
52       <table>
53         <tr>
54           <td>
55             <input type="checkbox" id="sout_display" onchange="update_sout()"/>
56             <label for="sout_display">Display</label>
57           </td>
58           <td></td>
59           <td></td>
60         </tr>
61         <tr>
62           <td>
63             <input type="checkbox" id="sout_file" onchange="update_sout()"/>
64             <label for="sout_file">File</label>
65           </td>
66           <td>
67             <label for="sout_file_filename">File name</label>
68             <input type="text" id="sout_file_filename" onchange="update_sout()"/>
69           </td>
70           <td></td>
71         </tr>
72         <tr>
73           <td>
74             <input type="checkbox" id="sout_http" onchange="update_sout()"/>
75             <label for="sout_http">HTTP</label>
76           </td>
77           <td>
78             <label for="sout_http_addr">Address</label>
79             <input type="text" id="sout_http_addr" onchange="update_sout()"/>
80           </td>
81           <td>
82             <label for="sout_http_port">Port</label>
83             <input type="text" id="sout_http_port" onchange="update_sout()"/>
84           </td>
85         </tr>
86         <tr>
87           <td>
88             <input type="checkbox" id="sout_mmsh" onchange="update_sout()"/>
89             <label for="sout_mmsh">MMSH</label>
90           </td>
91           <td>
92             <label for="sout_mmsh_addr">Address</label>
93             <input type="text" id="sout_mmsh_addr" onchange="update_sout()"/>
94           </td>
95           <td>
96             <label for="sout_mmsh_port">Port</label>
97             <input type="text" id="sout_mmsh_port" onchange="update_sout()"/>
98           </td>
99         </tr>
100         <tr>
101           <td>
102             <input type="checkbox" id="sout_rtp" onchange="update_sout()"/>
103             <label for="sout_rtp">RTP</label>
104           </td>
105           <td>
106             <label for="sout_rtp_addr">Address</label>
107             <input type="text" id="sout_rtp_addr" onchange="update_sout()"/>
108           </td>
109           <td>
110             <label for="sout_rtp_port">Port</label>
111             <input type="text" id="sout_rtp_port" onchange="update_sout()"/>
112           </td>
113         </tr>
114         <tr>
115           <td>
116             <input type="checkbox" id="sout_udp" onchange="update_sout()"/>
117             <label for="sout_udp">UDP</label>
118           </td>
119           <td>
120             <label for="sout_udp_addr">Address</label>
121             <input type="text" id="sout_udp_addr" onchange="update_sout()"/>
122           </td>
123           <td>
124             <label for="sout_udp_port">Port</label>
125             <input type="text" id="sout_udp_port" onchange="update_sout()"/>
126           </td>
127         </tr>
128       </table>
129     </div>
130     <hr/>
131     <div id="sout_muxh">
132       <input type="radio" name="sout_mux" id="sout_mux_default" value="" onchange="update_sout()" />
133       <label for="sout_mux_default">Default</label>
134       <input type="radio" name="sout_mux" id="sout_mux_ts" value="ts" onchange="update_sout()"/>
135       <label for="sout_mux_ts">MPEG TS</label>
136       <input type="radio" name="sout_mux" id="sout_mux_ps" value="ps" onchange="update_sout()"/>
137       <label for="sout_mux_ps">MPEG PS</label>
138       <input type="radio" name="sout_mux" id="sout_mux_mpeg1" value="mpeg1" onchange="update_sout()"/>
139       <label for="sout_mux_ts">MPEG 1</label>
140       <input type="radio" name="sout_mux" id="sout_mux_ogg" value="ogg" onchange="update_sout()"/>
141       <label for="sout_mux_ts">OGG</label>
142       <br/>
143       <input type="radio" name="sout_mux" id="sout_mux_asf" value="asf" onchange="update_sout()"/>
144       <label for="sout_mux_ts">ASF</label>
145       <input type="radio" name="sout_mux" id="sout_mux_mp4" value="mp4" onchange="update_sout()"/>
146       <label for="sout_mux_ts">MP4</label>
147       <input type="radio" name="sout_mux" id="sout_mux_mov" value="mov" onchange="update_sout()"/>
148       <label for="sout_mux_ts">MOV</label>
149       <input type="radio" name="sout_mux" id="sout_mux_wav" value="wav" onchange="update_sout()"/>
150       <label for="sout_mux_ts">WAV</label>
151       <input type="radio" name="sout_mux" id="sout_mux_raw" value="raw" onchange="update_sout()"/>
152       <label for="sout_mux_ts">Raw</label>
153     </div>
154     <hr/>
155     <div id="sout_transcode">
156       <table>
157         <tr>
158           <td>
159             <input type="checkbox" id="sout_vcodec_s" onchange="update_sout()"/>
160             <label for="sout_vcodec_s">Video Codec</label>
161           </td>
162           <td>
163             <select id="sout_vcodec" onchange="update_sout()">
164               <option value="mp1v">mp1v</option>
165               <option value="mp2v">mp2v</option>
166               <option value="mp4v">mp4v</option>
167               <option value="DIV1">DIV1</option>
168               <option value="DIV2">DIV2</option>
169               <option value="DIV3">DIV3</option>
170               <option value="H263">H263</option>
171               <option value="H264">H264</option>
172               <option value="WMV1">WMV1</option>
173               <option value="WMV2">WMV2</option>
174               <option value="MJPG">MJPG</option>
175               <option value="theo">theo</option>
176             </select>
177           </td>
178           <td>
179             <label for="sout_vb">Bitrate (kb/s)</label>
180             <select id="sout_vb" onchange="update_sout()">
181               <option value="4096">4096</option>
182               <option value="3072">3072</option>
183               <option value="2048">2048</option>
184               <option value="1024">1024</option>
185               <option value="768">768</option>
186               <option value="512">512</option>
187               <option value="384">384</option>
188               <option value="256">256</option>
189               <option value="192">192</option>
190               <option value="128">128</option>
191               <option value="96">96</option>
192               <option value="64">64</option>
193               <option value="32">32</option>
194               <option value="16">16</option>
195             </select>
196           </td>
197           <td>
198             <label for="sout_scale">Scale</label>
199             <select id="sout_scale" onchange="update_sout()">
200               <option value="0.25">0.25</option>
201               <option value="0.5">0.5</option>
202               <option value="0.75">0.75</option>
203               <option value="1" selected="selected">1</option>
204               <option value="1.25">1.25</option>
205               <option value="1.5">1.5</option>
206               <option value="1.75">1.75</option>
207               <option value="2">2</option>
208             </select>
209           </td>
210         </tr>
211         <tr>
212           <td>
213             <input type="checkbox" id="sout_acodec_s" onchange="update_sout()"/>
214             <label for="sout_acodec_s">Audio Codec</label>
215           </td>
216           <td>
217             <select id="sout_acodec" onchange="update_sout()">
218               <option value="mpga">mpga</option>
219               <option value="mp2a">mp2a</option>
220               <option value="mp3">mp3</option>
221               <option value="mp4a">mp4a</option>
222               <option value="a42">a52</option>
223               <option value="vorb">vorb</option>
224               <option value="flac">flac</option>
225               <option value="spx">spx</option>
226               <option value="s16l">s16l</option>
227               <option value="fl32">fl32</option>
228             </select>
229           </td>
230           <td>
231             <label for="sout_ab">Bitrate (kb/s)</label>
232             <select id="sout_ab" onchange="update_sout()">
233               <option value="512">512</option>
234               <option value="384">384</option>
235               <option value="256">256</option>
236               <option value="192">192</option>
237               <option value="128">128</option>
238               <option value="96">96</option>
239               <option value="64">64</option>
240               <option value="32">32</option>
241               <option value="16">16</option>
242             </select>
243           </td>
244           <td>
245             <label for="sout_channels">Channels</label>
246             <select id="sout_channels" onchange="update_sout()">
247               <option value="">default</option>
248               <option value="1">1</option>
249               <option value="2">2</option>
250               <option value="4">4</option>
251               <option value="6">6</option>
252             </select>
253           </td>
254         </tr>
255         <tr>
256           <td>
257             <input type="checkbox" id="sout_sub" onchange="update_sout()"/>
258             <label for="sout_sub">Subtitles Codec</label>
259           </td>
260           <td>
261             <select id="sout_scodec" onchange="update_sout()">
262               <option value="dvbs">dvbs</option>
263             </select>
264           </td>
265           <td colspan="2">
266             <input type="checkbox" id="sout_soverlay" onchange="update_sout()"/>
267             <label for="sout_soverlay">Subtitles overlay</label>
268           </td>
269         </tr>
270       </table>
271     </div>
272     <hr/>
273     <div id="sout_misc">
274       <input type="checkbox" id="sout_sap" onchange="update_sout()"/>
275       <label for="sout_sap">SAP announce</label>
276       <br/>
277       <label for="sout_sap_group">Group name</label>
278       <input type="text" id="sout_sap_group" onchange="update_sout()"/>
279       <label for="sout_sap_name">Channel name</label>
280       <input type="text" id="sout_sap_name" onchange="update_sout()"/>
281       <hr/>
282       <input type="checkbox" id="sout_all" onchange="update_sout()"/>
283       <label for="sout_all">Select all elementary streams</label>
284       <hr/>
285       <label for="sout_ttl">Time-To-Live (TTL)</label>
286       <input type="text" id="sout_ttl" onchange="update_sout()"/>
287     </div>
288   </div>
289 </div>