Click here to Skip to main content
15,892,697 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All

How to play any wmv video file too slowly using C#? Please any one explain me. thanks a lot
regard
ak.naser
Posted
Comments
Herman<T>.Instance 10-Apr-12 5:12am    
what do you mean with 'too slowly'? Do you wanna pitch ?

Hi,

You can use a COM Windows Media Player control in a Windows Form application :

C#
axWindowsMediaPlayer1.URL = @"D:\Data\krishna.wmv";
axWindowsMediaPlayer1.settings.rate=2.3;
axWindowsMediaPlayer1.Ctlcontrols.play();


Here "rate" is used to set speed of the video. Default value is 1 which is normal.
To slow down its speed set "rate" to less than 1 but greater than 0 like 0.2, 0.4 etc.

To speed up set "rate" to greater than 1
 
Share this answer
 
 
Share this answer
 
WMP SDK will allow to to play wmv file. and as for the speed. there is a property for adjusting the playback rate(Rate i guess) it can be used to adjust the play speed.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900