show current played song / Playlist in Textfile or via Telnet
Bug #798090 reported by
Moonwolf
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Mixxx |
Fix Released
|
Low
|
Phillip Whelan |
Bug Description
I would like to have a function like BPM has: To show show current played song / Playlist in a Textfile or via telnet / http commands. So it would be possible to grab that information for other Applications.
In BPM you can poll that information by entering http:127.
But a simple autoupdating textfile would be also okay so another application can read the informations.
Changed in mixxx: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
I've pretty much nailed down this bug. It happens when a Hotcue is activated (the track was previously paused) and then you hit the play button. Judging from the code this might have been done more as a *feature* than it being an actual bug. For reference, this is the actual offending code, from src/engine/ cuecontrol. cpp[649] :
void CueControl: :cuePlay( double v) {
QMutexLocker lock(&m_mutex);
if (m_bPreviewing && !v) {
m_pPlayButton- >set(1. 0);
m_bPreviewing = false;
// we're previewing? Then stop previewing and go into normal play mode.
}
if (m_bPreviewingH otcue && !v) {
m_pPlayButton- >set(1. 0);
m_bHotcueCance l = true;
}
lock.unlock();
}
Where it checks for m_bPreviewingHotcue is where it gets hung up.