Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: auto pause while certain process (mplayerc.exe) is running? (Read 3694 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

auto pause while certain process (mplayerc.exe) is running?

Hi

Is there any plugin or 3rd party program that can pause fb2k automatically when some certain processes start, eg mplayerc.exe/vlc.exe, and resume once the processes terminate?

So ppl don't need to press the pause hot key manually before and after playing a video clip.

And is it possible to extend the watch list to flashes inside browsers (youtube), and audio/video chat sessions inside IMs (MSN, skype)

Thanks.

auto pause while certain process (mplayerc.exe) is running?

Reply #1
i dont know if there is, but that sounds like overkill. pressing a hotkey is easy as pie.

auto pause while certain process (mplayerc.exe) is running?

Reply #2
less manual work is always better :)

atm I am using a batch file to play clips (requires foo_runcmd), but this does not work with browser flashes/IM

@echo off
setlocal
set fb2k="D:\bin\foobar2000\foobar2000.exe"
set mpc="D:\bin\mpc\mplayerc.exe"
%fb2k% /runcmd="Playback/Pause"
%mpc% %1 /d3dfs
%fb2k% /runcmd="Playback/Play"
endlocal