Jump to content


Photo

DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already?


  • Please log in to reply
311 replies to this topic

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #301 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 23 November 2013 - 00:00

In order to access a value of stype now we write getData(0), for sid getData(1) and so on.

Instead if we create accesors it would be better, more user friendy.

REFTYPE:FLAGS:STYPE:SID:TSID:ONID:NS:PARENT_SID:PARENT_TSID:UNUSED
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #302 theparasol

  • Senior Member
  • 4,157 posts

+198
Excellent

Posted 23 November 2013 - 00:03

if ( m_ref.getData(7) & (PROGRESSIVE_DOWNLOAD_BUFFERING_ENABLED | BUFFERING_ENABLED))
{
   /* progressive download buffering */
   if (::access("/hdd/movie", X_OK) >= 0)
   {
      /* It looks like /hdd points to a valid mount, so we can store a download buffer on it */
      m_download_buffer_path = "/hdd/gstreamer_XXXXXXXXXX";
   }
   m_use_prefillbuffer = true;
}

Edited by theparasol, 23 November 2013 - 00:03.

@Camping: ZGemma H.2S, Technisat Multytenne 4-in-1 @Home: Edision Mini 4K, Wave Frontier T55, EMP Centauri EMP DiSEqC 8/1 switch, 4x Inverto Ultra Black single LNB


Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #303 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 23 November 2013 - 00:06

So if i set buffering only (1) and /hdd is valid what will happen?
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #304 pieterg

  • PLi® Core member
  • 32,766 posts

+245
Excellent

Posted 23 November 2013 - 00:27

I was thinking more like
if (m_ref.getData(7) & BUFFERING_ENABLED)
{
   m_use_prefillbuffer = true;
   if (m_ref.getData(7) & PROGRESSIVE_DOWNLOAD_BUFFERING_ENABLED)
   {
      /* progressive download buffering */
      if (::access("/hdd/movie", X_OK) >= 0)
      {
         /* It looks like /hdd points to a valid mount, so we can store a download buffer on it */
         m_download_buffer_path = "/hdd/gstreamer_XXXXXXXXXX";
      }
   }
}

Edited by pieterg, 23 November 2013 - 00:27.


Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #305 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 23 November 2013 - 00:33

In order to get progressive download you need to set flag to 3. All clear.
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #306 theparasol

  • Senior Member
  • 4,157 posts

+198
Excellent

Posted 23 November 2013 - 00:53

Better set the flags you need by using something like this:

 

NEEDEDFLAGS |= (PROGRESSIVE_DOWNLOAD_BUFFERING_ENABLED | BUFFERING_ENABLED)

 

Or remove a flag like this:

 

NEEDEDFLAGS &= ~(PROGRESSIVE_DOWNLOAD_BUFFERING_ENABLED | BUFFERING_ENABLED)


@Camping: ZGemma H.2S, Technisat Multytenne 4-in-1 @Home: Edision Mini 4K, Wave Frontier T55, EMP Centauri EMP DiSEqC 8/1 switch, 4x Inverto Ultra Black single LNB


Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #307 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 23 November 2013 - 08:09

I hope we done here :)

I renamed PROGRESSIVE_DOWNLOAD_BUFFERING_ENABLED to PROGRESSIVE_DOWNLOAD, because setting value to 2 we are not enabling also buffering. Also there are descriptive comments about flag usage.

Thanks for all the good discussion and lessons learn here.
--- a/lib/service/servicemp3.cpp
+++ b/lib/service/servicemp3.cpp
@@ -21,6 +21,22 @@
 
 #define HTTP_TIMEOUT 30
 
+/*
+ * UNUSED variable from service reference is now used as buffer flag for gstreamer
+ * REFTYPE:FLAGS:STYPE:SID:TSID:ONID:NS:PARENT_SID:PARENT_TSID:UNUSED
+ *   D  D X X X X X X X X
+ * 4097:0:1:0:0:0:0:0:0:0:URL:NAME (no buffering)
+ * 4097:0:1:0:0:0:0:0:0:1:URL:NAME (buffering enabled)
+ * 4097:0:1:0:0:0:0:0:0:3:URL:NAME (progressive download and buffering enabled)
+ *
+ * Progressive download requires buffering enabled, so it's mandatory to use flag 3 not 2
+ */
+typedef enum
+{
+	BUFFERING_ENABLED	= 0x00000001,
+	PROGRESSIVE_DOWNLOAD	= 0x00000002
+} eServiceMP3Flags;
+
 typedef enum
 {
 	GST_PLAY_FLAG_VIDEO         = 0x00000001,
@@ -450,19 +466,18 @@ eServiceMP3::eServiceMP3(eServiceReference ref)
 		if (m_useragent.empty())
 			m_useragent = "Enigma2 Mediaplayer";
 		m_extra_headers = eConfigManager::getConfigValue("config.mediaplayer.extraHeaders");
-		if (strstr(filename, " buffer=1"))
+		if ( m_ref.getData(7) & BUFFERING_ENABLED )
 		{
 			m_use_prefillbuffer = true;
-		}
-		else if (strstr(filename, " buffer=2"))
-		{
-			/* progressive download buffering */
-			if (::access("/hdd/movie", X_OK) >= 0)
+			if ( m_ref.getData(7) & PROGRESSIVE_DOWNLOAD )
 			{
-				/* It looks like /hdd points to a valid mount, so we can store a download buffer on it */
-				m_download_buffer_path = "/hdd/gstreamer_XXXXXXXXXX";
+				/* progressive download buffering */
+				if (::access("/hdd/movie", X_OK) >= 0)
+				{
+					/* It looks like /hdd points to a valid mount, so we can store a download buffer on it */
+					m_download_buffer_path = "/hdd/gstreamer_XXXXXXXXXX";
+				}
 			}
-			m_use_prefillbuffer = true;
 		}
 	}
 	else if ( m_sourceinfo.containertype == ctCDA )

Attached Files


Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #308 malakudi

  • Senior Member
  • 1,449 posts

+69
Good

Posted 24 November 2013 - 09:59

Will this get committed?



Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #309 pieterg

  • PLi® Core member
  • 32,766 posts

+245
Excellent

Posted 24 November 2013 - 12:45

Yes, certainly

Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #310 soupalonion

  • Member
  • 15 posts

+1
Neutral

Posted 23 December 2014 - 20:07

not sure if this is the good topic to discuss this but i want to go back on rtsp stream support, especially tv stream of the french operator "free" (the subject has been discussed earlier in this topic, thats why i post here).
I just did the test on OpenPLi 4.0 on a vu+ duo. there is picture but no sound?

 

there is a "workaround" we can found on another forum, it did the trick but partially : sound is back but not synchronized with picture... and its rapidly becomes unwatchable...

workaround is to replace libgstmpegdemux.so by an older version of it, if i understood it right.

 

maybe i missed something ?

is there a way to solve this and how ?

 

thx for help and sorry to up a 1 year old topic ! :unsure:



Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #311 soupalonion

  • Member
  • 15 posts

+1
Neutral

Posted 25 December 2014 - 10:35

still no audio but when im on a channel, tried to go in audiosync menu (yellow button, then blue) > GSOD

 

here the crashlog, do you see anything related to fact there is no sound on those rtsp stream ?

<?xml version="1.0" encoding="utf-8"?>
<openpli>
    <enigma2>
        <crashdate>jeu. déc. 25 10:22:26 2014</crashdate>
        <compiledate>Dec 22 2014</compiledate>
        <contactemail>sagichnet@gmx.net</contactemail>
        <!-- Please email this crashlog to above address -->
        <skin>PLi-HD/skin.xml</skin>
        <sourcedate>2014-12-21</sourcedate>
        <branch>(no branch)</branch>
        <rev>ba54e4f</rev>
        <version>3.0.0</version>
    </enigma2>
    <image>
        <stbmodel>duo</stbmodel>
        <kernelversion>
            <![CDATA[
Linux vuduo 3.9.6 #1 SMP Fri Dec 19 18:41:27 CET 2014 mips GNU/Linux
]]>
        </kernelversion>
        <kernelcmdline>bmem=118M ubi.mtd=0 root=ubi0:rootfs rootfstype=ubifs rw rootflags=sync</kernelcmdline>
        <nimsockets>NIM Socket 0:</nimsockets>
        <imageversion>
            <!-- No such file or directory -->
        </imageversion>
        <imageissue>
            <![CDATA[
openpli 4 %h

]]>
        </imageissue>
    </image>
    <crashlogs>
        <enigma2crashlog>
            <![CDATA[
freebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=202&flavour=hd
eServiceMP3::destruct!
eServiceMP3::construct!
getResolvedKey config.mediaplayer.extraHeaders failed !! (Typo??)
eServiceMP3::playbin uri=rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=400&flavour=hd
eServiceMP3::starting pipeline
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
new service started! trying to download cuts!
download failed, no cuesheet interface
RemovePopup, id = ZapError
eServiceMP3::state transition NULL -> READY
eServiceMP3::state transition READY -> PAUSED
dont apply ac3 delay when no video is running!
dont apply pcm delay when no video is running!
Buffering 0 percent done
start pause
Buffering 1 percent done
Buffering 2 percent done
Buffering 3 percent done
Buffering 4 percent done
Buffering 5 percent done
Buffering 6 percent done
Buffering 7 percent done
Buffering 8 percent done
Buffering 9 percent done
Buffering 10 percent done
Buffering 11 percent done
Buffering 12 percent done
Buffering 13 percent done
Buffering 14 percent done
Buffering 15 percent done
Buffering 16 percent done
Buffering 17 percent done
Buffering 18 percent done
Buffering 19 percent done
Buffering 20 percent done
Buffering 21 percent done
Buffering 22 percent done
Buffering 23 percent done
Buffering 24 percent done
Buffering 25 percent done
Buffering 26 percent done
Buffering 27 percent done
Buffering 28 percent done
Buffering 29 percent done
Buffering 30 percent done
Buffering 31 percent done
Buffering 32 percent done
Buffering 33 percent done
Buffering 34 percent done
Buffering 35 percent done
Buffering 36 percent done
Buffering 37 percent done
Buffering 38 percent done
Buffering 39 percent done
Buffering 40 percent done
Buffering 41 percent done
Buffering 42 percent done
Buffering 43 percent done
Buffering 44 percent done
Buffering 45 percent done
Buffering 46 percent done
Buffering 47 percent done
Buffering 48 percent done
Buffering 49 percent done
Buffering 50 percent done
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
Buffering 51 percent done
Buffering 53 percent done
Buffering 54 percent done
Buffering 55 percent done
Buffering 56 percent done
Buffering 57 percent done
Buffering 58 percent done
Buffering 59 percent done
Buffering 60 percent done
Buffering 61 percent done
Buffering 62 percent done
Buffering 63 percent done
Buffering 64 percent done
Buffering 65 percent done
Buffering 66 percent done
Buffering 67 percent done
Buffering 68 percent done
Buffering 69 percent done
Buffering 70 percent done
Buffering 71 percent done
Buffering 72 percent done
Buffering 73 percent done
Buffering 74 percent done
Buffering 75 percent done
Buffering 76 percent done
Buffering 77 percent done
Buffering 78 percent done
Buffering 79 percent done
Buffering 80 percent done
Buffering 81 percent done
Buffering 82 percent done
Buffering 83 percent done
Buffering 84 percent done
Buffering 85 percent done
Buffering 86 percent done
Buffering 87 percent done
Buffering 88 percent done
Buffering 89 percent done
Buffering 90 percent done
Buffering 91 percent done
Buffering 92 percent done
Buffering 93 percent done
Buffering 94 percent done
Buffering 95 percent done
Buffering 96 percent done
Buffering 97 percent done
Buffering 98 percent done
Buffering 100 percent done
start playing
Buffering 1 percent done
Buffering 100 percent done
Buffering 1 percent done
eServiceMP3::async-done - 1 video, 1 audio, 0 subtitle
AUDIO STRUCT=audio/mpeg
eServiceMP3::audio stream=0 codec=audio/mpeg language=und
Buffering 100 percent done
eServiceMP3::state transition PAUSED -> PLAYING
Buffering 0 percent done
start pause
Buffering 93 percent done
eServiceMP3::state transition PLAYING -> PAUSED
eServiceMP3::async-done - 1 video, 1 audio, 0 subtitle
AUDIO STRUCT=audio/mpeg
eServiceMP3::audio stream=0 codec=audio/mpeg language=und
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
action ->  InfobarChannelSelection keyChannelUp
action ->  OkCancelActions ok
playing 4097:0:1:D2:0:0:0:0:0:3:rtsp%3a//mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=210&flavour=hd:RTL9 HD
eServiceMP3::stop rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=400&flavour=hd
eServiceMP3::destruct!
eServiceMP3::construct!
getResolvedKey config.mediaplayer.extraHeaders failed !! (Typo??)
eServiceMP3::playbin uri=rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=210&flavour=hd
eServiceMP3::starting pipeline
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
new service started! trying to download cuts!
download failed, no cuesheet interface
RemovePopup, id = ZapError
eServiceMP3::state transition NULL -> READY
eServiceMP3::state transition READY -> PAUSED
dont apply ac3 delay when no video is running!
dont apply pcm delay when no video is running!
Buffering 0 percent done
start pause
Buffering 1 percent done
Buffering 2 percent done
Buffering 3 percent done
Buffering 4 percent done
Buffering 5 percent done
Buffering 6 percent done
Buffering 7 percent done
Buffering 8 percent done
Buffering 9 percent done
Buffering 10 percent done
Buffering 11 percent done
Buffering 12 percent done
Buffering 13 percent done
Buffering 14 percent done
Buffering 15 percent done
Buffering 16 percent done
Buffering 17 percent done
Buffering 18 percent done
Buffering 19 percent done
Buffering 20 percent done
Buffering 21 percent done
Buffering 22 percent done
Buffering 23 percent done
Buffering 24 percent done
Buffering 25 percent done
Buffering 26 percent done
Buffering 27 percent done
Buffering 28 percent done
Buffering 29 percent done
Buffering 30 percent done
eHdmiCEC: received message
Buffering 31 percent done
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
Buffering 32 percent done
Buffering 33 percent done
Buffering 34 percent done
Buffering 35 percent done
Buffering 36 percent done
Buffering 37 percent done
Buffering 38 percent done
Buffering 39 percent done
Buffering 40 percent done
Buffering 41 percent done
Buffering 42 percent done
Buffering 43 percent done
Buffering 44 percent done
Buffering 45 percent done
Buffering 46 percent done
Buffering 47 percent done
Buffering 48 percent done
Buffering 49 percent done
Buffering 50 percent done
Buffering 51 percent done
Buffering 52 percent done
Buffering 53 percent done
Buffering 54 percent done
Buffering 55 percent done
Buffering 56 percent done
Buffering 57 percent done
Buffering 58 percent done
Buffering 59 percent done
Buffering 60 percent done
Buffering 61 percent done
Buffering 62 percent done
Buffering 63 percent done
Buffering 64 percent done
Buffering 65 percent done
Buffering 66 percent done
Buffering 67 percent done
Buffering 68 percent done
Buffering 69 percent done
Buffering 70 percent done
Buffering 71 percent done
Buffering 72 percent done
Buffering 73 percent done
Buffering 74 percent done
Buffering 75 percent done
Buffering 76 percent done
Buffering 77 percent done
Buffering 78 percent done
Buffering 79 percent done
Buffering 80 percent done
Buffering 81 percent done
Buffering 82 percent done
Buffering 83 percent done
Buffering 84 percent done
Buffering 85 percent done
Buffering 86 percent done
Buffering 87 percent done
Buffering 88 percent done
Buffering 89 percent done
Buffering 90 percent done
Buffering 91 percent done
Buffering 92 percent done
Buffering 93 percent done
Buffering 94 percent done
Buffering 95 percent done
Buffering 96 percent done
Buffering 97 percent done
Buffering 98 percent done
Buffering 100 percent done
start playing
Buffering 1 percent done
Buffering 100 percent done
Buffering 1 percent done
Buffering 100 percent done
Buffering 1 percent done
eServiceMP3::async-done - 1 video, 1 audio, 0 subtitle
Buffering 100 percent done
Buffering 1 percent done
Buffering 100 percent done
Buffering 0 percent done
Buffering 100 percent done
Buffering 0 percent done
start pause
Buffering 95 percent done
eServiceMP3::state transition PAUSED -> PLAYING
eServiceMP3::state transition PLAYING -> PAUSED
eServiceMP3::async-done - 1 video, 1 audio, 0 subtitle
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
action ->  InfobarChannelSelection keyChannelDown
action ->  ChannelSelectBaseActions prevBouquet
action ->  OkCancelActions ok
playing 4097:0:1:176:0:0:0:0:0:3:rtsp%3a//mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=374&flavour=sd:NT1
eServiceMP3::stop rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=210&flavour=hd
eServiceMP3::destruct!
eServiceMP3::construct!
getResolvedKey config.mediaplayer.extraHeaders failed !! (Typo??)
eServiceMP3::playbin uri=rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=374&flavour=sd
eServiceMP3::starting pipeline
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
resolved to PLAY
gst_element_query_position failed in getPlayPosition
new service started! trying to download cuts!
download failed, no cuesheet interface
RemovePopup, id = ZapError
eServiceMP3::state transition NULL -> READY
eServiceMP3::state transition READY -> PAUSED
dont apply ac3 delay when no video is running!
dont apply pcm delay when no video is running!
Buffering 0 percent done
start pause
Buffering 1 percent done
Buffering 2 percent done
Buffering 3 percent done
Buffering 4 percent done
Buffering 5 percent done
Buffering 6 percent done
Buffering 7 percent done
Buffering 8 percent done
Buffering 9 percent done
Buffering 10 percent done
Buffering 11 percent done
Buffering 12 percent done
Buffering 13 percent done
Buffering 14 percent done
Buffering 15 percent done
Buffering 16 percent done
Buffering 17 percent done
Buffering 18 percent done
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
Buffering 19 percent done
Buffering 20 percent done
Buffering 21 percent done
Buffering 22 percent done
Buffering 23 percent done
Buffering 24 percent done
Buffering 25 percent done
Buffering 26 percent done
Buffering 27 percent done
Buffering 28 percent done
Buffering 29 percent done
Buffering 30 percent done
Buffering 31 percent done
Buffering 32 percent done
Buffering 33 percent done
Buffering 34 percent done
Buffering 35 percent done
Buffering 36 percent done
Buffering 37 percent done
Buffering 38 percent done
Buffering 39 percent done
Buffering 40 percent done
Buffering 41 percent done
Buffering 42 percent done
Buffering 43 percent done
Buffering 44 percent done
Buffering 45 percent done
Buffering 46 percent done
Buffering 47 percent done
Buffering 48 percent done
Buffering 49 percent done
Buffering 50 percent done
Buffering 51 percent done
Buffering 52 percent done
Buffering 53 percent done
Buffering 54 percent done
Buffering 55 percent done
Buffering 56 percent done
Buffering 57 percent done
Buffering 58 percent done
Buffering 59 percent done
Buffering 60 percent done
Buffering 61 percent done
Buffering 62 percent done
Buffering 63 percent done
Buffering 64 percent done
Buffering 65 percent done
Buffering 66 percent done
Buffering 67 percent done
Buffering 68 percent done
Buffering 69 percent done
Buffering 70 percent done
Buffering 71 percent done
Buffering 72 percent done
Buffering 73 percent done
Buffering 74 percent done
Buffering 75 percent done
Buffering 76 percent done
Buffering 77 percent done
Buffering 78 percent done
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
Buffering 79 percent done
Buffering 80 percent done
Buffering 81 percent done
Buffering 82 percent done
Buffering 83 percent done
Buffering 84 percent done
Buffering 85 percent done
Buffering 86 percent done
Buffering 87 percent done
Buffering 88 percent done
Buffering 89 percent done
Buffering 90 percent done
Buffering 91 percent done
Buffering 92 percent done
Buffering 93 percent done
Buffering 94 percent done
Buffering 95 percent done
Buffering 96 percent done
Buffering 97 percent done
Buffering 98 percent done
Buffering 100 percent done
start playing
Buffering 7 percent done
Buffering 100 percent done
Buffering 7 percent done
Buffering 100 percent done
Buffering 7 percent done
Buffering 11 percent done
Buffering 100 percent done
start playing
Buffering 0 percent done
Buffering 100 percent done
Buffering 7 percent done
eServiceMP3::async-done - 1 video, 2 audio, 0 subtitle
Buffering 100 percent done
eServiceMP3::state transition PAUSED -> PLAYING
Buffering 0 percent done
start pause
Buffering 100 percent done
start playing
Buffering 6 percent done
Buffering 98 percent done
eServiceMP3::state transition PLAYING -> PAUSED
eServiceMP3::async-done - 1 video, 2 audio, 0 subtitle
eServiceMP3::state transition PAUSED -> PLAYING
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
eHdmiCEC: received message
eHdmiCEC: send message 84 10 00 03
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
action ->  GlobalActions volumeUp
Setvolume: 45 45 (raw)
Setvolume: 35 35 (-1db)
setValue 45
action ->  GlobalActions volumeUp
Setvolume: 50 50 (raw)
Setvolume: 32 32 (-1db)
setValue 50
action ->  GlobalActions volumeUp
Setvolume: 55 55 (raw)
Setvolume: 29 29 (-1db)
setValue 55
action ->  GlobalActions volumeDown
Setvolume: 50 50 (raw)
Setvolume: 32 32 (-1db)
setValue 50
action ->  GlobalActions volumeDown
Setvolume: 45 45 (raw)
Setvolume: 35 35 (-1db)
setValue 45
eHdmiCEC: received message
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
eHdmiCEC: received message
eHdmiCEC: send message 84 10 00 03
eHdmiCEC: received message 83
eHdmiCEC: send message 84 10 00 03
action ->  InfobarAudioSelectionActions audioSelection
eServiceMP3::getSubtitleList finished
action ->  AudioSelectionActions blue
[AudioSync] fallback to default translation for  Service delay
[AudioSync] fallback to default translation for  Global delay
[AudioSync] fallback to default translation for  %i ms
[AudioSync] fallback to default translation for  Channel audio:
Screen <class 'Plugins.Extensions.AudioSync.AC3main.AC3LipSync'>(('/usr/lib/enigma2/python/Plugins/Extensions/AudioSync',), {}): <type 'exceptions.AttributeError'>
Traceback (most recent call last):
  File "/usr/lib/enigma2/python/mytest.py", line 226, in create
    return screen(self, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/Plugins/Extensions/AudioSync/AC3main.py", line 63, in __init__
    self.setChannelInfoText()
  File "/usr/lib/enigma2/python/Plugins/Extensions/AudioSync/AC3main.py", line 222, in setChannelInfoText
    sActiveAudio = str(self.AC3delay.selectedAudioInfo[0])
AttributeError: AC3delay instance has no attribute 'selectedAudioInfo'
Traceback (most recent call last):
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 66, in action
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 46, in action
  File "/usr/lib/enigma2/python/Screens/AudioSelection.py", line 313, in keyBlue
  File "/usr/lib/enigma2/python/Screens/AudioSelection.py", line 319, in colorkey
  File "/usr/lib/enigma2/python/Screens/AudioSelection.py", line 287, in keyRight
  File "/usr/lib/enigma2/python/Screens/AudioSelection.py", line 160, in __call__
  File "/usr/lib/enigma2/python/Screens/InfoBarGenerics.py", line 1043, in runPlugin
  File "/usr/lib/enigma2/python/Plugins/Extensions/AudioSync/plugin.py", line 32, in audioMenu
    session.open(AC3main.AC3LipSync, plugin_path)
  File "/usr/lib/enigma2/python/mytest.py", line 305, in open
    dlg.isTmp = True
AttributeError: 'NoneType' object has no attribute 'isTmp'
(PyObject_CallObject(<bound method NumberActionMap.action of <Components.ActionMap.NumberActionMap instance at 0x1793a80>>,('AudioSelectionActions', 'blue')) failed)
getResolvedKey config.plugins.crashlogautosubmit.sendAnonCrashlog failed !! (Typo??)
getResolvedKey config.plugins.crashlogautosubmit.addNetwork failed !! (Typo??)
getResolvedKey config.plugins.crashlogautosubmit.addWlan failed !! (Typo??)
]]>
        </enigma2crashlog>
    </crashlogs>
</openpli>


Re: DMM 3.2.0 IPTV in Bouquets - OpenPLI added this already? #312 microboi37

  • Senior Member
  • 74 posts

0
Neutral

Posted 22 January 2015 - 19:38

Bouquets IPTV streams works perfect but does it also work with https:// (secure)? Let's say something like this #SERVICE 1:0:1:1:0:0:0:0:0:0:https%3a//192.168.1.1%3a443/channel1/:test ssl. VLC does it OK, it warns about the certificate not being valid but after this it plays the video.




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users