On Jan 21, 2008, at 7:09 PM, Fred moyer wrote:

I realize this might be asking a lot, but does anyone know how to tweak the sound from a player object? For example, I wish I could do the following:
   - adjust treble or bass (EQ)
   - compression (not allowing the music to go over a certain volume)
   - change speed of the music without changing pitch

Not sure if this will help you but on web page:
http://www.macosxhints.com/article.php? story=20060103000452805&query=applescript%2Bquicktime


You will find:

tell application "QuickTime Player"
  open my_track
  set my_movie to first movie
  set ts to time scale of my_movie
  set current time of my_movie to my_seconds * ts
  set rate of my_movie to 1.5 -- starts playing
end tell

tells QuickTime Player to start playing at 1.5 times the speed. Note that the pitch is unaffected -- only the playback rate changes.



sims
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ClipaSearch Pro
http://www.ClipaTools.com

Across Platforms - Code and Culture
http://www.ezpzapps.com/blog/




_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to