I compile my Qt Resource Collection (QRC) and import it in my Python project, now I would like to be able to access a file in my QRC using subprocess. How can I do this?
I tried this below, but it does not access the compiled QRC...
import application_rc
test = QUrl("qrc:///resources/sounds/LRMonoPhase4.wav").path()
process = subprocess.Popen(["aplay", test],
shell=False, stderr=subprocess.PIPE)
QResource is only a resource that is known by Qt, so other technologies do not know how to handle the .qrc scheme, so in this case you must create a temporary file where you save the audio and aplay can use it:
Note: If it is to be used within an application that uses the Qt eventloop then it is better to use QProcess than subprocess.Popen.