How to move to a specific second in Windows Media Player?

6

Is their any simple way in Windows Media Player to move to a specific second in a song/video without playing around with the slide?

(Like "Go To Line..." in text editors?)


Edit: If not possible, is there any other player that has this kind of feature?

CD.

Posted 2010-03-29T07:42:26.290

Reputation: 185

I think "NO"... – Ye Lin Aung – 2010-03-29T07:45:53.057

Is their any other player that has this kind of feature? – CD. – 2010-03-29T15:01:46.177

@CD - in general, if you want to modify your question, or add details, do so by editing your question. This way, it will also be made more visible to more people. – Gnoupi – 2010-03-31T14:47:32.117

Answers

1

Yes, use VLC Media Player.

Best player for me, this works with rare type of files as real media files. and support so many, so many codes.

just go to Playback-> Go to Specific Time.

Multiplatform, multilanguage, accepts Plugins extensions and the best is that it is Free. :)

Mak

Posted 2010-03-29T07:42:26.290

Reputation: 184

Please Mark this question as answered. Just click on check image in the left of this post. – Mak – 2010-03-31T15:28:29.070

0

After trying to get to a particular point in a large file, I got close by clicking on the slider then I use AutoHotKey to get closer to where I want. Then use the following hotkeys:

#IfWinActive, Windows Media Player

^left::                     ;;slow down WMP
        Send, {Ctrl Down}{shift Down}s{shift Up}{Ctrl Up}
return

^right::                        ;;speed up WMP
        Send, {Ctrl Down}{shift Down}g{shift Up}{Ctrl Up}
return

^down::                     ;;rewind WMP
        Send, {Ctrl Down}{shift Down}n{shift Up}{Ctrl Up}
return

left::                      ;;rewind WMP
        Send, {Ctrl Down}{shift Down}b{shift Up}{Ctrl Up}
return

right::                     ;;fastforward WMP
        Send, {Ctrl Down}{shift Down}f{shift Up}{Ctrl Up}
return

down::                      ;;normal/play WMP
        Send, {Ctrl Down}{shift Down}n{shift Up}{Ctrl Up}
return

Aaron

Posted 2010-03-29T07:42:26.290

Reputation: 11