Release YouTube - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154) +---- Thread: Release YouTube (/showthread.php?tid=356934) 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
RE: YouTube - pgordash - 2020-11-26 So it looks like you can still pull a list of subscriptions from the API. Why can't you iterate through the subscribed channels and compile a list of videos? This would generate the same info as the "my subscriptions". RE: YouTube - kurai - 2020-11-26 (2020-11-26, 22:58)pgordash Wrote: So it looks like you can still pull a list of subscriptions from the API. Why can't you iterate through the subscribed channels and compile a list of videos? This would generate the same info as the "my subscriptions".Because each step incurs a "cost" for every API access, and there's is a fixed upper limit on the total quota of API `points` for a given period of time. Doing it alternate ways is certainly *possible* but very inefficient, from a programming and also API quota point of view. RE: YouTube - C.O.D. - 2020-11-26 My beloved app 'NewPipe' is still working - maybe they can join forces? RE: YouTube - dobbelina - 2020-11-26 (2020-11-26, 23:03)kurai Wrote:Going through the subscribed channels manually would mean more API calls...(2020-11-26, 22:58)pgordash Wrote: So it looks like you can still pull a list of subscriptions from the API. Why can't you iterate through the subscribed channels and compile a list of videos? This would generate the same info as the "my subscriptions".Because each step incurs a "cost" for every API access, and there's is a fixed upper limit on the total quota of API `points` for a given period of time. RE: YouTube - iceman20k - 2020-11-26 (2020-11-26, 22:58)pgordash Wrote: So it looks like you can still pull a list of subscriptions from the API. Why can't you iterate through the subscribed channels and compile a list of videos? This would generate the same info as the "my subscriptions". That might be the solution, someone already implemented that using Python. See datails here: https://stackoverflow.com/a/23620166/646215 Concerning the API calls, let me quote: Quote:If you have 100 subscriptions and fetch 5 videos from each channel this will result in 114 API requests and use around 500 quota units (the daily limit is 50 million units). It will also take about 2 minutes to run if you don't parallelize the API calls. RE: YouTube - xenophrenia - 2020-11-26 so if YouTube pulled this list because it "wasn't useful" ... why do they still have the option on their page? ;-) hopefully you guys can figure something out soon - cuz this is how I use this addon the most and it's aggravating that huge platforms deem small fry like this (no offense intended) not worth their effort ... how much effort would they need to extend by keeping this or would it be just when there's a conflict that it would be noticed and cause problems for them? thanks for the work you put into it ... RE: YouTube - iceman20k - 2020-11-26 News from the developer(anxdpanic) on Github: Quote:The return values for this API have changed, and don't provide the necessary information anymore. Since it is undocumented, discontinued, and no longer accessible from a public interface; it is unlikely I'll be able to resolve this. Will look into it further.Doesn't look good ;( At least not for a quick solution... RE: YouTube - anxdpanic - 2020-11-27 Thanks to everyone helping to relay and explain the issue, I wasn't able to keep up to both github and the forum all day. For the record, they didn't remove something from the Data API, which is used by the rest of the add-on. The My Subscriptions, Saved Playlists and Purchases, used youtube.com/tv which was discontinued last year, and appears the API is just starting to go offline now as well. (maybe temporarily, I have no way of knowing). There hasn't been access to any of these features or a proper Recommended from the Data API since I started working on the YouTube add-on sadly. For the API quota short comings of some of the 'make shift' workarounds, they might work in a centralized database situation but sadly will not reasonably work in our situation. Will keep looking into, and will have some other news in the near future. RE: YouTube - graham23s - 2020-11-27 Damn i relied on the my subscriptions section too much! hopefully we can get a fix RE: YouTube - ExGemini - 2020-11-27 It's a bummer. The "My Subscription" tab is the most useful thing both in the web based youtube and the addon. RE: YouTube - allmotormark - 2020-11-27 Yes, basically I only use “my subscriptions”. Unfortunate, I hope this can be rectified. RE: YouTube - Wanderlei - 2020-11-27 (2020-11-26, 22:58)kurai Wrote: I'm having a hard time understanding why Youtube got rid of this feature. I cannot understand their logic or reasoning either. My guess was something similar, they dont want us deciding what we watch, they want to decide what we watch and control us via their algorithm. Even searching for things has become much harder on youtube in recent years, much like google. The results are what they want to push not what I am seeking. Completely sanitized of anything they deem unfit. RE: YouTube - Nervosa - 2020-11-27 (2020-11-26, 16:35)Wanderlei Wrote: Its insane they remove key feature. Of all the feeds to pull they choose the main one most people would use. Youtube did make this add-on, viewing sub videos still works on the official apps and website. They're probably aware of things like this allowing people to watch videos without adds and not very fond of it so they just crippled what is available to developers. RE: YouTube - HYPERIONzoom - 2020-11-27 This API change has made the YT addon completely useless to me. Here's hoping a workaround can be found to fix it soon. RE: YouTube - klendool - 2020-11-27 At this point, it might be easier to webscrape the youtube subscription pages lol |