Skip to content

Commit 3c75118

Browse files
committed
Code commit
1 parent 391ca5c commit 3c75118

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# AndroidMediaControlsWindows
2-
Python script that hacks in support for Android headset media control support for Windows
2+
Python script that hacks in support for Android headset media control support for Windows.

controller.py

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import sounddevice as sd
2+
from media_controls import toggle_play
3+
4+
SAMPLE_RATE = 1000 # Sample rate for our input stream
5+
BLOCK_SIZE = 100 # Number of samples before we trigger a processing callback
6+
PRESS_SECONDS = 0.2 # Number of seconds button should be held to register press
7+
PRESS_SAMPLE_THRESHOLD = 0.9 # Signal amplitude to register as a button press
8+
9+
BLOCKS_TO_PRESS = (SAMPLE_RATE/BLOCK_SIZE)*PRESS_SECONDS
10+
11+
12+
class HeadsetButtonController:
13+
def process_frames(self, indata, frames, time, status):
14+
mean = sum([y for x in indata[:] for y in x])/len(indata[:])
15+
16+
if mean < PRESS_SAMPLE_THRESHOLD:
17+
self.times_pressed += 1
18+
19+
if self.times_pressed > BLOCKS_TO_PRESS and not self.is_held:
20+
toggle_play()
21+
self.is_held = True
22+
else:
23+
self.is_held = False
24+
self.times_pressed = 0
25+
26+
def __init__(self):
27+
self.stream = sd.InputStream(
28+
samplerate=SAMPLE_RATE,
29+
blocksize=BLOCK_SIZE,
30+
channels=1,
31+
callback=self.process_frames
32+
)
33+
self.stream.start()
34+
35+
self.is_held = True
36+
self.times_pressed = 0

media_controls.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import win32api
2+
import win32con
3+
4+
VK_MEDIA_PLAY_PAUSE = 0xB3
5+
6+
def toggle_play():
7+
win32api.keybd_event(VK_MEDIA_PLAY_PAUSE, 0, 0, 0)

run.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from controller import HeadsetButtonController
2+
from time import sleep
3+
4+
controller = HeadsetButtonController()
5+
6+
while True:
7+
sleep(60)

0 commit comments

Comments
 (0)