pvr.mythtv add-on - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: PVR & Live TV Support (https://forum.kodi.tv/forumdisplay.php?fid=167) +---- Forum: MythTV (https://forum.kodi.tv/forumdisplay.php?fid=170) +---- Thread: pvr.mythtv add-on (/showthread.php?tid=198833) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
RE: pvr.mythtv add-on - janbar - 2014-10-15 @allan87 The commit above is dedicated for backend handling sub-channel. MythTV handles its own channel number and wrap sub-channel within MythTV channel. So you should have one channel for each existing sub-channel. The table "channel" contains two fields atsc_major_chan and atsc_minor_chan showing the linking. I think too you shouldn't switch from using backend number / xbmc number without restarting xbmc and then reseting the epg because until now epg database of xbmc use channel number as key. RE: pvr.mythtv add-on - allan87 - 2014-10-15 Sorry, I thought the commit was for passing the subchannel number to XBMC and displaying it. For your information, the atsc_minor_chan is never displayed, although it is an essential part of the channel number. Where only one channel is transmitted on a frequency, it is still (for example) 4-1 or 5-1. RE: pvr.mythtv add-on - janbar - 2014-10-15 i would like you run the sql query to show which channels have epg info for the next day time: Code: select distinct channel.sourceid, channel.channum, channel.callsign from program join channel on channel.chanid=program.chanid where starttime > now() and starttime < now() + interval 1 day; You should see all of those channels in the epg screen too RE: pvr.mythtv add-on - allan87 - 2014-10-15 On the backend? I don't know how to login to sql. RE: pvr.mythtv add-on - janbar - 2014-10-15 (2014-10-15, 23:21)allan87 Wrote: On the backend? I don't know how to login to sql. On the backend with mythtv user, you can connect by: Code: mysql -umythtv -pmythtv mythconverg If you have changed the password replace -pmythtv by -p{password}. You can then run the query. To exit type "exit". My sample (we have no too much channel in france ) Code: mythtv@mediacenter:~$ mysql -umythtv -pmythtv mythconverg RE: pvr.mythtv add-on - allan87 - 2014-10-16 Here it is. I am puzzled by the order. Code: +----------+---------+----------+ RE: pvr.mythtv add-on - jrhamilt - 2014-10-16 I'm having trouble getting this build for Kodi 14.0-ALPHA5 on a Windows 8.1 machine... 1) I installed VS 2013 Express, 2) downloaded the mythtv addons from the master branch in zip format from here: https://github.com/janbar/xbmc-pvr-addons 3) extracted the zip 4) downloaded dependencies using the bat file 5) opened solution in VS However, when I try to build, it gives me a ton of these build errors: C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(882): fatal error C1083: Cannot open include file: 'qos.h': No such file or directory I've done some pretty exhaustive searches to try to resolve the issue, but I really can't find anything applicable. Any clues on what I need to do to get this to work? RE: pvr.mythtv add-on - MikeB2013 - 2014-10-16 (2014-10-16, 14:15)jrhamilt Wrote: I'm having trouble getting this build for Kodi 14.0-ALPHA5 on a Windows 8.1 machine... Which version of Visual Studio Express 2013 did you install ? I am using Windows Desktop version (don't know if it makes any difference) and the pvr.mythtv addon builds ok. Note the pvr.mythtv addon needs updating, Kodi /XBMC changed addon API version a few days ago so the latest ALPHA5 builds are not compatible. ALPHA 5 Git 20141007- e0db1d8 works ok. Mike RE: pvr.mythtv add-on - rbuehlma - 2014-10-16 Hi Janbar, I have another problem with the new plugin but only on two channels of the same broadcaster (SRF 1 & 2). Every few seconds (1-5) I get a corrupt image or sound. In the log, I see always the same error from the demuxer: AddOnLog: MythTV PVR Client: [DEMUX] Process: error -3 and some debug log: http://xbmclogs.com/show.php?id=320425 This only happens if "Enable MPEG TS-Demuxer" is enabled and does only happen if I watch the stream live. If I afterwards watch the same stream from the recordings, it works perfectly. My live stream comes from a DVB-C adapter. Thanks anyway RE: pvr.mythtv add-on - janbar - 2014-10-16 (2014-10-16, 19:52)Natronch Wrote: Hi Janbar, There is an error during parsing of the stream. Please could you post a sample of the stream or all the stream for analyzing. Thanks. (2014-10-16, 17:55)MikeB2013 Wrote:(2014-10-16, 14:15)jrhamilt Wrote: I'm having trouble getting this build for Kodi 14.0-ALPHA5 on a Windows 8.1 machine... Weird. I sugger to generate only pvr.mythtv. Also i never bold all the solution ! Like Mike i use Windows Desktop only. And as Mike said we wait the merge for the GUI version update. So for now it is usable with ALPHA 5 Git 20141007- e0db1d8. EDIT: I merged the update for GUI version. Master branch is uptodate. (2014-10-16, 03:30)allan87 Wrote: Here it is. I am puzzled by the order. So Allan normally you had all those channels in your epg screen. Is it true ? To order by channum: Code: select distinct channel.sourceid, channel.channum, channel.callsign from program join channel on channel.chanid=program.chanid where starttime > now() and starttime < now() + interval 1 day order by channum; RE: pvr.mythtv add-on - rbuehlma - 2014-10-17 Here we go: https://www.wetransfer.com/downloads/1cfd2463f5ca4df09ffe9b3a5726598120141016220603/3a6fdf3e4430871b7d2837793bbaef7720141016220603/ff6235 This is the raw file as stored by mythtv. RE: pvr.mythtv add-on - janbar - 2014-10-17 (2014-10-17, 00:10)Natronch Wrote: Here we go:Many thanks ! RE: pvr.mythtv add-on - allan87 - 2014-10-17 (2014-10-16, 23:59)janbar Wrote: So Allan normally you had all those channels in your epg screen. Is it true ?No. I have never, with either myth or cmyth, had all of these channels on my XBMC EPG: • If a channel is not multiplexed into several channels( i.e 4-1, 5-1, 7-1, etc) it does appear in the XBMC EPG; • If a channel is multiplexed into several channels (like 2-1,2-2, 2-3) only one of the multiplexed subchannels appears in the XBMC EPG. Please see chart below: Code: +----------+---------+----------+ All of the channels have, however, always appeared in the XBMC Channel List (as opposed to the EPG), but only displaying the atsc_major_chan. RE: pvr.mythtv add-on - nickr - 2014-10-17 This subchannel issue is because the channels are stored as an integer I think. There is a related thread here it would seem: http://forum.xbmc.org/showthread.php?tid=157487 RE: pvr.mythtv add-on - janbar - 2014-10-17 (2014-10-17, 00:30)janbar Wrote:(2014-10-17, 00:10)Natronch Wrote: Here we go:Many thanks ! Fixed. I pushed the commit for master and gotham branches. Tomorrow ubuntu-ppa will be up to date. Thanks |