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 - FernetMenta - 2019-02-21 You need this patch: https://github.com/FernetMenta/FFmpeg/commit/10368d74b94fcdcc85ba6ce9b276e936bb8c431c RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - M4tt0 - 2019-02-21 @FernetMenta RETIRED I don't like it whatsoever. You are too young for that, by far!!!! Really? RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - uke75 - 2019-02-23 (2019-02-21, 14:45)FernetMenta Wrote: You need this patch: https://github.com/FernetMenta/FFmpeg/commit/10368d74b94fcdcc85ba6ce9b276e936bb8c431cGreat. Any change this patch will be on PPA's? Thanks RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2019-02-23 According to kodi's ffmpeg policy it cannot be included before it was proposed to upstream ffmpeg. FFMpeg's mailinglist approach is quite motivating you know :-) RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - Jan0sh - 2019-03-03 Hi! I recently discovered an issue with new kodi stable and DPMS: with using provided autostart file : (2015-07-12, 20:06)fritsch Wrote: DPMS was not disabled, so DPMS kicked in even when playing music over HDMI. I had to explicitly set DISPLAY=:0 befor the xset -dpms call. With this DPMS is disabled after kodi service is started, and now kodi handles setting display to sleep like configured RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - rmatias - 2019-03-08 Thank you for the great tutorial!! I decided to start a new/clean install and so far so good. However I have one problem which I don't know how to solve: my TV makes a lot of overscan, so I need to correct it using "Video calibration..." under display settings. However, the values I configure are always forgotten on next kodi reboot. I tried to adapt "/home/kodi/.config/openbox/autostart" using a modified xrandr command with --transform option, and the overscan was solved, however the result was that I got lots of visible artifacts when playing videos (ex: https://photos.app.goo.gl/msFCUwHgGsCyHeh7A). The same videos, without the "xrandr --transform" and proper "Video calibration" play ok. So, what should I do in order to keep "Video calibration" values between reboots? Thank you in advance https://paste.kodi.tv/ukedatozak http://paste.ubuntu.com/p/vRh36QrTnD/ http://paste.ubuntu.com/p/h2ZpGx8FSm/ http://paste.ubuntu.com/p/7KPtP4w7yt/ http://paste.ubuntu.com/p/rnjb8mDbjk/ https://pastebin.com/AWmx2J0x https://pastebin.com/rMhZteY0 RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2019-03-08 Should be fixed in git already: https://github.com/xbmc/xbmc/pull/15516 RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - rmatias - 2019-03-08 I found other threads describing the same issue, which seems will be corrected in Kodi 18.2 BR RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - rmatias - 2019-03-09 (2019-03-08, 18:58)fritsch Wrote: Should be fixed in git already: https://github.com/xbmc/xbmc/pull/15516 Thank you. Yes it's working using latest nightly. BR RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - fritsch - 2019-03-10 (2019-02-23, 11:51)uke75 Wrote:(2019-02-21, 14:45)FernetMenta Wrote: You need this patch: https://github.com/FernetMenta/FFmpeg/commit/10368d74b94fcdcc85ba6ce9b276e936bb8c431cGreat. Any change this patch will be on PPA's? Will be fixed for 18.2 (hopefully) but at least after: https://github.com/xbmc/xbmc/pull/15713 is merged. RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - uke75 - 2019-03-12 Nice one! I'll try that. Thanks RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - ruudjewee - 2019-03-12 Thanks a lot for this guide. For a long time I still had my kodi system running on an old kodibuntu release which was based on ubuntu 14.04, so I decides it was a good idea to follow this guide to do a complete reinstall. Unfortunately, the video playback is no longer as smooth as it was before. In several 1080p videos I have noticed some stuttering in the video's. I have tried to disable VAAPI, but that seemed to make things worse. I also tried disabling passthough and to toggle some setting such as sync playback to display, but this did not seem to make a difference. Are there any things I can do to make sure the playback is smooth again? dpkg -l |grep mesa http://paste.ubuntu.com/p/XpnVTSrDm2/ DISPLAY=:0 vainfo http://paste.ubuntu.com/p/TJKKmdt36r/ kodi log https://pastebin.com/xiGQ3TX2 dmesg https://pastebin.com/P1h8VumD id http://paste.ubuntu.com/p/YkRznKVbqJ/ amixer http://paste.ubuntu.com/p/yfc4WVhKVW/ cat /var/log/Xorg.0.log https://pastebin.com/RtJSUJVg RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - hal2100 - 2019-03-19 Hello, after waiting quite a while I upgraded from 16.04 to 18.04. Now it seems like my formerly perferctly running system lost the hardware acceleration, although it looks to be correctly intalled, any ideas? EDIT: I fixed the issue by purging and re-installing kodi and removing all auto-installed libraries. Looks like the upgrade created a half-baked situation. RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - Klojum - 2019-03-19 (2019-03-19, 11:39)hal2100 Wrote: cat ~/.kodi/temp/kodi.log | pastebinitPlease remove the banned pulsar repositories and all of its related add-ons/modules/scripts before asking for support here. Our forum rules (wiki) are quite clear on video piracy. RE: Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server - hal2100 - 2019-03-19 The issue was resolved. |