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-17 (2014-10-17, 01:21)nickr Wrote: 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 YES, very good remark. I will check that. 99% of chance channum is cast to integer because it should contains a number !!! So 17_1 and 17_2 become 17. RE: pvr.mythtv add-on - janbar - 2014-10-17 (2014-10-17, 01:14)allan87 Wrote:(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: Is it backend create those channum ? ( i mean this format xxx_y ) RE: pvr.mythtv add-on - allan87 - 2014-10-17 (2014-10-17, 02:21)janbar Wrote: Is it backend create those channum ? ( i mean this format xxx_y )I'm not sure what you are asking. The output (in format "xxx_y " is from a sql query on the backend. The channels display the same way in mythweb and in the channel editor in mythbackend. Here's what MythWeb looks like: RE: pvr.mythtv add-on - jrhamilt - 2014-10-17 (2014-10-16, 17:55)MikeB2013 Wrote: Which version of Visual Studio Express 2013 did you install ? Microsoft Visual Studio Express 2013 for Windows Version 12.0.30723.00 Update 3 Microsoft .NET Framework Version 4.5.51641 Visual C++ 2013 (among others...) (2014-10-16, 23:59)janbar Wrote:(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... In generating only pvr.mythtv, I still get the issue. I guess I'll try to find the "Windows Desktop Only" version... Edit: Found the "Windows Desktop" version. Uninstalling full "Windows" version. Installing "Windows Desktop" version. Will advise. Edit 2: Yup - that worked. Thanks guys! RE: pvr.mythtv add-on - janbar - 2014-10-17 (2014-10-17, 04:25)allan87 Wrote:Switching off "using backend number" is fix the number of channels in epg screen ?(2014-10-17, 02:21)janbar Wrote: Is it backend create those channum ? ( i mean this format xxx_y )I'm not sure what you are asking. The output (in format "xxx_y " is from a sql query on the backend. The channels display the same way in mythweb and in the channel editor in mythbackend. RE: pvr.mythtv add-on - allan87 - 2014-10-17 Yes. If you switch off "using backend number", all of the channels are shown in the epg screen. RE: pvr.mythtv add-on - janbar - 2014-10-18 (2014-10-17, 14:04)allan87 Wrote: Yes. If you switch off "using backend number", all of the channels are shown in the epg screen. So as nickr said, the root cause is backend channel number are not as integer number. Here they contain alpha-numeric characters breaking the cast to the XBMC channel number. Since Helix the subChannel number exists and could be help to resolve this case. But now for Gotham the only way is to miss the separator "_" or "." assuming all channels use ATSC number. If not we will have always conflict between ATSC channel (2_1) and others (21). RE: pvr.mythtv add-on - janbar - 2014-10-18 (2014-10-18, 12:00)janbar Wrote:(2014-10-17, 14:04)allan87 Wrote: Yes. If you switch off "using backend number", all of the channels are shown in the epg screen. I pushed a commit to concat major and minor parts for Gotham: 2_1 => 21 or 2.3 => 23 I pushed a commit to transfer sub channel number for Helix: 2_1 => 2.1 or 2.3 => 2.3 RE: pvr.mythtv add-on - rbuehlma - 2014-10-18 (2014-10-17, 01:51)janbar Wrote:(2014-10-17, 00:30)janbar Wrote:(2014-10-17, 00:10)Natronch Wrote: Here we go:Many thanks ! Perfect, it is fixed for me Thank you very much. Now the only issue I have left, is the one with the encoding. I will dig into that when I have time to. RE: pvr.mythtv add-on - allan87 - 2014-10-18 (2014-10-18, 12:00)janbar Wrote:I am not sure if that is 100% correct. As I indicated, the channel list does show all of the channels. I will send you a screenshot later so you can see what I mean. Perhaps the channel list, as opposed to the EPG, just truncates and does not merge the channel numbers.(2014-10-17, 14:04)allan87 Wrote: Yes. If you switch off "using backend number", all of the channels are shown in the epg screen. Quote:Since Helix the subChannel number exists and could be help to resolve this case. But now for Gotham the only way is to miss the separator "_" or "." assuming all channels use ATSC number. If not we will have always conflict between ATSC channel (2_1) and others (21).that may be a problem. I think there is still some ntsc analog broadcasting in the U.S. , so you might still have places where there are conflicting numbers (like 2_1 and 21 as you described below.) (2014-10-18, 14:33)janbar Wrote:wow! I look forward to testing. Thanks!(2014-10-18, 12:00)janbar Wrote:(2014-10-17, 14:04)allan87 Wrote: Yes. If you switch off "using backend number", all of the channels are shown in the epg screen. RE: pvr.mythtv add-on - janbar - 2014-10-19 @allan87 Quote:that may be a problem. I think there is still some ntsc analog broadcasting in the U.S. , so you might still have places where there are conflicting numbers (like 2_1 and 21 as you described below.) For those cases, unlucky users have to switch off "Using backend channel numbers", or migrate to Helix which handles sub-channel numbers. RE: pvr.mythtv add-on - allan87 - 2014-10-19 (2014-10-18, 21:58)allan87 Wrote:Here is what the channel list looks like with multiplexed channels. NB, this is not with the new sub channel commit re: the EPG - this is how Gotham and Helix have been working throughout. The first three channels are actually 2-1, 2-2 and 2-3.(2014-10-18, 12:00)janbar Wrote: So as nickr said, the root cause is backend channel number are not as integer number. Here they contain alpha-numeric characters breaking the cast to the XBMC channel number.I am not sure if that is 100% correct. As I indicated, the channel list does show all of the channels. I will send you a screenshot later so you can see what I mean. Perhaps the channel list, as opposed to the EPG, just truncates and does not merge the channel numbers. I will be trying out pvr.mythtv 1.9.23 tonight, and will post results. Thanks again. RE: pvr.mythtv add-on - allan87 - 2014-10-20 Major progress on atsc channel display! Tested pvr.mythtv 1.9.23: The full channel number ##.# now displays in the EPG as well as the Channel List. However, the multiplexed channels that were missing before are still missing in the EPG. Channel list is perfect. RE: pvr.mythtv add-on - HappyMan - 2014-10-20 (2014-10-03, 21:13)janbar Wrote:(2014-09-24, 22:43)HappyMan Wrote: Just curious, are these fixes included in the latest Helix build? ARM (android). I installed the cross compilers, but I ran into an issue during the build (my build environment, I'm sure). RE: pvr.mythtv add-on - allan87 - 2014-10-21 Bonjour, janbar. Re: missing channels in EPG. Please see image below. As you can see, the subchannel numbers are now displayed, but the EPG is still missing channels. While the channel list (on the left) shows all of the channels, including channels 2.1, 2.2 and 2.3, the EPG (on the right) omits 2.2 and 2.3. This is with pvr.mythtv 1.9.23. |