home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 July / CHIP_CD_2005-07.iso / bonus / srew / files / AviSynth_208.exe / examples / Audio.avs next >
Text File  |  2003-01-29  |  529b  |  18 lines

  1. # Generates colorbar image at the size 320x240, Adds a 440Hz tone that pulses in the right speaker
  2.  
  3. Colorbars(320,240)
  4.  
  5. # Selects the right channel
  6.  
  7. GetRightChannel()
  8.  
  9. # Amplifies the signal down 3DB, and puts the result into the variable 'signal'
  10.  
  11. signal = AmplifyDB(-3)
  12.  
  13. # Puts the new signal as right channel, leaving the sound from GetRightChannel as new left channel.
  14.  
  15. MonoToStereo(signal)
  16.  
  17. # Left channel now contains a pulsing signal (from ColorBars).
  18. # Right channel now contains the same signal at -3dB.