Python binding: Player created from binding doesn't work as a streaming server
Posted: 08 Sep 2019 20:41
Hi,
If I'm creating player this way:
and then trying to play some file I cannot connect to the player as a streaming server. But the following command works fine from the command line:
I can connect to vlc as a streaming server.
I believe it was working fine some time ago (1-2 years ago?).
Created github issue: https://github.com/oaubert/python-vlc/issues/105
Thanks in advance!
If I'm creating player this way:
Code: Select all
from vlc import Instance
instance = Instance("--sout=#transcode{acodec=flac}:std{access=http,mux=flac,dst=10.0.0.6:8080}")
player = self.instance.media_player_new()
Code: Select all
vlc -I dummy --dummy-quiet --sout=#transcode{acodec=flac}:std{access=http,mux=flac,dst=10.0.0.6:8080} wav-file.wav
I believe it was working fine some time ago (1-2 years ago?).
Created github issue: https://github.com/oaubert/python-vlc/issues/105
Thanks in advance!