Hi,
I try to develop a url service to stream rtmp videos.
I already activated real rtmp in my ServiceInfo.plist, but keep getting the following error:
2014-10-27 19:32:17,506 (43a39470) : DEBUG (context:198) - Checking for Real RTMP support... Enabled:True Platform:Plex Home Theater Product:Plex Home Theater Client:1.2.2.331-2d6426d7 Server:None
2014-10-27 19:32:17,513 (43a39470) : DEBUG (networking:172) - Requesting 'http://127.0.0.1:32400'
2014-10-27 19:32:17,538 (43a39470) : DEBUG (core:522) - Unable to read server attribute 'serverVersion'
2014-10-27 19:32:17,551 (43a39470) : DEBUG (objectkit:939) - Using WebKit RTMP
2014-10-27 19:32:17,570 (43a39470) : CRITICAL (sandbox:303) - Exception when calling function 'PlayVideo' (most recent call last):
File "/volume1/Plex/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/sandbox.py", line 294, in call_named_function
result = f(*args, **kwargs)
File "/volume1/Plex/Library/Application Support/Plex Media Server/Plug-ins/Vox Now.bundle/Contents/Services/URL/VoxNow/ServiceCode.pys", line 37, in PlayVideo
return IndirectResponse(VideoClipObject, key=RTMPVideoURL(url = 'rtmpe://fms-fra12.rtl.de/voxnow/', clip = 'mp4:' + playpath, swf_url = playerUrl, pageUrl = pageurl, app = angebot, swfvfy = True))
File "/volume1/Plex/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/objectkit.py", line 945, in _rtmp_video_url
unsupported(swf_url, 'swf_url')
File "/volume1/Plex/Library/Application Support/Plex Media Server/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/objectkit.py", line 943, in unsupported
raise Framework.exceptions.NonCriticalArgumentException("The '%s' argument is only supported when real RTMP playback is enabled." % name)
NonCriticalArgumentException: (2104, "The 'swf_url' argument is only supported when real RTMP playback is enabled.")
My ServiceInfo.plist
<?xml version="1.0" encoding="UTF-8"?> PlexFrameworkFlags UseRealRTMP<key>URL</key> <dict> <key>VoxNow</key> <dict> <key>URLPatterns</key> <array> <string>http://([^.]+.).voxnow.de/.+</string> </array> <key>TestURLs</key> <array> <string>http%3A%2F%2Fwww.voxnow.de%2F2-profis-fuer-4-raeder%2Fein-oldtimer-aus-frankreich.php%3Fcontainer_id%3D183253%26player%3D1%26season%3D1</string> </array> </dict> </dict> </dict>
Is someone able to help?
Thank you very much!