Jump to content

Olli Ilaja

  • Posts

    4
  • Joined

  • Last visited

  • Country

    country-ZZ

Retained

  • Member Title
    Newbie
  1. I thought that it would be the problem with spaces also. It was the same problem with Amarra Junior but everything went up fine with Ayrewave and Audirvana. Must be the spaces. I will try this at the evening. Hope this would help.
  2. I am trying to renice Pure Music, Itunes and Coreaudio and got the message that Reniced Pure Music with PID, but there is no numbers. Other messages are reniced iTunes with pid 91 and reniced Core Audio with pid 268 but there is no numbers with Pure Music. What is wrong in this script below? --Run Pure Music tell application "System Events" if (get name of every process) does not contain "iTunes" then tell application "iTunes" launch delay 3 end tell end if if (get name of every process) does not contain "Pure Music" then tell application "Pure Music" launch delay 5 end tell end if end tell --Get process IDs set theConfirmation to "" set PureMusicPID to do shell script "ps -A | /usr/bin/grep Applications | /usr/bin/grep Pure Music.app | awk '{print $1}' | head -1" set CoreAudPID to do shell script "ps -A | /usr/bin/grep coreaudiod | awk '{print $1}' | head -1" set ItunesPID to do shell script "ps -A | /usr/bin/grep /Applications/iTunes.app/Contents/MacOS/iTunes | awk '{print $1}' | head -1" try do shell script "renice -17 -p " & PureMusicPID user name "XXXX" password "XXXX" with administrator privileges if (result = "") then display dialog ("Reniced Pure Music with PID " & PureMusicPID) buttons {"OK"} giving up after 5 end if on error errText display dialog ("Pure Music error: " & errText) buttons {"OK"} giving up after 5 end try try do shell script "renice -16 -p " & ItunesPID user name "XXXX" password "XXXX" with administrator privileges if (result = "") then display dialog ("Reniced iTunes with PID " & ItunesPID) buttons {"OK"} giving up after 5 end if on error errText display dialog ("iTunes error: " & errText) buttons {"OK"} giving up after 5 end try try do shell script "renice -15 -p " & CoreAudPID user name "XXXX" password "XXXX" with administrator privileges if (result = "") then display dialog ("Reniced Core Audio with PID " & CoreAudPID) buttons {"OK"} giving up after 5 end if on error errText display dialog ("Core Audio error: " & errText) buttons {"OK"} giving up after 5 end try
  3. Have anyone tried Teddy Evo with hiFace Evo? I have one on the way. http://www.teddypardo.com/
  4. How would I know if integer playback does not work with my Hiface? If I check the box in prefs there still comes sound. Just curious...I thought that there would be some error in playback if that doesn't work right.
×
×
  • Create New...