The idea of speeding-up some 'talk' audio media appealed to me, so I created an
AutoHotKey script to toggle between a normal and +50% tempo...
;Toggle Tempo normal/+50%
^#v::
Run mc17.exe "/mode Standard"
Sleep 400
Run mc17.exe "/mcc 10016"
WinWait DSP Studio
WinSet, AlwaysOnTop, on, DSP Studio
Send {Tab}{Home}{Down 2}{Tab 5}
clipboard =
Send ^c
ClipWait
If clipboard contains 0.00
clipboard = +0.50x
else
clipboard = +0.00x
Send ^v{Tab}
Sleep 1200
WinClose DSP Studio
Sleep 400
Run mc17.exe "/mode Theater"
return
I thought it would be very straightforward, but I found it wasn't possible to send keystrokes to the DSP (or any) window from Theatre View, even if it was set 'AlwaysOnTop'. So this switches to Standard View to change the setting, then back to Theatre View. Rather clunky, but it works. If you close your eyes while doing it, the transition is fine.
Note I've used {Down 2} because my Tempo DSP is third in my list of DSP's. Adjust accordingly. And the tempo increase, of course, can be whatever you like. A more elaborate script could vary the adjustment.