2012-10-13, 23:52
Hello,
I am having issues with setting up RTMP stream, and I think I am missing something.
The following rtmpdump command works just fine:
However when I try to translate it in XBMC addon, it is failing:
And this somehow is failing with the following debug messages:
(see pastebin dump for a more complete debug from a player at http://pastebin.com/xAWVZffM )
Please help me out here... I know I am missing something simple, and have been beating my head on it for the last day and can't figure it out ;-(
Thank you!
I am having issues with setting up RTMP stream, and I think I am missing something.
The following rtmpdump command works just fine:
Code:
rtmpdump -r rtmp://fms.354a.edgecastcdn.net/00354A/videos/encoded/79635/ -p http://www.viki.com/channels/9172-my-love-butterfly-lady/videos/79635 -y mp4:79635_720p_1210061450.mp4 -a 00354A/videos/encoded/79635 -f 'LNX 11,2,202,238' -s http://a0.vikiassets.com/assets/vikiplayer.swf -o ep1.flv
Code:
PlayPath='mp4:79635_720p_1210061450.mp4'
tcUrl='rtmp://fms.354a.edgecastcdn.net/00354A/videos/encoded/79635/'
PageURL='http://www.viki.com/channels/9172-my-love-butterfly-lady/videos/79995'
app='00354A/videos/encoded/79635'
flashVer='LNX 11,2,202,238'
liz=xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage)
liz.setInfo( type="Video", infoLabels={ "Title": name } )
liz.setProperty("swfUrl","http://a0.vikiassets.com/assets/vikiplayer.swf")
liz.setProperty("PlayPath", PlayPath)
liz.setProperty("tcUrl", tcUrl)
liz.setProperty("PageURL", web_uri)
liz.setProperty("app",web_uri)
liz.setProperty("flashVer",flashVer)
xbmc.Player(xbmc.PLAYER_CORE_DVDPLAYER).play(tcUrl, liz)
ok=xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=tcUrl,listitem=liz)
Code:
17:37:40 T:7676 INFO: Property: <Name: level, STRING: error>
17:37:40 T:7676 INFO: Property: <Name: code, STRING: NetStream.Play.Failed>
17:37:40 T:7676 INFO: Property: <Name: description, STRING: Invalid tincan object name (stream ID: 1).>
(see pastebin dump for a more complete debug from a player at http://pastebin.com/xAWVZffM )
Please help me out here... I know I am missing something simple, and have been beating my head on it for the last day and can't figure it out ;-(
Thank you!