I have an MP3 file of length, say, five seconds. I want to play a specified subsection, say from second 1.4 to second 3.2. I'm working in Python 3, not Python 2, and on Windows, not Linux.
I realize that there isn't a module for Python 3 that solves my problem, but I thought perhaps I could get an MP3 player like mpg123 running as a backend and let my Python program control it. The remote commands for mpg123 are too limited though. Any other ideas? Is there even a windows program that I could use at the command line, like this:
program -start 1.4 -end 2.3 file.mp3 and call from a subprocess?