home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / multimedia / squeakcd / squeak101.exe / Command Line Options.txt next >
Encoding:
Text File  |  2002-08-14  |  1.6 KB  |  43 lines

  1. SQCMD will accept the following command line options:
  2.  
  3.     /play        -- start playing the entire cd or when used in
  4.                combination with /track, plays the requested
  5.                track
  6.     /next        -- move to the next song
  7.     /prev        -- move to the prev song
  8.     /stop        -- stop playing the cd
  9.     /track:#     -- used in combination with other flags
  10.     /num_tracks    -- returns the number of tracks
  11.     /start_track    -- returns the start track
  12.     /length        -- used in combination with /track. 
  13.                returns the lenght of the track
  14.     /repeat        -- used in combination with /track and /play
  15.                repeats the track selected
  16.  
  17. Run Squeak.exe to be confronted with a GUI.  Squeak.ex will also take
  18. most of the command line arguments and pass them onto SQCMD. (It will
  19. not accept /num_tracks /start_track or /length.
  20.  
  21. Both Squeak.exe and SQCMD.exe can be run independantly of each other.
  22. Kepp in mind though that without SQCMD.EXE the command line interfae
  23. will be unavailable.
  24.  
  25. Example usage
  26.     Play an entire CD:     "Squeak /play" or "SQCMD /play"
  27.     Play a single track:    "Squeak /play /track:23" or "SQCMD /play /track:23"
  28.     Repeat a single track:    "SQCMD /play /track:2 /repeat"
  29.     Get track length:    "SQCMD /length /track:4"
  30.  
  31. It should be noted that the repeat feature requires that a a proccess
  32. be left in memory. (Unfortunate, but necessary)  If in repeat mode,
  33. SQCMD must first be issued a /stop command in order to perform any
  34. other actions.
  35.  
  36. Also, as a side note, Squeak.exe will not be included in the next 
  37. release.  I've decided to discontinue the GUI and stick primarily
  38. to the command line interface.
  39.  
  40.  
  41. For comments or problems, email:
  42. cpayson@softhome.net
  43.