How do I check is music is currently playing in the XMB player?
I understand that there might not be a 100% reliable way to do the above because its probably completely software controlled, but anyways..
How to check is XMB Music player is playing?
well i don't know the details, but the solution might be always the same: hook the player module's functions that start/stop music with fake ones like
...just the idea for it...if you ask me how to do it,....well i'm still having headaches with my projects using this technique.
To start you could take a look into pikey sources; then, remember to always hook kernel functions with kernel functions and so on...
Code: Select all
newFunctionA()
{
signalFunctionACalled();
functionA(); // call old function
}
To start you could take a look into pikey sources; then, remember to always hook kernel functions with kernel functions and so on...