python: Too many open files

Patrick Shirkey patrickshirkey at protonmail.com
Sat Jan 23 09:10:12 UTC 2021


Thanks Mattieu.

That was the hint I needed. Seems that the lplayer method with Gst instead of GstPlayer is leaking the stream file descriptor. In case anyone has the inclination to look into it further, I noticed it increments by three at play() and decrements by two at stop().

https://github.com/atareao/lplayer/blob/master/src/lplayer/player.py

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Friday, January 22, 2021 10:10 PM, Mathieu Duponchelle <mathieu at centricular.com> wrote:

> GstPlayer can be used from python, and probably fits your use case :)
>
> meh   master  ~  devel  gst-build  ipython3
>
> Python 3.8.6 (default, Sep 25 2020, 00:00:00)
>
> Type 'copyright', 'credits' or 'license' for more information
>
> IPython 7.12.0 -- An enhanced Interactive Python. Type '?' for help.
>
> In [1]: from gi.repository import Gst
>
> <ipython-input-1-4132414128eb>:1: PyGIWarning: Gst was imported without specifying a version first. Use gi.require_version('Gst', '1.0') before import to ensure that the right version gets loaded.
>
> from gi.repository import Gst
>
> In [2]: Gst.init(None)
>
> Out[2]: []
>
> In [3]: from gi.repository import GstPlayer
>
> <ipython-input-3-b10918504373>:1: PyGIWarning: GstPlayer was imported without specifying a version first. Use gi.require_version('GstPlayer', '1.0') before import to ensure that the right version gets loaded.
>
> from gi.repository import GstPlayer
>
> In [4]: p = GstPlayer.Player()
>
> In [5]: p.set_uri('
> file:///home/meh/Music/chaplin.wav
> ')
>
> In [6]: p.play()
>
> In [7]: p.set_uri('
> file:///home/meh/Music/biggie.wav
> ')
>
> In [8]: p.play()
>
> On 1/22/21 7:27 PM, Patrick Shirkey wrote:
>
>> Yes, I am using python for this project and this script meets all of my requirements except for the file descriptor leak.
>>
>> Is there a specific step required before/after loading a new audio file with:
>> self.player.get_by_name('urisrc').set_property('uri', 'file://' + filename)
>>
>> -------- Original Message --------
>> On Jan 22, 2021, 7:04 PM, Mathieu Duponchelle < mathieu at centricular.com> wrote:
>>
>>> Hey, are you aware of the existence of gst-player?
>>>
>>> https://gstreamer.freedesktop.org/documentation/player/gstplayer.html?gi-language=c
>>>
>>> Cheers,
>>>
>>> --
>>> Mathieu Duponchelle · https://www.centricular.com
>>>
>>> On 1/22/21 5:01 PM, Patrick Shirkey wrote:
>>>
>>>> Hi,
>>>>
>>>> I am using this simple python script to play audio files:
>>>>
>>>> https://github.com/atareao/lplayer/blob/master/src/lplayer/player.py
>>>>
>>>> specifically
>>>>
>>>> 85: get_player()
>>>> 135: play()
>>>> 172: stop()
>>>>
>>>> Any ideas on why I get 2 additional STREAM file descriptors every time I play a new track eventually resulting in "Too many open files" error and segfault?
>>>>
>>>> ex. 44u unix 0x000000008179a133 0t0 100262669 type=STREAM
>>>>
>>>> --
>>>> Patrick Shirkey
>>>>
>>>> _______________________________________________
>>>> gstreamer-devel mailing list
>>>> gstreamer-devel at lists.freedesktop.org
>>>>
>>>> https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
>>
>> _______________________________________________
>> gstreamer-devel mailing list
>> gstreamer-devel at lists.freedesktop.org
>>
>> https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/gstreamer-devel/attachments/20210123/37fb920f/attachment-0001.htm>


More information about the gstreamer-devel mailing list