New MythTV add-on using libcmyth

  Thread Rating:
  • 8 Votes - 4.75 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
chrisgibbs Offline
Junior Member
Posts: 4
Joined: Apr 2012
Reputation: 0
Post: #701
(2012-04-29 21:45)tsp42 Wrote:  
(2012-04-26 20:48)bilbonvidia Wrote:  
(2012-04-26 17:06)fiveisalive Wrote:  Yep, live TV working again. Thank you!

I have, however, found that switching channels (without pressing stop in between) now seems to sometimes freeze XBMC for a couple of minutes, and then return to a non-playing state. I tried this both using "Up"/"Down" arrows within full screen, and selecting a channel directly in the TV channel view. This is on the same mythbackend system that didn't have such issues last week. Is anybody else seeing this?

Live tv working for me too thanks! but I have the same problem with changing channel as above, xbmc crashes. Pressing stop and changing from epg is okay. I also see the same behaviour with the time shift buttons reported earlier , ie being in the wrong order when being selected.
Could you and fiveisalive pastebin a debug log from when it happends. The addtion of the forward/reverse buttons tothe skin was a bit rushed. That's why the order is wrong. Will have to fix it.


I can also confirm that this error is happening to me too. Do you have enough to work with the existing debug logs or would you like more?
find quote
tdavis Offline
Member
Posts: 87
Joined: Jan 2010
Reputation: 0
Post: #702
I just upgraded to 0.25, so I'm now waiting for support for that..
find quote
tsp42 Offline
Senior Member
Posts: 222
Joined: Aug 2011
Reputation: 11
Location: Denmark
Post: #703
(2012-05-01 09:45)chrisgibbs Wrote:  
(2012-04-29 21:45)tsp42 Wrote:  
(2012-04-26 20:48)bilbonvidia Wrote:  Live tv working for me too thanks! but I have the same problem with changing channel as above, xbmc crashes. Pressing stop and changing from epg is okay. I also see the same behaviour with the time shift buttons reported earlier , ie being in the wrong order when being selected.
Could you and fiveisalive pastebin a debug log from when it happends. The addtion of the forward/reverse buttons tothe skin was a bit rushed. That's why the order is wrong. Will have to fix it.
I can also confirm that this error is happening to me too. Do you have enough to work with the existing debug logs or would you like more?
It's enough with bilbonvidia's log thanks. Just need time to find the error now.

Libcmyth MythTV addon for xbmc-pvr [source] [forum thread]
find quote
jht3 Offline
Junior Member
Posts: 16
Joined: May 2012
Reputation: 0
Post: #704
testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work

[Image: deadliest_catch.png]
(This post was last modified: 2012-05-03 02:47 by jht3.)
find quote
OzSpeedway Offline
Junior Member
Posts: 21
Joined: Jul 2008
Reputation: 0
Post: #705
Was just wondering if it is possible to just compile the cmyth addon and add it to my current PVR install? I have the compiled version of XBMC from pulse-eight. Any pointers appreciated if it is at all possible....

Cheers
Bruce
find quote
InoD Offline
Junior Member
Posts: 38
Joined: Apr 2012
Reputation: 1
Post: #706
(2012-05-03 02:45)jht3 Wrote:  testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work
...

I had noticed the same thing and it was due to the regular expression used to split folder and title for series (PVR addon configuration).
For me, the regular expression was set to
Code:
^(?<folder>.+?)::(?<title>.+?)
but it should be
Code:
^(?<folder>.+?)::(?<title>.+)
After changing and saving, you should restart XBMC.
find quote
jht3 Offline
Junior Member
Posts: 16
Joined: May 2012
Reputation: 0
Post: #707
(2012-05-03 08:41)InoD Wrote:  
(2012-05-03 02:45)jht3 Wrote:  testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work
...

I had noticed the same thing and it was due to the regular expression used to split folder and title for series (PVR addon configuration).
For me, the regular expression was set to
Code:
^(?<folder>.+?)::(?<title>.+?)
but it should be
Code:
^(?<folder>.+?)::(?<title>.+)
After changing and saving, you should restart XBMC.

that worked! thanks. i figured it was that regex and someone had seen this before
find quote
andyb2000 Offline
Junior Member
Posts: 38
Joined: Jul 2011
Reputation: 0
Location: North-East, UK
Post: #708
Hi all,
Got a self-compile setup running nicely on my XBMC system here, pulled the src from git, compiled with:

"./configure --prefix=/usr --enable-vdpau --enable-static --disable-shared --enable-sdl --enable-rtmp"

And looking pretty good, channels look fine, except for one problem, in the EPG TIMELINE view (the normal view we use at home) any channel that doesn't have an EPG listing (for example the majority of music channels in the UK don't have EPG entries), then this isn't displayed.

Is there a way to force this? I tried this some time ago with TVHeadend and never found a solution. Anyone can sort this for me or let me know the patch/code to modify?

HTS Tvheadend development (via http://github.com/andyb2000) On Ubuntu with ST STV0299 DVB-S, Conexant CX24116/CX24118, Philips TDA10046H DVB-T (Freesat and Freeview in the UK) XML from EIT/DVB/Freesat.

XBMC via OpenElec on Dell XPS210 via HDMI to Hitachi 42" HD-TV
find quote
tsp42 Offline
Senior Member
Posts: 222
Joined: Aug 2011
Reputation: 11
Location: Denmark
Post: #709
The channel switching should work now. It is a little slower than before(8 sec vs. 7 sec. on my setup) but at least it doesn't lockup.

(2012-05-03 06:36)OzSpeedway Wrote:  Was just wondering if it is possible to just compile the cmyth addon and add it to my current PVR install? I have the compiled version of XBMC from pulse-eight. Any pointers appreciated if it is at all possible....

Cheers
Bruce
Not really. I've modified the xbmc PVR code several places so you will have to merge the changes into the XBMC pulse-eight code.

(2012-05-03 08:41)InoD Wrote:  
(2012-05-03 02:45)jht3 Wrote:  testing the pvr build on my laptop and noticed that the show title's are getting cropped at one character. my mythfrontend shows them fine, mythbox addon does too. my myth server is running .24+fixes. i'm a longtime mythtv user and just recently decided to move to XBMC for my frontend. from what i've seen so far, the pvr function is looking great. certainly prettier than mythbox; keep up the good work
...

I had noticed the same thing and it was due to the regular expression used to split folder and title for series (PVR addon configuration).
For me, the regular expression was set to
Code:
^(?<folder>.+?)::(?<title>.+?)
but it should be
Code:
^(?<folder>.+?)::(?<title>.+)
After changing and saving, you should restart XBMC.
The default value should be fixed now.
(2012-05-03 20:31)andyb2000 Wrote:  Hi all,
Got a self-compile setup running nicely on my XBMC system here, pulled the src from git, compiled with:

"./configure --prefix=/usr --enable-vdpau --enable-static --disable-shared --enable-sdl --enable-rtmp"

And looking pretty good, channels look fine, except for one problem, in the EPG TIMELINE view (the normal view we use at home) any channel that doesn't have an EPG listing (for example the majority of music channels in the UK don't have EPG entries), then this isn't displayed.

Is there a way to force this? I tried this some time ago with TVHeadend and never found a solution. Anyone can sort this for me or let me know the patch/code to modify?
Not what I'm aware of. I thought you found the place in the code to fix it?

Libcmyth MythTV addon for xbmc-pvr [source] [forum thread]
find quote
InoD Offline
Junior Member
Posts: 38
Joined: Apr 2012
Reputation: 1
Post: #710
Ah, great. I will build a new version to test channel switching.

Do you happen to know if a myth:// source honours the video file list setting concerning automatic thumbnail creation from metadata? I see some reports that the strange crashes are related to automatic thumbnail generation, but when I disable that for video files, the crash doesn't disappear.
find quote
Post Reply