Kodi Community Forum
[HELP] rtmp script for 40+ TV-Channels - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: VideoPlayer InputStream (https://forum.kodi.tv/forumdisplay.php?fid=312)
+---- Thread: [HELP] rtmp script for 40+ TV-Channels (/showthread.php?tid=110055)



[HELP] rtmp script for 40+ TV-Channels - karaya1 - 2011-09-13

G'day everyone,
I'm very new to XBMC so please excuse my lack of nowledge.

I'm trying to implement 40+ tv channels with rtmp links into xbmc. All channels are working fine with vlc under win xp as of today. I now want to make them work under Mac Os 10.5+ with xbmc. I tried to modify a few scripts (such as plugin.video.live.streams and plugin.video.iplayer), but so far without any luck Sad

I am Stuck!

Cheers for your support.

https://rapidshare.com/files/3699684110/channels.zip


- Angelscry - 2011-09-13

This is how I use the same TV-channel under XBMC linux using Advanced Launcher add-on. You need to have vlc and rtmpdump installed on you system.

Image

I'm pretty sure that it works on same way under Mac OSX. You need to edit the launcher.xml file of advanced launcher like this way

Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<launchers>
    <launcher>
        <id>76bdedd54b90032be54ebdfc0aaab625</id>
        <name>Arte</name>
        <application>/usr/bin/rtmpdump</application>
        <args>-v -r "[b]rtmp://cp108478.live.edgefcs.net/live/[/b]" -y "[b]arte_fr_1_800@45512[/b]" --swfsize 927444 --swfhash "6c1be1765187eae0bc9af07d858fae59a0effd3c5b803d08db261ced2c5512bb" | cvlc --fullscreen --play-and-exit --aspect-ratio=16:9 -</args>
        <rompath></rompath>
        <thumbpath>/home/angelscry/.xbmc/userdata/addon_data/plugin.program.advanced.launcher2/thumbs/</thumbpath>
        <fanartpath></fanartpath>
        <extrafanartpath></extrafanartpath>
        <romext></romext>
        <platform>Linux</platform>
        <thumb>/home/angelscry/.xbmc/userdata/addon_data/plugin.program.advanced.launcher2/thumbs/arte.png</thumb>
        <fanart></fanart>
        <genre>Généraliste</genre>
        <release>Fr.</release>
        <publisher>France, Allemagne</publisher>
        <launcherplot>Arte (prononcé arté) est une chaîne de télévision généraliste franco-allemande de service public à vocation culturelle européenne. La chaine Arte est un groupement européen d’intérêt économique (GEIE), basé à Strasbourg. Elle est librement accessible principalement via la TNT, le câble, le satellite et l'ADSL TV.</launcherplot>
        <minimize>true</minimize>
        <lnk></lnk>
        <roms>
        </roms>
    </launcher>
</launchers>
Here is the complete launchers.xml file corresponding to the screenshot : http://pastebin.com/v8kJUZKc


- karaya1 - 2011-09-14

Cheers for the quick response, I will have at it to finnish it off. Once I am done I will post the custom add on data.

Thanks a lot Anglescry Wink