Kodi Community Forum

Full Version: Player can't handle http address
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm writing a plugin for a site and I had the plugin working but then they changed the stream address so now i have to modify it.

I have the stream's http address, http://www.katsomo.fi/sl/items.do?progId=57179 . This works with vlc but it doesn't work when xbmc tries to open it. I get this:
Code:
18:18:58 T:3021211520 M:2209779712  NOTICE: DVDPlayer: Opening: http://www.katsomo.fi/sl/items.do?progId=56967
18:18:58 T:3021211520 M:2209779712 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
18:18:58 T:2852424560 M:2209779712  NOTICE: Creating InputStream
18:18:59 T:2852424560 M:2209447936  NOTICE: Creating Demuxer
18:18:59 T:2852424560 M:2205478912   ERROR: Open - error probing input format, http://www.katsomo.fi/sl/items.do?progId=56967
18:18:59 T:2852424560 M:2205478912   ERROR: OpenDemuxStream - Error creating demuxer
18:18:59 T:2852424560 M:2205478912  NOTICE: CDVDPlayer::OnExit()
18:18:59 T:2852424560 M:2205478912  NOTICE: CDVDPlayer::OnExit() deleting input stream
18:18:59 T:3021211520 M:2205478912   ERROR: Playlist Player: skipping unplayable item: 0, path [http://www.katsomo.fi/sl/items.do?progId=56967]
18:18:59 T:3021211520 M:2205478912  NOTICE: CDVDPlayer::CloseFile()
18:18:59 T:3021211520 M:2205478912 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
18:18:59 T:3021211520 M:2205478912  NOTICE: DVDPlayer: waiting for threads to exit
18:18:59 T:3021211520 M:2205478912  NOTICE: DVDPlayer: finished waiting

Is there a way to get the proper mms address from the http in python? Or some other way to get around this?

Thank You Smile