• 1
  • 95
  • 96
  • 97(current)
  • 98
  • 99
  • 148
New MythTV add-on using libcmyth
(2012-11-02, 03:47)janbar Wrote: @dst6se
No need money, i make this for the fun. Can you post the log please. Using pastebin or like you prefer. Thanks for all

Oki ! Here are the logs, I can produce more logs tonight when im home from work !

mythbackend.log http://pastebin.com/GZT6zn4E
xbmc.log http://pastebin.com/wd2igs2X

And again , thanks for all the hard work !
Reply
Good work on the Mythtv PVR Client. I'm loving it. With the xbmc for android builds and the low cost of android HTPC sticks and set tops...

Is android support in the plan for the Mythtv PVR Client and if so is there an estimated date?
Reply
(2012-11-02, 09:46)dst6se Wrote:
(2012-11-02, 03:47)janbar Wrote: @dst6se
No need money, i make this for the fun. Can you post the log please. Using pastebin or like you prefer. Thanks for all

Oki ! Here are the logs, I can produce more logs tonight when im home from work !

mythbackend.log http://pastebin.com/GZT6zn4E
xbmc.log http://pastebin.com/wd2igs2X

And again , thanks for all the hard work !
@dst6se
Thanks for logs. They are more precious than money Wink
The algorythm to compute the requested block size is not perfect yet. I need your help to test the improvement.
I will updating it soon. I explain below how to re-compile quicky the addon because your time is Precious:

1 - Get my changes by pulling my repo:

cd xbmc-pvr-addons
git pull

2 - Compile cmyth lib:

cd lib/cmyth
make
...

3 - Clean an compile addon:

cd ../../addons/pvr.mythtv.cmyth
make clean ; make
...

4 - copy the new addon lib to your xbmc addon folder:

cp XBMC* $HOME/.xbmc/addons/pvr.mythtv.cmyth/


and then start xbmc.

I will posting soon in the thread to tell you when i updated it.
Thanks. Br
Reply
@janbar

Oki !! , so the changes are only in the pvr.mythtv.cmyth folder , and not in the libcmyth ?
Reply
@dst6se
No all is impacted. So if i update cmyth you must clean and rebuid addon source.
Just now i posted an update (thanks for your logs, they are great). Now with this update the playback waits backend event before start (30 secs max). I done before but it was buggy.

Edit: not all, just addon mythtv:
lib/cmyth and addons/pvr.mythtv.cmyth
Reply
(2012-11-02, 21:16)janbar Wrote: @dst6se
No all is impacted. So if i update cmyth you must clean and rebuid addon source.
Just now i posted an update (thanks for your logs, they are great). Now with this update the playback waits backend event before start (30 secs max). I done before but it was buggy.

Oki , I still got the same problem, some channels I have to start 2-3 times before it starts , when it does not start the working symbol in the right corner
display for about 2-3 sec and then nothing happes !
Do you want new logs ?

Reply
Yes it would be great to have them.
I saw a similar case in your previous logs: the backend cannot tune the channel. But with new logs i will confirm that. Thanks
Reply
(2012-11-02, 21:30)janbar Wrote: Yes it would be great to have them.
I saw a similar case in your previous logs: the backend cannot tune the channel. But with new logs i will confirm that. Thanks

I saw this in the logs on the backend

Nov 2 20:38:30 homer mythlogserver: mythbackend[8726]: N DVBRead dtvsignalmonitor.cpp:354 (HandlePMT) DTVSM(/dev/dvb/adapter3/frontend0): PMT says program 3450 is encrypted

Im using a TBS-5880 with a CI card reader !

There was no problem before with this before, so maybe there is some timer how timeout before the ci interface decrypt the channel.
The channel I have no problem with is free2air !

Do you still want all the logs ?
Reply
(2012-11-02, 21:43)dst6se Wrote:
(2012-11-02, 21:30)janbar Wrote: Yes it would be great to have them.
I saw a similar case in your previous logs: the backend cannot tune the channel. But with new logs i will confirm that. Thanks

I saw this in the logs on the backend

Nov 2 20:38:30 homer mythlogserver: mythbackend[8726]: N DVBRead dtvsignalmonitor.cpp:354 (HandlePMT) DTVSM(/dev/dvb/adapter3/frontend0): PMT says program 3450 is encrypted

Im using a TBS-5880 with a CI card reader !

There was no problem before with this before, so maybe there is some timer how timeout before the ci interface decrypt the channel.
The channel I have no problem with is free2air !

Do you still want all the logs ?

I post the log in case you want them !

mythbackend.log and xbmc.log first channelswitch
mythbackend1.log and xbmc1.log second channelswitch

http://pastebin.com/Qwxtt8HM mythbackend.log
http://pastebin.com/Yjh87M0T mythbackend1.log

http://pastebin.com/zbaUFpXE xbmc.log
http://pastebin.com/5ykY11Zy xbmc1.log

Reply
@dst6se
In the log i see the error -22 on read live stream. That means the recorder (object in addon) was not configured. It should be mapped with the MythTV recorder.
Please can you activate the extra logging: In the addon configuration page you must select item "Include more debug information in the log file".
Then stop XBMC and pull my last change from my master. if you type "git log" you will see in the first line "commit 99552c9fed451bdc265d99cebbe92c09f7eff168" then press "q" to quit.
Recompile addon ("make" in lib/cmyth folder and then "make clean" and "make" in the addons/pvr.mythtv.cmyth folder) finally copy XBMC_MythTV_cmyth.pvr into $HOME/.xbmc/addons/pvr.mythtv.cmyth/

You can restart XBMC. Now log file will be bigger. Thanks very much. Wink

Nota: When finishing test you can unselect "Include more debug information in the log file".
Reply
(2012-11-03, 00:10)janbar Wrote: @dst6se
In the log i see the error -22 on read live stream. That means the recorder (object in addon) was not configured. It should be mapped with the MythTV recorder.
Please can you activate the extra logging: In the addon configuration page you must select item "Include more debug information in the log file".
Then stop XBMC and pull my last change from my master. if you type "git log" you will see in the first line "commit 99552c9fed451bdc265d99cebbe92c09f7eff168" then press "q" to quit.
Recompile addon ("make" in lib/cmyth folder and then "make clean" and "make" in the addons/pvr.mythtv.cmyth folder) finally copy XBMC_MythTV_cmyth.pvr into $HOME/.xbmc/addons/pvr.mythtv.cmyth/

You can restart XBMC. Now log file will be bigger. Thanks very much. Wink

Nota: When finishing test you can unselect "Include more debug information in the log file".


I had already compilled your changes , What do you mean by the recorder object in the addon shoud be mapped with the mythtv recorder ?
I have the extra debug log activated on the previus logs , but i will generate new log files for you with the new commits

Thanks Danne
Reply
(2012-11-03, 00:10)janbar Wrote: @dst6se
In the log i see the error -22 on read live stream. That means the recorder (object in addon) was not configured. It should be mapped with the MythTV recorder.
Please can you activate the extra logging: In the addon configuration page you must select item "Include more debug information in the log file".
Then stop XBMC and pull my last change from my master. if you type "git log" you will see in the first line "commit 99552c9fed451bdc265d99cebbe92c09f7eff168" then press "q" to quit.
Recompile addon ("make" in lib/cmyth folder and then "make clean" and "make" in the addons/pvr.mythtv.cmyth folder) finally copy XBMC_MythTV_cmyth.pvr into $HOME/.xbmc/addons/pvr.mythtv.cmyth/

You can restart XBMC. Now log file will be bigger. Thanks very much. Wink

Nota: When finishing test you can unselect "Include more debug information in the log file".

Im sorry , but after your last commit everything works excelent , so I can not produce any error logs for you Smile
Thanks for everything !

(2012-11-03, 00:37)dst6se Wrote:
(2012-11-03, 00:10)janbar Wrote: @dst6se
In the log i see the error -22 on read live stream. That means the recorder (object in addon) was not configured. It should be mapped with the MythTV recorder.
Please can you activate the extra logging: In the addon configuration page you must select item "Include more debug information in the log file".
Then stop XBMC and pull my last change from my master. if you type "git log" you will see in the first line "commit 99552c9fed451bdc265d99cebbe92c09f7eff168" then press "q" to quit.
Recompile addon ("make" in lib/cmyth folder and then "make clean" and "make" in the addons/pvr.mythtv.cmyth folder) finally copy XBMC_MythTV_cmyth.pvr into $HOME/.xbmc/addons/pvr.mythtv.cmyth/

You can restart XBMC. Now log file will be bigger. Thanks very much. Wink

Nota: When finishing test you can unselect "Include more debug information in the log file".

Im sorry , but after your last commit everything works excelent , so I can not produce any error logs for you Smile
Thanks for everything !

Now I have tried to change channel atleast 30 times without any problem Smile
Reply
Great Smile . We have improved the addon live stream as never yet before. Thank you very much dst6se.
I prepare a new request to merge with the master.
Missing aubrien.
@Aubrien
Are you ready to check my last changes ?
Reply
(2012-11-01, 20:00)dubstar_04 Wrote:
(2012-10-31, 20:57)cfetzer Wrote: So far this looks good, is there more output afterwards?
Did you build it on the same system? Any suspicious warnings during build?
Maybe it could help if you pastebin the full build/and debug log.

Cheers, Christian

buildlog:
http://paste.ubuntu.com/1324260/

Terminal Output:
http://paste.ubuntu.com/1324265/

Log:
http://paste.ubuntu.com/1324272/

Any help much appreciated.

Thanks,

Dubstar_04
Hi dubstar,

Can you upgrade your system to last long term supportted version ? I suggest ubuntu 12.04 with last update.
Reply
(2012-11-03, 01:07)janbar Wrote: Great Smile . We have improved the addon live stream as never yet before. Thank you very much dst6se.
I prepare a new request to merge with the master.
Missing aubrien.
@Aubrien
Are you ready to check my last changes ?

Thanks to you ! you have done all the hard work, Lets see what aubrien said about the change , but I hope evertything works for him to !

Reply
  • 1
  • 95
  • 96
  • 97(current)
  • 98
  • 99
  • 148

Logout Mark Read Team Forum Stats Members Help
New MythTV add-on using libcmyth8