Christopher Rosell
Christopher Rosell
Yes, the livestream plugin only supports HLS streams for now. It is currently not possible to fetch the flash streams since the API to get the necessary parameters is using...
Please run with `-v --loglevel debug` and paste the output.
Make sure you have the latest version of omxplayer. It has been reported in the past to have bugs preventing normal playback but they might be fixed.
The Livestream.com streams are known to be badly encoded so it's possible omxplayer can't handle them. I suggest you try another player.
I'd recommend [mpv](http://mpv.io) if it's available for Raspberry Pi, otherwise [VLC](http://videolan.org).
> Anybody have some advice, help, trick, fix or just about anything that might get it installed? Does the workaround described [here](https://github.com/chrippa/python-librtmp/issues/10#issuecomment-49858936) work?
Those paths doesn't look correct... According to the homebrew docs it should be installing things in `/usr/local`, so perhaps this will work: ``` sudo python setup.py build_ext -I /usr/local/include -L...
You need to install the `librtmp-dev` package via apt on Ubuntu. I think you can use homebrew to install librtmp/rtmpdump on OS X.
No, this library is simply Python bindings to the C library librtmp which only supports AMF0 currently. Edit: Actually, there is support to decode AMF3, but not encode.
You either don't have librtmp installed or it's in a location that is not looked at by default. If you grab the source tree instead of using pip you can...