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

midi

开发平台:

Unix_Linux

  1. <?vlc --[[
  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. ]]?>
  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</label>
  30.     <?vlc if current_page == "vlm" then ?>
  31.       <input type="text" name="input_mrl" id="input_mrl" size="60" onkeypress="if( event.keyCode == 13 ) vlm_input_change();"/>
  32.     <?vlc else ?>
  33.       <input type="text" name="input_mrl" id="input_mrl" size="60" onkeypress="if( event.keyCode == 13 ) in_play();"/>
  34.     <?vlc end ?>
  35.     <div>
  36.     Options
  37.     <!-- <input type="button" value="Refresh options" onclick="refresh_input_options_list();" /> -->
  38.     <input type="button" value="Add option" onclick="add_input_option(':option=value');" />
  39.     <div id="input_options_list"></div>
  40.     </div>
  41.     <?vlc if current_page == "vlm" then ?>
  42.       <input type="button" value="Ok" onclick="vlm_input_change();" />
  43.       <input type="button" value="Cancel" onclick="hide('input');" />
  44.       <input type="hidden" id="input_dest" value="" />
  45.     <?vlc else ?>
  46.       <input type="button" value="Play" onclick="in_play();" />
  47.       <input type="button" value="Enqueue" onclick="in_enqueue();" />
  48.     <?vlc end ?>
  49.     <br/>
  50.     <!--<button id="btn_inhide" onclick="hide_input();">
  51.       Hide
  52.     </button>-->
  53.     <button id="btn_file" onclick="hide_input();show('input_file');update_input_file();">
  54.       File
  55.     </button>
  56.     <button id="btn_disc" onclick="hide_input();show('input_disc');update_input_disc();">
  57.       Disc
  58.     </button>
  59.     <button id="btn_network" onclick="hide_input();show('input_network');update_input_net();">
  60.       Network
  61.     </button>
  62.     <button id="btn_fake" onclick="hide_input();show('input_fake');update_input_fake();">
  63.       Fixed image
  64.     </button>
  65.   </div>
  66.   <div id="input_helper" class="helper" >
  67.     <div id="input_file" style="display: block">
  68.       Open File
  69.       <hr/>
  70.       <label for="input_file_filename">File name</label>
  71.       <input type="text" id="input_file_filename" size="60" onchange="update_input_file();" onfocus="update_input_file();"/>
  72.       <input type="button" id="input_file_browse" value="Browse" onclick="browse( 'input_file_filename' );" />
  73.       <!-- <hr/>
  74.       <input type="checkbox" id="input_sub_options" />
  75.       <label for="input_sub_options">Subtitle options *TODO/FIXME/FIXHTTPD*</label>
  76.       <br/>
  77.       <label for="input_sub_file">Subtitles file</label>
  78.       <input type="text" id="input_sub_file" size="60" />
  79.       <br/>
  80.       <label for="input_sub_enc">Subtitles encoding</label>
  81.       <select id="input_sub_enc">
  82.         <option></option>
  83.       </select>
  84.       <br/>
  85.       <label for="input_sub_size">Font size</label>
  86.       <select id="input_sub_size">
  87.         <option></option>
  88.       </select>
  89.       <label for="input_sub_justification">Justification</label>
  90.       <select id="input_sub_justification">
  91.         <option></option>
  92.       </select>
  93.       <br/>
  94.       <label for="input_sub_fps">Frames per second</label>
  95.       <input type="text" id="input_sub_fps" />
  96.       <label for="input_sub_delay">Delay</label>
  97.       <input type="text" id="input_sub_delay" />-->
  98.     </div>
  99.     <div id="input_disc" style="display: none">
  100.       Open Disc
  101.       <hr/>
  102.       Disc type :
  103.       <input type="radio" name="input_disc_type" id="input_disc_dvdmenu" value="dvd" onchange="update_input_disc();" />
  104.       <label for="input_disc_dvdmenu">DVD (menus)</label>
  105.       <input type="radio" name="input_disc_type" id="input_disc_dvd" value="dvdsimple" onchange="update_input_disc();" />
  106.       <label for="input_disc_dvd">DVD</label>
  107.       <input type="radio" name="input_disc_type" id="input_disc_vcd" value="vcd" onchange="update_input_disc();" />
  108.       <label for="input_disc_vcd">VCD</label>
  109.       <input type="radio" name="input_disc_type" id="input_disc_cdda" value="cdda" onchange="update_input_disc();" />
  110.       <label for="input_disc_cdda">Audio CD</label>
  111.       <hr/>
  112.       <table>
  113.         <tr>
  114.           <td>
  115.             <label for="input_disc_dev">Device name</label>
  116.           </td>
  117.           <td>
  118.             <input type="text" id="input_disc_dev" onchange="update_input_disc();" />
  119.           </td>
  120.         </tr>
  121.         <tr>
  122.           <td>
  123.             <label for="input_disc_title">Title</label>
  124.           </td>
  125.           <td>
  126.             <input type="text" id="input_disc_title" onchange="update_input_disc();" />
  127.           </td>
  128.         </tr>
  129.         <tr>
  130.           <td>
  131.             <label for="input_disc_chapter">Chapter</label>
  132.           </td>
  133.           <td>
  134.             <input type="text" id="input_disc_chapter" onchange="update_input_disc();" />
  135.           </td>
  136.         </tr>
  137.         <tr>
  138.           <td>
  139.             <label for="input_disc_subtrack">Subtitles track</label>
  140.           </td>
  141.           <td>
  142.              <input type="text" id="input_disc_subtrack" onchange="update_input_disc();" />
  143.           </td>
  144.         </tr>
  145.         <tr>
  146.           <td>
  147.             <label for="input_disc_audiotrack">Audio track</label>
  148.           </td>
  149.           <td>
  150.             <input type="text" id="input_disc_audiotrack" onchange="update_input_disc();" />
  151.           </td>
  152.         </tr>
  153.       </table>
  154.     </div>
  155.     <div id="input_network" style="display: none">
  156.       Open Network
  157.       <hr/>
  158.       <table>
  159.         <tr>
  160.           <td>
  161.             <input type="radio" name="input_net_type" id="input_net_udp" value="udp" onchange="update_input_net();" />
  162.             <label for="input_net_udp">UDP/RTP</label>
  163.           </td>
  164.           <td>
  165.             <label for="input_net_udp_port">Port</label>
  166.             <input type="text" id="input_net_udp_port" size="6" onchange="update_input_net();" />
  167.             <input type="checkbox" id="input_net_udp_forceipv6" onchange="update_input_net();" />
  168.             <label for="input_net_udp_forceipv6">Force IPv6</label>
  169.           </td>
  170.         </tr>
  171.         <tr>
  172.           <td>
  173.             <input type="radio" name="input_net_type" id="input_net_udpmcast" value="udpmcast" onchange="update_input_net();" />
  174.             <label for="input_net_udpmcast">UDP/RTP Multicast</label>
  175.           </td>
  176.           <td>
  177.             <label for="input_net_udpmcast_address">Address</label>
  178.             <input type="text" id="input_net_udpmcast_address" onchange="update_input_net();" />
  179.             <label for="input_net_udpmcast_port">Port</label>
  180.             <input type="text" id="input_net_udpmcast_port" size="6" onchange="update_input_net();" />
  181.           </td>
  182.         </tr>
  183.         <tr>
  184.           <td>
  185.             <input type="radio" name="input_net_type" id="input_net_http" value="http" onchange="update_input_net();" />
  186.             <label for="input_net_http">HTTP/HTTPS/FTP/MMS</label>
  187.           </td>
  188.           <td>
  189.             <label for="input_net_http_url">URL</label>
  190.             <input type="text" id="input_net_http_url" onchange="update_input_net();" />
  191.           </td>
  192.         </tr>
  193.         <tr>
  194.           <td>
  195.             <input type="radio" name="input_net_type" id="input_net_rtsp" value="rtsp" onchange="update_input_net();" />
  196.             <label for="input_net_rtsp">RTSP</label>
  197.           </td>
  198.           <td>
  199.             <label for="input_net_rtsp_url">URL</label>
  200.             <input type="text" id="input_net_rtsp_url" value="rtsp://" onchange="update_input_net();" />
  201.           </td>
  202.         </tr>
  203.         <tr>
  204.           <td>
  205.             <input type="checkbox" id="input_net_timeshift" onchange="update_input_net();" />
  206.             <label for="input_net_timeshift">Allow timeshifting</label>
  207.           </td>
  208.           <td></td>
  209.         </tr>
  210.       </table>
  211.     </div>
  212.     <div id="input_fake" style="display: none">
  213.       Fixed image stream (fake)
  214.       <hr/>
  215.       <label for="input_fake_filename">Image file name</label>
  216.       <input type="text" id="input_fake_filename" size="60" onchange="update_input_fake();" onfocus="update_input_fake();"/>
  217.       <input type="button" id="input_fake_browse" value="Browse" onclick="browse( 'input_fake_filename' );" />
  218.       <hr/>
  219.       <label for="input_fake_width">Width</label>
  220.       <input type="text" id="input_fake_width" size="8" onchange="update_input_fake();" />
  221.       <label for="input_fake_height">Height</label>
  222.       <input type="text" id="input_fake_height" size="8" onchange="update_input_fake();" />
  223.       <label for="input_fake_ar">Aspect ratio</label>
  224.       <input type="text" id="input_fake_ar" size="8" onchange="update_input_fake();" />
  225.     </div>
  226.   </div>
  227. </div>