home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / pmsndx10.zip / HINTS.TXT < prev    next >
Text File  |  1994-08-20  |  6KB  |  125 lines

  1. Common questions and answers about PMsndX.
  2.  
  3. Q.  How do I enter the registration information?
  4. A.  To enter the registration information, pull down the
  5.     menu from the control panel and select either the
  6.     Welcome or About menu item.  The display will contain a
  7.     button to bring up the registration display.  The
  8.     information may be entered from the keyboard or from a
  9.     file.
  10.  
  11. Q.  Where is the registration information stored?
  12. A.  PMsndX stores all of the registration information in the
  13.     os2.ini file.  This amounts to about 100 bytes of data.
  14.  
  15. Q.  PMsndX does not provide a volume control.  How do I adjust
  16.     the volume of the sample playback?
  17. A.  The MMPM portion of PMsndX has been implemented so that it
  18.     will share the audio device with other programs.  OS/2 comes
  19.     with a Volume Control application which can be used at the
  20.     same time that PMsndX is active.  This is the preferred
  21.     method of regulating the volume of the playback.  PMsndX
  22.     has been written to avoid duplicating functions that come
  23.     with OS/2 unless they aid in the total function of the
  24.     editing procedure.
  25.    
  26. Q.  Why is the executable 450k?
  27. A.  Duh.  The source for this program is about 26000 lines
  28.     of C++.  There is about 100k of icons and graphics that
  29.     takes up a lot of room because the icons contain
  30.     versions for each of the different displays (e.g.
  31.     Independent Color Form (=VGA), Independent Form - (1.2
  32.     format), and 8514 - 16 colors).
  33.  
  34. Q.  Why is there a delay between when the SHIFT key is
  35.     lifted and when the Merge button changes back to Paste?
  36. A.  The merge button display changes back to Paste after
  37.     a delay of about 1 second because the PASTE button is
  38.     updated from the clipboard every second.  If the mouse
  39.     is moved, it causes the display to update and check the
  40.     clipboard and so the display will be updated quicker.
  41.  
  42. Q.  What happens when I try to play a 16 bit sample on an 8
  43.     bit sound card?
  44. A.  PMsndX is capable of editing and manipulating sounds
  45.     of any number of bits, rate, and channels.  However,
  46.     audio adapters are limited in their capabilities.
  47.     Therefore, PMsndX will still load and manipulate samples
  48.     that cannot be played on the audio adapter but the MMPM
  49.     dialog will disable all of its buttons.
  50.  
  51. Q.  Why does the PMsndX icon remain hashed after the program
  52.     has exited?
  53. A.  Under OS/2 2.11 some programs remain hashed even though
  54.     they have exited.  Future releases of OS/2 may correct
  55.     this problem.
  56.  
  57. Q.  Where do the icons go when PMsndX windows are minimized?
  58. A.  Check the "Minimized View" for the icons.  When PMsndX
  59.     is started from a command line, OS/2 2.11 places the
  60.     minimized icons in the "minimized view" even if the
  61.     system settings are set to place them on the desktop.
  62.  
  63. Q.  When selecting a file type in the OPEN or SAVE dialog
  64.     box, why do I have to reselect the "EA type" to get it
  65.     to recognize the change?
  66. A.  PMsndX uses the FILEDLG functions that are standard with
  67.     OS/2.  Although the documentation indicates that the EA
  68.     Type entry field can operate for a file mask or an EA
  69.     selector, I could not get it to perform in this way.  To
  70.     circumvent the problem I augmented the display with a
  71.     separate box for the mask but it does not fully interact
  72.     with the FILEDLG functions.  As a result, a standard
  73.     field must be selected for it to pick up the new mask.
  74.     (A future release will have this fixed.)
  75.   
  76. Q.  Can compressed VOC files be loaded?
  77. A.  Unfortunately, I cannot find documentation on the
  78.     compressed VOC formats and they are not implemented in
  79.     PMsndX.  A future release may have this corrected.
  80.  
  81. Q.  I have a file created by sox10.  Why can't PMsndX load the
  82.     file?
  83. A.  SOX for DOS and OS/2 were ported from the Unix environment.
  84.     Under DOS and OS/2, as a file is read or written, the data
  85.     is filtered so that single linefeeds are replaced by carriage
  86.     return-line feed sequences.  Under Unix, this does not occur.
  87.     As a result, a SOX file cannot be loaded because it has extra
  88.     characters in the header and body of the data.  SOX needs to
  89.     be recompiled with the file IO system set for binary so that
  90.     it does not try to filter the data.
  91.  
  92. Q.  Why is the RECORD button never enabled on MMPM?
  93. A.  The RECORD function of PMsndX has not been implemented at
  94.     this time.  A future release may have this feature but
  95.     PMsndX is currently designed to be an editor and not a
  96.     recorder.
  97.  
  98. Q.  What does the REWIND button do on the MMPM dialog?
  99. A.  The REWIND button has been added for completeness.  When
  100.     playback ends or when the stop button is pressed, PMsndX
  101.     automatically rewinds.
  102.  
  103. Q.  I want to load a large sample.  How do I minimize the
  104.     memory requirements?
  105. A.  When a file is loaded it is stored as 16 bit samples
  106.     regardless of the actual sample size.  This takes up
  107.     roughly twice the memory as would be required for 8 bit
  108.     samples.  When the MMPM dialog is open a second copy of
  109.     the data is required for the audio adapter.  This copy
  110.     is exactly the size of the data that would be written to
  111.     disk.  If it is an 8 bit sample file, then the samples
  112.     in the buffer are 8 bits.  If it is a 16 bit file, then
  113.     the buffer contains 16 bit samples.  During an editing
  114.     operation (i.e. cut, paste, or anything in the toolbox)
  115.     the data is double buffered to allow the operation to be
  116.     aborted.  Finally, when the UNDO capability is enabled
  117.     from the settings dialog, a copy of the last sample will
  118.     be maintained for the UNDO.
  119.  
  120.     With all that said, to minimize the memory requirements,
  121.     close the MMPM dialog and disable the UNDO feature.
  122.     With these settings, PMsndX will require four times the
  123.     sample file size at most when 8 bit samples are loaded.
  124.     16 bit samples will double at most during an operation.
  125.