[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Windows Media Player - Controlling Playback Speed

Alex DeCaria

3/17/2009 12:29:00 AM

I'm using WIN32OLE to control Windows Media Player. I want to be able
to change the playback rate. My code is:

require 'win32ole'
song = "some_song.wma"
player = WIN32OLE.new('WMPlayer.OCX')
player.OpenPlayer(song)
player.settings.Rate = 0.5

The "Player.settings.Rate = 0.5" seems to have no effect on the playback
speed.

If I do

print player.settings.isAvailable('Rate'), "\n"

it returns "true", so this method should be available.

Can anyone help?

-- Alex
--
Posted via http://www.ruby-....