input
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:

midi

开发平台:

Unix_Linux

  1. <vlc id="if" param1="0" />
  2. vim:syntax=html
  3. <!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  4. <  input: VLC media player web interface - input selection dialog
  5. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  6. <  Copyright (C) 2005-2006 the VideoLAN team
  7. <  $Id$
  8. <  Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
  9. <  This program is free software; you can redistribute it and/or modify
  10. <  it under the terms of the GNU General Public License as published by
  11. <  the Free Software Foundation; either version 2 of the License, or
  12. <  (at your option) any later version.
  13. <  This program is distributed in the hope that it will be useful,
  14. <  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. <  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. <  GNU General Public License for more details.
  17. <  You should have received a copy of the GNU General Public License
  18. <  along with this program; if not, write to the Free Software
  19. <  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  20. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  21. This dialog needs the following dialogs to be fully functional: browse
  22. <vlc id="end" />
  23. <div id="input" class="dialog" style="display: none">
  24.   <div class="title">
  25.     Input
  26.     <img class="close" src="images/white_cross_small.png" alt="Close" onclick="hide('input');"/>
  27.   </div>
  28.   <div class="controls">
  29.     <label for="input_mrl">Input (MRL)</label>
  30.     <vlc id="if" param1="page value 'vlm' strcmp 0 =" />
  31.       <input type="text" name="input_mrl" id="input_mrl" size="60" onkeypress="if( event.keyCode == 13 ) vlm_input_change();"/>
  32.       <input type="button" value="Ok" onclick="vlm_input_change();" />
  33.       <input type="button" value="Cancel" onclick="hide('input');" />
  34.       <input type="hidden" id="input_dest" value="" />
  35.     <vlc id="else" />
  36.       <input type="text" name="input_mrl" id="input_mrl" size="60" onkeypress="if( event.keyCode == 13 ) in_play();"/>
  37.       <input type="button" value="Play" onclick="in_play();" />
  38.       <input type="button" value="Enqueue" onclick="in_enqueue();" />
  39.     <vlc id="end" />
  40.     <br/>
  41.     <!--<button id="btn_inhide" onclick="hide_input();">
  42.       Hide
  43.     </button>-->
  44.     <button id="btn_file" onclick="hide_input();show('input_file');update_input_file();">
  45.       File
  46.     </button>
  47.     <button id="btn_disc" onclick="hide_input();show('input_disc');update_input_disc();">
  48.       Disc
  49.     </button>
  50.     <button id="btn_network" onclick="hide_input();show('input_network');update_input_net();">
  51.       Network
  52.     </button>
  53.     <button id="btn_fake" onclick="hide_input();show('input_fake');update_input_fake();">
  54.       Fixed image
  55.     </button>
  56.   </div>
  57.   <div id="input_helper" class="helper" >
  58.     <div id="input_file" style="display: block">
  59.       Open File
  60.       <hr/>
  61.       <label for="input_file_filename">File name</label>
  62.       <input type="text" id="input_file_filename" size="60" onchange="update_input_file();" onfocus="update_input_file();"/>
  63.       <input type="button" id="input_file_browse" value="Browse" onclick="browse( 'input_file_filename' );" />
  64.       <!-- <hr/>
  65.       <input type="checkbox" id="input_sub_options" />
  66.       <label for="input_sub_options">Subtitle options *TODO/FIXME/FIXHTTPD*</label>
  67.       <br/>
  68.       <label for="input_sub_file">Subtitles file</label>
  69.       <input type="text" id="input_sub_file" size="60" />
  70.       <br/>
  71.       <label for="input_sub_enc">Subtitles encoding</label>
  72.       <select id="input_sub_enc">
  73.         <option></option>
  74.       </select>
  75.       <br/>
  76.       <label for="input_sub_size">Font size</label>
  77.       <select id="input_sub_size">
  78.         <option></option>
  79.       </select>
  80.       <label for="input_sub_justification">Justification</label>
  81.       <select id="input_sub_justification">
  82.         <option></option>
  83.       </select>
  84.       <br/>
  85.       <label for="input_sub_fps">Frames per second</label>
  86.       <input type="text" id="input_sub_fps" />
  87.       <label for="input_sub_delay">Delay</label>
  88.       <input type="text" id="input_sub_delay" />-->
  89.     </div>
  90.     <div id="input_disc" style="display: none">
  91.       Open Disc
  92.       <hr/>
  93.       Disc type :
  94.       <input type="radio" name="input_disc_type" id="input_disc_dvdmenu" value="dvd" onchange="update_input_disc();" />
  95.       <label for="input_disc_dvdmenu">DVD (menus)</label>
  96.       <input type="radio" name="input_disc_type" id="input_disc_dvd" value="dvdsimple" onchange="update_input_disc();" />
  97.       <label for="input_disc_dvd">DVD</label>
  98.       <input type="radio" name="input_disc_type" id="input_disc_vcd" value="vcd" onchange="update_input_disc();" />
  99.       <label for="input_disc_vcd">VCD</label>
  100.       <input type="radio" name="input_disc_type" id="input_disc_cdda" value="cdda" onchange="update_input_disc();" />
  101.       <label for="input_disc_cdda">Audio CD</label>
  102.       <hr/>
  103.       <table>
  104.         <tr>
  105.           <td>
  106.             <label for="input_disc_dev">Device name</label>
  107.           </td>
  108.           <td>
  109.             <input type="text" id="input_disc_dev" onchange="update_input_disc();" />
  110.           </td>
  111.         </tr>
  112.         <tr>
  113.           <td>
  114.             <label for="input_disc_title">Title</label>
  115.           </td>
  116.           <td>
  117.             <input type="text" id="input_disc_title" onchange="update_input_disc();" />
  118.           </td>
  119.         </tr>
  120.         <tr>
  121.           <td>
  122.             <label for="input_disc_chapter">Chapter</label>
  123.           </td>
  124.           <td>
  125.             <input type="text" id="input_disc_chapter" onchange="update_input_disc();" />
  126.           </td>
  127.         </tr>
  128.         <tr>
  129.           <td>
  130.             <label for="input_disc_subtrack">Subtitles track</label>
  131.           </td>
  132.           <td>
  133.              <input type="text" id="input_disc_subtrack" onchange="update_input_disc();" />
  134.           </td>
  135.         </tr>
  136.         <tr>
  137.           <td>
  138.             <label for="input_disc_audiotrack">Audio track</label>
  139.           </td>
  140.           <td>
  141.             <input type="text" id="input_disc_audiotrack" onchange="update_input_disc();" />
  142.           </td>
  143.         </tr>
  144.       </table>
  145.     </div>
  146.     <div id="input_network" style="display: none">
  147.       Open Network
  148.       <hr/>
  149.       <table>
  150.         <tr>
  151.           <td>
  152.             <input type="radio" name="input_net_type" id="input_net_udp" value="udp" onchange="update_input_net();" />
  153.             <label for="input_net_udp">UDP/RTP</label>
  154.           </td>
  155.           <td>
  156.             <label for="input_net_udp_port">Port</label>
  157.             <input type="text" id="input_net_udp_port" size="6" onchange="update_input_net();" />
  158.             <input type="checkbox" id="input_net_udp_forceipv6" onchange="update_input_net();" />
  159.             <label for="input_net_udp_forceipv6">Force IPv6</label>
  160.           </td>
  161.         </tr>
  162.         <tr>
  163.           <td>
  164.             <input type="radio" name="input_net_type" id="input_net_udpmcast" value="udpmcast" onchange="update_input_net();" />
  165.             <label for="input_net_udpmcast">UDP/RTP Multicast</label>
  166.           </td>
  167.           <td>
  168.             <label for="input_net_udpmcast_address">Address</label>
  169.             <input type="text" id="input_net_udpmcast_address" onchange="update_input_net();" />
  170.             <label for="input_net_udpmcast_port">Port</label>
  171.             <input type="text" id="input_net_udpmcast_port" size="6" onchange="update_input_net();" />
  172.           </td>
  173.         </tr>
  174.         <tr>
  175.           <td>
  176.             <input type="radio" name="input_net_type" id="input_net_http" value="http" onchange="update_input_net();" />
  177.             <label for="input_net_http">HTTP/HTTPS/FTP/MMS</label>
  178.           </td>
  179.           <td>
  180.             <label for="input_net_http_url">URL</label>
  181.             <input type="text" id="input_net_http_url" onchange="update_input_net();" />
  182.           </td>
  183.         </tr>
  184.         <tr>
  185.           <td>
  186.             <input type="radio" name="input_net_type" id="input_net_rtsp" value="rtsp" onchange="update_input_net();" />
  187.             <label for="input_net_rtsp">RTSP</label>
  188.           </td>
  189.           <td>
  190.             <label for="input_net_rtsp_url">URL</label>
  191.             <input type="text" id="input_net_rtsp_url" value="rtsp://" onchange="update_input_net();" />
  192.           </td>
  193.         </tr>
  194.         <tr>
  195.           <td>
  196.             <input type="checkbox" id="input_net_timeshift" onchange="update_input_net();" />
  197.             <label for="input_net_timeshift">Allow timeshifting</label>
  198.           </td>
  199.           <td></td>
  200.         </tr>
  201.       </table>
  202.     </div>
  203.     <div id="input_fake" style="display: none">
  204.       Fixed image stream (fake)
  205.       <hr/>
  206.       <label for="input_fake_filename">Image file name</label>
  207.       <input type="text" id="input_fake_filename" size="60" onchange="update_input_fake();" onfocus="update_input_fake();"/>
  208.       <input type="button" id="input_fake_browse" value="Browse" onclick="browse( 'input_fake_filename' );" />
  209.       <hr/>
  210.       <label for="input_fake_width">Width</label>
  211.       <input type="text" id="input_fake_width" size="8" onchange="update_input_fake();" />
  212.       <label for="input_fake_height">Height</label>
  213.       <input type="text" id="input_fake_height" size="8" onchange="update_input_fake();" />
  214.       <label for="input_fake_ar">Aspect ratio</label>
  215.       <input type="text" id="input_fake_ar" size="8" onchange="update_input_fake();" />
  216.     </div>
  217.   </div>
  218. </div>