Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52) +---- Thread: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server (/showthread.php?tid=231955) 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - TimoJ - 2018-09-01 (2018-08-09, 11:08)Dr.Feelgood Wrote: Hi,Did you install "ubuntu-18.04.1-live-server-amd64.iso" version or the one with older (alternate) installation method? I first tried to install that version, since that is the one that Ubuntu now has set as a default download. But it had weird problems with disk partitioning and installation failed at the beginning. I then downloaded "alternate" version (without the "live" word) and had no problems and it also installed all components without any modifications to the repositories list. I downloaded it from here: http://cdimage.ubuntu.com/releases/18.04.1/release/ RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - PKOneTwo - 2018-09-19 @fritsch : read a lot of this thread and also some of OE forum posts as well as some LE forum posts: my Graphic: Intel Ivy Bridge GPU. My TV: LG 42LN5758 (seems to be capable of both Limited and Full RGB Input) xrandr --verbose says: Full my xorg-i915.conf (from etc/X11): Quote:Section "Device" my xorg.conf (from config): Quote:Section "Device" So am i right to assume, that
I hope you can help me out :-) RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2018-09-19 Only three combinations make sense: 1.) TV Limited Range -> Xrandr Full Range -> Kodi Use Limited <- what this howto suggests 2.) TV Full -> Xrandr Full -> Kodi DON'T use Limited + Dithering Enabled <- alternative if you look at pictures very often (3.) TV Limited -> Xrandr "Limited 16:235" -> Kodi DON'T use Limited) <- in brackets, cause here we scale up and the driver scales down Buffering: - If TripleBuffer is disable, you choose 2 Buffers - If TripleBuffer is enabled, you choose 3 Buffers DRI3 is suggested as it cleans up a lot of legacy DRI code. You can see the effect in kodi GUI. With DRI3 it's measurable more fluent. AccelMethod with the intel driver should be SNA by default in the meantime. Composite documentation: ftp://www.x.org/pub/X11R7.7-RC1/doc/man/man5/xorg.conf.5.xhtml keep it disabled LE make most of above things automatic for you (your TV obviously not). RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - PKOneTwo - 2018-09-19
Quote:Section "Device" RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2018-09-19 1) Yes 2) This answers your tearfree question RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - PKOneTwo - 2018-09-19 Although they say (https://wiki.archlinux.org/index.php/intel_graphics) to use TearFree when sna Acclemeration is on. And Another says disabled (https://forum.ubuntuusers.de/topic/tearing-bei-intel-bzw-tearfree-in-die-xorg-con/). As far as i understand the second link: Tearfree is not Vsync but works well with double buffering. Why was ist disabled in Kodi? I'm looking to find the configuration (for getting most our of my hardware; talking about video quality). I don't think it has anything to do with the VAAPI, but i mention it anyway: the "Adjust Display Resfresh-Rate" is broken (at least on newest LE Milhouse Build, Mesa 18.2.0) RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2018-09-19 Tearfree: won't work with only DoubleBuffers. So enabling it will enable TripleBuffers therefore -> not the best for kodi. What they are writing does not matter in regard to kodi. For the desktop turn everything on you find :-) (Edit: Especially if you need to workaround a broken compositor) It's not broken. You just have to add resolutions to the Whitelist (a new v18 feature). RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - PKOneTwo - 2018-09-20 Thank you. Didn't see that at first RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - tutu - 2018-09-29 The download link on the first post is no longer working - is this correct? http://releases.ubuntu.com/18.04.1/ubuntu-18.04.1-live-server-amd64.iso RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - Klojum - 2018-09-29 (2018-09-29, 13:16)tutu Wrote: The download link on the first post is no longer working - is this correct?It's working here, starting a download. RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - tutu - 2018-09-29 It's now cosmic-server. Has anyone tried a build with this? Should I use current? http://cdimage.ubuntu.com/ubuntu-server/bionic/daily/current/bionic-server-amd64.iso OR: http://cdimage.ubuntu.com/releases/18.04.1/release/ubuntu-18.04.1-server-amd64.iso This is the link in the first post: http://cdimage.ubuntu.com/ubuntu-server/daily/current/bionic-server-amd64.iso Quote:Not Found RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2018-09-29 http://cdimage.ubuntu.com/releases/18.04.1/release/ubuntu-18.04.1-server-amd64.iso <- yes, that one, please - will change it. I did not test cosmic at all yet, so you would be on your own :-) RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - tutu - 2018-09-29 (2018-09-29, 15:03)fritsch Wrote: http://cdimage.ubuntu.com/releases/18.04.1/release/ubuntu-18.04.1-server-amd64.iso <- yes, that one, please - will change it.Worked for me, up and running with my NUC again thanks RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2018-09-29 You have it running on cosmic? Could you give me the logfiles from first post? (just curious which stack they ship) Please! RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - tutu - 2018-09-29 (2018-09-29, 16:48)fritsch Wrote: You have it running on cosmic?Sorry no running 18.04! |