Duroth
Duroth

Reputation: 6581

Controlling Windows Media Player through PHP / batch files

I'm currently writing a tiny webapp for my HTPC (actually, a PC serving as both a media player and web- / fileserver) that will allow me to remotely control the playing of audio, without having to turn on my TV just to switch songs.

I'm using Windows Media Player as my audio player of choice, and I thought I could control it through PHP's COM Class. Unfortunately, I've not been able to find any documentation or examples on controlling WMP through this interface.

Can anyone point me in the right direction here? A second (and much less preferable) solution would be to use PHP's exec() call to start batch files that, in turn, control WMP.

Upvotes: 2

Views: 2484

Answers (2)

Desolator
Desolator

Reputation: 22759

to run WMP from DOS or command line. check this out: Control Windows Media Player Behaviour with Command Line Parameters

there are some command line codes you can use to control WMP. you need to see WMP documentation for more info

Upvotes: 1

NebNeb
NebNeb

Reputation: 339

Not sure that wmp is the best program for that. Try vlc(You might have to look around a bit)

Upvotes: 0

Related Questions