• 1
  • 41
  • 42
  • 43(current)
  • 44
  • 45
  • 148
New MythTV add-on using libcmyth
(2012-04-23, 20:36)tdavis Wrote: Once you've changed the regex, there is two ways to get it to apply..

1) restart xbmc. This takes the longest, but it's guaranteed to work.
2) double click on the Recordings tab if your still using the original theme.

Sure, but it still doesn't work for me! I'm wondering if you have a different title/subtitle thing going on to me?
Reply
I dunno. I can check it later tonight to see if maybe I got it wrong..

Here's the doc page for the regex:

http://www.boost.org/doc/libs/1_49_0/lib...yntax.html
Reply
Does your regex settings looks like this:
Image

Jimmer+FiveIsAlive: Do you use the storagegroup option in the MythTV backend

TDavis: Strange result. Will check if I missed something in the regex code.
Libcmyth MythTV addon for xbmc-pvr [source] [forum thread]
Reply
(2012-04-23, 10:48)kenzu Wrote: Does crystalhd work with livetv?

There are still some folks working on getting it to work. The problem is with FFMpeg not being able to pass the MPEG2 transport stream off to a hardware decoder. I don't even think it was this forum where I read about this. It could have been OpenElec on AppleTV or somewhere else.

-nobleach
Reply
Great update!

Unfortunately suspend stopped working for me (nothing happens), so switched back to my previous build while building latest OpenELEC in the meantime.
It does seem my issue with myth:// protocol is still there. Could you look into that tsp? Thanks!
Reply
Ahh.. I might be missing a few '?' in the regex I've posted.

try:

Code:
^(?<folder>.+?)::(?<title>.+?)
Reply
(2012-04-23, 21:57)tdavis Wrote: Ahh.. I might be missing a few '?' in the regex I've posted.

try:

Code:
^(?<folder>.+?)::(?<title>.+?)

Nope, that's still not getting it for me either..... well, it gets things sorted into their respective folders now, but all the entries in the sub-folder are single letters

For instance Homeland::Representative Brody

is

Homeland
|--------- R

Which is almost perfect, but if you have more than one episode with the same starting letter!

As for storage directories, I have separate fanart, coverart and banner folders which I run jamu as a cron job to populate. The artwork was working from these directories prior to the new commits and it still works just fine in mythfrontend......

Edit: Seems that the artwork is correctly pulled for items in the Movies subdir, but not for TV shows....
Reply
remove the last questionsign and it should work
Code:
"^(?<folder>.+?)::(?<title>.+)"
Could you also check if there is any artwork in ~/.xbmc/userdata/addon_data/pvr.mythtv.cmyth/cache/
that are not displayed. If you have a lot of artwork it can take a while before it is transfered.

And if possible post the names of the artwork that is not displayed. Especially the middle part of the names. Usually it is named like: title_season X_coverart.jpg.
The regex used to match this is: "%s.*_%s\\.(?:jpg|png|bmp) where the first %s is the title and second %s the storage group. It may need to be tuned to get the tv shows artwork.



Libcmyth MythTV addon for xbmc-pvr [source] [forum thread]
Reply
(2012-04-23, 00:14)bilbonvidia Wrote: I gave mythtv 0.25 along with the other mythtv xbmc ago but decided to switch back. I uninstalled mythtv and reinstalled 0.24 and then installed this xbmc from scratch but I am having an issue with live tv, xbmc just hangs, the epg populates okay. Here is my pastebin log
http://pastebin.com/symMcwme

Any suggestions?

I have rebuilt my system today from scratch, same thing happening.
Reply
(2012-04-23, 17:59)tdavis Wrote: Nothing that I record has an episode number in it.. It could be the fact that Schedules Direct does not put them in the title, and I've not set myth to add them either.

Yep, I have same issue. SchedulesDirect does not include an episode in the subtitle, and many of the shows I record don't have an episode number in any case (e.g. PBS Newshour, documentaries etc.) All of the individual recordings under the series/program name have only a single letter if I use the default regex, so does your regex fix this?

Update: tsp's regex fixed the episode name problem, thanks!


(2012-04-23, 21:29)tsp42 Wrote: Jimmer+FiveIsAlive: Do you use the storagegroup option in the MythTV backend

I only use the default storage group, so no separate storagegroup if that's what you mean.

---

Two steps, forward, one step backwards: now LiveTV doesn't work at all, it just hangs with "Working...". Can't exit, have to kill XBMC completely and restart. Using MythTV 0.23.1-fixes. (Mythbox add-on with same installation works fine).
Reply
(2012-04-24, 00:48)tsp42 Wrote: Could you also check if there is any artwork in ~/.xbmc/userdata/addon_data/pvr.mythtv.cmyth/cache/
that are not displayed. If you have a lot of artwork it can take a while before it is transfered.

~/.xbmc/userdata/addon_data/pvr.mythtv.cmyth/cache/coverart

and

~/.xbmc/userdata/addon_data/pvr.mythtv.cmyth/cache/fanart

on my system are both empty directories. I assumed that the add-on pulled the info for each show from thetvdb or something? I haven't set any coverart or fanart in the mythbackend.
Reply
I wonder if it might be possible to add an "All recordings" entry at the top of the list that would return the old-style linear list, sometimes it's useful to be able browse backwards in time and see what shows were on the same day, or to sort globally by title, so it would be useful to retain this function. (mythbackend has a similar view as does Mythbox).

Another feature request would be better detection of movies, I filed this:

https://github.com/tsp/xbmc/issues/10

Basically, it seems that mythbackend stores (some of) this info, would be better to use this rather than heuristics.

Thanks again, tsp42! Sorry for the flurry of bug reports/feature requests. I will try to look into implementing some of them myself if I can free up some time.
Reply
(2012-04-23, 21:33)nobleach Wrote:
(2012-04-23, 10:48)kenzu Wrote: Does crystalhd work with livetv?

There are still some folks working on getting it to work. The problem is with FFMpeg not being able to pass the MPEG2 transport stream off to a hardware decoder. I don't even think it was this forum where I read about this. It could have been OpenElec on AppleTV or somewhere else.

-nobleach

Okay, thank you. Will take a look on openelec's forum. I have a Apple TV 1. Gen with Crystal HD 15 card. It runs crystalbuntu really good with 1080p on movies, but not on livetv :-(
Reply
(2012-04-24, 00:48)tsp42 Wrote: remove the last questionsign and it should work
Code:
"^(?<folder>.+?)::(?<title>.+)"
Could you also check if there is any artwork in ~/.xbmc/userdata/addon_data/pvr.mythtv.cmyth/cache/
that are not displayed. If you have a lot of artwork it can take a while before it is transfered.

And if possible post the names of the artwork that is not displayed. Especially the middle part of the names. Usually it is named like: title_season X_coverart.jpg.
The regex used to match this is: "%s.*_%s\\.(?:jpg|png|bmp) where the first %s is the title and second %s the storage group. It may need to be tuned to get the tv shows artwork.

Thanks for the regex, that totally works for me!

as for the cache, it contains a coverart, fanart and preview folder. All my artwork stored on the server is downloaded and present. The artwork the displays is:

Code:
1333657067_Monsters Season 1_fanart.jpg
Monsters Season 1_fanart.jpg
1333657115_Bobby Fischer against the World Season 1_fanart.jpg
Bobby Fischer against the World Season 1_fanart.jpg
1333657158_Home and Away Season 1_fanart.jpg
Home and Away Season 1_fanart.jpg
1333657170_Hairspray Season 1_fanart.jpg
Hairspray Season 1_fanart.jpg
1333657177_Defiance Season 1_fanart.jpg
Defiance Season 1_fanart.jpg
1333657185_Street Kings Season 1_fanart.jpg
Street Kings Season 1_fanart.jpg
1333657193_In the Valley of Elah Season 1_fanart.jpg
In the Valley of Elah Season 1_fanart.jpg
1333657201_Heist Season 1_fanart.jpg
Heist Season 1_fanart.jpg
1334041127_Star Trek: First Contact Season 1_fanart.jpg
Star Trek: First Contact Season 1_fanart.jpg
1334420225_WALL-E Season 1_fanart.jpg
WALL-E Season 1_fanart.jpg
1334531883_Lone Star Season 1_fanart.jpg
Lone Star Season 1_fanart.jpg


That which does not:
Code:
Homeland Season 1_fanart.jpg
The Reader Season 1_fanart.jpg
1333657208_The Reader Season 1_fanart.jpg
The Story of Maths Season 1_fanart.jpg
The Vampire Diaries Season 1_fanart.jpg
Two Mules For Sister Sara Season 1_fanart.jpg
Scott & Bailey Season 1_fanart.jpg
1334607443_Scott & Bailey Season 1_fanart.jpg
One Tree Hill Season 1_fanart.jpg
Formula One Season 1_fanart.jpg

You'll notice that some shows/movies have two lots of art work titling going on..... but two that have both sets of fanart are also in the group of shows that don't display any. I'm going to delete the cache and let it repopulate and see what happens....

Jim

Right, deleted the cache, and now every entry it downloads is displayed properly:

Code:
ls fanart/
1333657067_Monsters Season 1_fanart.jpg
1333657115_Bobby Fischer against the World Season 1_fanart.jpg
1333657158_Home and Away Season 1_fanart.jpg
1333657170_Hairspray Season 1_fanart.jpg
1333657177_Defiance Season 1_fanart.jpg
1333657185_Street Kings Season 1_fanart.jpg
1333657193_In the Valley of Elah Season 1_fanart.jpg
1333657201_Heist Season 1_fanart.jpg
1333657208_The Reader Season 1_fanart.jpg
1334041127_Star Trek: First Contact Season 1_fanart.jpg
1334420225_WALL-E Season 1_fanart.jpg
1334531883_Lone Star Season 1_fanart.jpg
1334607443_Scott & Bailey Season 1_fanart.jpg

however, not all fanart is being pulled from my server:
Code:
Formula One Season 1_fanart.jpg
Homeland Season 1_fanart.jpg
One Tree Hill Season 1_fanart.jpg
The Story of Maths Season 1_fanart.jpg
The Vampire Diaries Season 1_fanart.jpg
Two Mules For Sister Sara Season 1_fanart.jpg
Reply
at a guess this is what is going wrong when I try and watch live tv

23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] max_analyze_duration 5000000 reached at 5000000
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] decoding for stream 2 failed
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] decoding for stream 3 failed
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] Could not find codec parameters (Unknown: none ([11][0][0][0] / 0x000B))
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] decoding for stream 4 failed
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] Could not find codec parameters (Unknown: none ([11][0][0][0] / 0x000B))
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] decoding for stream 5 failed
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] Could not find codec parameters (Unknown: none ([11][0][0][0] / 0x000B))
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] decoding for stream 6 failed
23:02:35 T:2769161072 DEBUG: ffmpeg[A50E0B70]: [mpegts] Could not find codec parameters (Unknown: none ([11][0][0][0] / 0x000B))

does this suggest the compile went wrong? I'll try the windows version later to see if I get similar behaviour.
Reply
  • 1
  • 41
  • 42
  • 43(current)
  • 44
  • 45
  • 148

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