MERGING MediaPortal Url Source Splitter & IPTV Filter (4 Viewers)

azzuro

Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    it means that I write documentation badly
    don't think this !
    i'm newbie on transport stream.
    what i don't understand is channel .
    "rtsp://"{host[":"port]}["/"{path}]
    for my use : rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896&flavour=ld

    but i my case for the same channel i can have 3 quality
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896
    quality = &flavour=ld (low debit )
    quality = &flavour=hd (high debit )
    quality = &flavour=sd (standard )

    if quality are not supported, i hope in the next TVE ( @mm1352000 )

    the only good format supported (for now ) is :
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896&flavour=ld

    true ?
     

    georgius

    Retired Team Member
  • Premium Supporter
  • October 31, 2010
    1,376
    654
    Bratislava
    Home Country
    Slovakia Slovakia
    it means that I write documentation badly
    don't think this !
    i'm newbie on transport stream.
    what i don't understand is channel .
    Channel is identified by URL.

    "rtsp://"{host[":"port]}["/"{path}]
    for my use : rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    In this case is path without first forward slash, because forward slash is static string added before path (same as with "rtsp://" before host). So, it should be:
    host = mafreebox.freebox.fr
    path = fbxtv_pub/stream?namespace=1&service=896&flavour=ld

    but i my case for the same channel i can have 3 quality
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896
    quality = &flavour=ld (low debit )
    quality = &flavour=hd (high debit )
    quality = &flavour=sd (standard )

    if quality are not supported, i hope in the next TVE ( @mm1352000 )
    You can simply define HD, SD and LD channels with their URLs (same as you have in DVB-T, C or S for same channel with different quality).

    the only good format supported (for now ) is :
    host = mafreebox.freebox.fr
    path = "/"fbxtv_pub/stream?namespace=1&service=896&flavour=ld

    true ?
    Yes, but without first forward slash in path :)
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Yes i think doc is good, but if we can write an example of real url it could be nice :)
    Thanks :)
     

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,984
    5,663
    France - IDF
    Home Country
    France France
    For now, Radio and TV re the same format
    So, if your guide is exempt of error
    XML:
    EXTINF:0 999 - L'Aktu Freebox TV (bas débit)
    rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    should be inside m3u
    XML:
    EXTINF:0 999 - L'Aktu Freebox TV (bas débit)
    rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    scheme : rtsp
    Hostport : mafreebox.freebox.fr
    Path = fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    
    rtsp "://" mafreebox.freebox.fr "/" fbxtv_pub/stream?namespace=1&service=896&flavour=ld

    but how should be the m3u ? as under for each channel ?
    XML:
    EXTINF:0 999 - L'Aktu Freebox TV (bas débit)
    scheme = rtsp
    Hostport = mafreebox.freebox.fr
    Path = fbxtv_pub/stream?namespace=1&service=896&flavour=ld
    or the initial url is good.
    i'm sorry georgius ! it's only for to be sure, to understand.
     

    Users who are viewing this thread

    Top Bottom