Release Netflix Add-on [input-stream] - 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 Netflix Add-on [input-stream] (/showthread.php?tid=329767) 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
RE: Netflix Add-on [input-stream] - shaktoo - 2022-01-16 Sorry , had a silly self error , Igonre Plz RE: Netflix Add-on [input-stream] - Xe-no - 2022-01-18 Is there a way to change the language that is Kodi using to add Movies and Series to the library from this Netflix addon? Is there maybe a bug? It kinda looks like that its not respecting the setting for my language. Amazon, etc works fine. RPI4 Libreelec 11 Addon latest version Regards Xe-no RE: Netflix Add-on [input-stream] - CastagnaIT - 2022-01-19 (2022-01-15, 13:10)leonvent Wrote: Netflix use avchigh code with low bitrate on most platforms, including this add-on with shield tv. Is there a way to get AVC code ? In most content, AVC code has higher bitrate on Netflix. AVC is H.264 and is the default old video codec, if supported is preferible always enable VP9 and/or HEVC codec the reason is that an AVC stream to achieve the same video quality of VP9/HEVC require more bitrate the higher bitrate in a AVC stream not means better images, means that AVC has worse video compression if instead you want choose a stream with lower bitrate instead higher bitrate, then you have to change bitrate settings in InputStream Adaptive addon but remember that this will affect all addons that use this component RE: Netflix Add-on [input-stream] - CastagnaIT - 2022-01-19 (2022-01-18, 21:00)Xe-no Wrote: Is there a way to change the language that is Kodi using to add Movies and Series to the library from this Netflix addon?Depends on your Kodi audio language setting Kodi audio setting <---------> Netflix addon meaning Media default == will be used the language set in the current netflix profile selected Original language == will be selected the original movie language of the played movie User interface language == depends on the GUI language set any other language name == respect the language set or if missing fallback to the original movie language RE: Netflix Add-on [input-stream] - TwistedD - 2022-01-25 Just in case anyone else was having this particular issue I wanted to post something about it. I've been racking my brain trying to get it to work when it seemed like everyone else's installs were fine again. I know there was an issue with 24p not working on ARM devices, the Pi4 in my case. I tried everything, changed LibreELEC versions, tried different versions of the addon, change the MSL manifest version, etc. But in the end what did it was setting Kodi's default resolution to 1080p, then 24p started working again. I usually keep it at my TV's native res of 768p, but for whatever reason with the addon that was keeping it from switching to 1080p/24 like it usually would. The playback of everything else seemed fine. But everything works now. So at least in my case LibreELEC 10.0.1 and the current Netflix addon work perfectly (1080p 24hz playback) as long as my Pi4's resolution is set to 1080p by default. [Solved] NF Search error - redstorm - 2022-01-27 Plugin works great, but im stuck on a S905 tv box with Leia. The only thing that does not work is Search the following error in the Kodi.log Plugin version v.1.12.8-Leia kodi.log [Update - Solved] As the error is complaining about no search table I looked into the plugin files and extracted the create search table query. CREATE TABLE search (ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,Guid TEXT NOT NULL REFERENCES profiles (Guid) ON DELETE CASCADE ON UPDATE CASCADE,Type TEXT NOT NULL,Value TEXT NOT NULL,Parameters TEXT,LastAccess TEXT); The sqlite3 databases are located in the /.kodi/userdata/addon_data/plugin.video.netflix/database folder ssh into the box using sqlite3 .open nf_local.sqlite3 Create the search table .open nf_shared.sqlite3 create the search table. After creating the missing search table search now works. I initially only created the table in the shared database file but it did not fix the issue so created it in the local db as well and then it worked. .table if you want to check what tables are present in the file. RE: Netflix Add-on [input-stream] - QianyuLi - 2022-01-27 (2022-01-19, 18:21)CastagnaIT Wrote: AVC is H.264 and is the default old video codec,What he meant was that he wanted Netflix Add-On to provide similar functionality to that of this Microsoft Edge plugin. That is, to force Netflix to provide AVC Main encoded video streams instead of AVC High video streams. And it seems that VP9 video streaming can be disabled by turning off VP9 within the Expert settings? I don't know, I'm not aware of Netflix offering VP9 video streaming. Perhaps this edge browser plugin fork currently forces AVC Main video streaming to play properly. I cannot determine the video quality of Netflix AVC Main and AVC High. There are some users who claim that AVC Main has higher picture quality. Of course I think the more advanced video encoding will win out over time. Also have you continued to follow Netflix AV1 lately? Of course I know it requires DASH CBCS support and ISA doesn't support it yet. RE: Netflix Add-on [input-stream] - jgoodwi3232 - 2022-01-31 Hey, so the addon was working fine up until yesterday. I am now receiving MSL Error when I try to play something. I went through all the steps with no success. I am using this on Kodi 18.7 Leia on a RetroPie. I included the section of the log that has the error: https://pastebin.com/FDL8H94T RE: Netflix Add-on [input-stream] - jawilljr - 2022-01-31 (2022-01-31, 19:03)jgoodwi3232 Wrote: Hey, so the addon was working fine up until yesterday. I am now receiving MSL Error when I try to play something. I went through all the steps with no success. I am using this on Kodi 18.7 Leia on a RetroPie. I included the section of the log that has the error:I was getting the same error last week. To fix it I went into the addon settings->Expert and changed "MSL Manifest Version" from "Version 1" to "default". Click OK. RE: Netflix Add-on [input-stream] - valdo lopes - 2022-02-01 Kodi 18 has no option to change MSL Manifest Version in addon configuration Netflix RE: Netflix Add-on [input-stream] - jgoodwi3232 - 2022-02-01 Unfortunately, I also don’t see this option in the settings. I’m still running into this error even after uninstalling, updating widevine, and logging out/in. RE: Netflix Add-on [input-stream] - Paco8 - 2022-02-02 Those with the MSL error with Kodi 18, try replacing the file resources/lib/services/msl/msl_handler.py with this new one: https://github.com/Paco8/plugin.video.netflix/raw/c99e90667c766730a1e4344bbc3d87b76bc332f1/resources/lib/services/msl/msl_handler.py At least this fixed the problem for me. It only changes two lines:
RE: Netflix Add-on [input-stream] - CastagnaIT - 2022-02-02 On Kodi 18 there is no "MSL Manifest Version" setting, because already use the old version 1 due to the recent netfx changes there are several problem in order to fix in appropriate way "This title is not available to watch instantly." error that affect also the Kodi 19/20 addon version, this require also changes on Kodi components ATM i cannot test but if really the version 1 not work anymore, then on Kodi 18 it will be mandatory to upgrade to version 2, which will not be possible to implement properly due to old Kodi components, therefore will no longer be possible to achieve HD resolutions at least for ARM DEVICES like RPI, i do not know what will happens on other systems there is a lot of work to do, ATM i do not have time perhaps next week or later RE: Netflix Add-on [input-stream] - Paco8 - 2022-02-02 Update: it seems the problem can be fixed just changing the viewableId line. I guess in this case we're still using version 1.
RE: Netflix Add-on [input-stream] - YeahWhatever - 2022-02-02 (2022-02-02, 13:09)Paco8 Wrote: Update: it seems the problem can be fixed just changing the viewableId line. I can confirm this works. You do need to reboot your system, or maybe just restart Kodi, for it to take effect though. |