vlc.scriptTerminology
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5.     <key>Name</key>
  6.     <string>VLC suite</string>
  7.     <key>Description</key>
  8.     <string>VLC commands.</string>
  9.     <key>Classes</key>
  10.     <dict>
  11.         <key>VLCApplication</key>
  12.         <dict>
  13.             <key>Description</key>
  14.             <string>VLC's top level scripting object</string>
  15.             <key>Name</key>
  16.             <string>application</string>
  17.             <key>PluralName</key>
  18.             <string>applications</string>
  19.             <key>Attributes</key>
  20.             <dict>
  21.                 <key>scriptFullscreenMode</key>
  22.                 <dict>
  23.                     <key>Description</key>
  24.                     <string>indicates wheter fullscreen is enabled or not</string>
  25.                     <key>Name</key>
  26.                     <string>fullscreen mode</string>
  27.                 </dict>
  28.             </dict>         
  29.         </dict>
  30.     </dict>
  31.     <key>Commands</key>
  32.     <dict>
  33.         <key>OpenURL</key>
  34.         <dict>
  35.             <key>Name</key>
  36.             <string>OpenURL</string>
  37.             <key>Description</key>
  38.             <string>Open a URL</string>
  39.         </dict>
  40.         <key>GetURL</key>
  41.         <dict>
  42.             <key>Name</key>
  43.             <string>GetURL</string>
  44.             <key>Description</key>
  45.             <string>Get a URL</string>
  46.         </dict>
  47.         <key>play</key>
  48.         <dict>
  49.             <key>Name</key>
  50.             <string>play</string>
  51.             <key>Description</key>
  52.             <string>Start playing the current playlistitem or pause it when it is already playing.</string>
  53.         </dict>
  54.         <key>stop</key>
  55.         <dict>
  56.             <key>Name</key>
  57.             <string>stop</string>
  58.             <key>Description</key>
  59.             <string>Stop playing the current playlistitem</string>
  60.         </dict>
  61.         <key>previous</key>
  62.         <dict>
  63.             <key>Name</key>
  64.             <string>previous</string>
  65.             <key>Description</key>
  66.             <string>Go to the previous item in the playlist or the previous chapter in the DVD/VCD.</string>
  67.         </dict>
  68.         <key>next</key>
  69.         <dict>
  70.             <key>Name</key>
  71.             <string>next</string>
  72.             <key>Description</key>
  73.             <string>Go to the next item in the playlist or the next chapter in the DVD/VCD.</string>
  74.         </dict>
  75.         <key>fullscreen</key>
  76.         <dict>
  77.             <key>Name</key>
  78.             <string>fullscreen</string>
  79.             <key>Description</key>
  80.             <string>Toggle between fullscreen and windowed mode.</string>
  81.         </dict>
  82.         <key>mute</key>
  83.         <dict>
  84.             <key>Name</key>
  85.             <string>mute</string>
  86.             <key>Description</key>
  87.             <string>Mute the audio</string>
  88.         </dict>
  89.         <key>volumeUp</key>
  90.         <dict>
  91.             <key>Name</key>
  92.             <string>volumeUp</string>
  93.             <key>Description</key>
  94.             <string>Bring the volume up by one step. There are 32 steps from 0 to 400% volume.</string>
  95.         </dict>
  96.         <key>volumeDown</key>
  97.         <dict>
  98.             <key>Name</key>
  99.             <string>volumeDown</string>
  100.             <key>Description</key>
  101.             <string>Bring the volume down by one step. There are 32 steps from 0 to 400% volume.</string>
  102.         </dict>
  103.     </dict>
  104. </dict>
  105. </plist>