List Camera's

Revised: 2008-01-25 richard

To get a list of available camera's you can use the following podcast command & options...

% podcast --server my.server.edu --user John Dow --pass MyPassword --listworkflows

Which would return an XML file like the following...

!<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version='1.0'>
    <dict>
      <key>cameras</key>
      <array>
        <dict>
          <key>name</key>
          <string>Camera 1 - Room A</string>
          <key>uuid</key>
          <string>FF239B51-8212-411A-AD95-CA9689DA0D9D</string>
          <key>preview_url</key>
          <string>https://my.server.edu:8170/agent_previews/FF239B51-8212-411A-AD95-CA9689DA0D9D.jpg</string>
        </dict>
        <dict>
          <key>name</key>
          <string>Camera 2 - Room B</string>
          <key>uuid</key>
          <string>949D2CCE-47FC-45F0-88E7-90DB6880DB30</string>
          <key>preview_url</key>
          <string>https://my.server.edu:8170/agent_previews/949D2CCE-47FC-45F0-88E7-90DB6880DB30.jpg</string>
        </dict>
      </array>
    </dict>
  </plist>