Hello forum. It’s my first post here. It can be a newbie question, but well… I’m a newbie! ![]()
I’m developing a simple python audio player with speed/pitch change capabilities. I’m using gstreamer python bindings and soundtouch plugins to do the trick, and everything works like a charm when I locally exectute my code. For the deployment I freeze my app with Pyinstaller to make a release package. Since frozen applications tend to be big, I’ve followed the approach suggested on the Pyinstaller documentation of keeping the list of gst plugins bundled as short as possible.
Now the problem. My app pipeline is built around “playbin3”. With my list I can load all the audio format my app handles except for m4a! I really can’t figure what’s needed to decode this format. So far I’ve tried “qtdemux”, “aacparse”, “multiqueue”, “avdec_aac”, “mfaacdec”, “fdkaacdec” but I always get a missing plugin error.
If I use run gst-launch-1.0 playbin3 uri="file:///<filename.m4a>" . Is there a way to find out what the pipeline created by gst-launch looks like and have a list of the used plugins?
Thank you in advance.