DGrothe-PhD / PyTellMe

Verbesserung der Nutzbarkeit alltäglicher Infoquellen wie Videotext für Sehbehinderte
0 stars 0 forks source link

Play mp3 from folder on demand #34

Open DGrothe-PhD opened 2 weeks ago

DGrothe-PhD commented 2 weeks ago

A user wants to play mp3 files with notes, pre-recorded address cards, exercise guidance, whatever.

Recipe:

DGrothe-PhD commented 1 week ago
import time
from just_playback import Playback
#--
playback = Playback()
playback.load_file("assets/test.mp3")
playback.seek(15)
playback.play()
time.sleep(11)
playback.stop()

Nice.

DGrothe-PhD commented 1 week ago

More at https://github.com/cheofusi/just_playback