Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #72497 > unrolled thread

Re: Automating windows media player on win7

Started byChris Angelico <rosuav@gmail.com>
First post2014-06-03 19:46 +1000
Last post2014-06-03 19:46 +1000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Automating windows media player on win7 Chris Angelico <rosuav@gmail.com> - 2014-06-03 19:46 +1000

#72497 — Re: Automating windows media player on win7

FromChris Angelico <rosuav@gmail.com>
Date2014-06-03 19:46 +1000
SubjectRe: Automating windows media player on win7
Message-ID<mailman.10610.1401788789.18130.python-list@python.org>
On Tue, Jun 3, 2014 at 7:42 PM, Deogratius Musiige
<DMusiige@sennheisercommunications.com> wrote:
> Hi Chris,
>
> I want to have wmplayer as part of my automitized test for a headset via the
> USB HID.
>
> I want to be able to execute some of the following operations in my python
> script:
>
> 1.       Play
>
> 2.       Get playing track
>
> 3.       Next
>
> 4.       Get active device
>
> 5.       …
>
> I am not sure if you are able to do this with your project

Play, definitely. Next, not specifically, but by sending the letter
'n' you can achieve that. Active device? Not sure what you mean there.

The one part that doesn't exist is "Get playing track". But you could
manage this the other way around, by not invoking a playlist at all.
If you run "vlc --play-and-exit some_file.wav", then when that process
terminates, the track has finished. Kill the process or send Ctrl-Q to
skip to the next track. Keep track (pun intended) of what file you've
most recently invoked.

I'm not sure how this ties in with your headset testing, though.

By the look of things, the Yosemite project isn't a "here it is, just
deploy it" solution, but you may find that there's some useful code
you can borrow.

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web