Kodi Community Forum
Arctic: Zephyr - Reloaded - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Arctic: Zephyr - Reloaded (/showthread.php?tid=337862)

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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418


RE: Arctic: Zephyr - Reloaded - kofelf - 2022-01-31

Answering myself, made a hack to plexkodiconnect to make that work:

https://github.com/croneter/PlexKodiConnect/issues/1783


RE: Arctic: Zephyr - Reloaded - zer0- - 2022-01-31

When selecting between multiple versions of a movie the "Select Media Source" screen comes up. Is it possible to customize or change this screen at all? I would like to have more information such as resolution, length, etc.


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2022-01-31

(2022-01-31, 18:47)zer0- Wrote: When selecting between multiple versions of a movie the "Select Media Source" screen comes up. Is it possible to customize or change this screen at all? I would like to have more information such as resolution, length, etc.

Sorry, I forgot to answer your previous post.
Many things are possible. However, I myself have never been in the situation to choose a movie version. In which case you have to?


RE: Arctic: Zephyr - Reloaded - andmc - 2022-01-31

is there anyway to get atmos and hdr media logos into tv series?


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2022-01-31

(2022-01-31, 21:20)andmc Wrote: is there anyway to get atmos and hdr media logos into tv series?

Skin is looking for the following matches in filename and path:

xml:
<expression name="IsAudioCodecATMOS">
String.Contains(ListItem.FileNameAndPath,.atmos.) | String.Contains(ListItem.FileNameAndPath,.atmos-) | String.Contains(ListItem.FileNameAndPath,dolby atmos) | String.Contains(ListItem.FileNameAndPath,dolby-atmos)
| [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,.atmos.) | String.Contains(Player.FileNameAndPath,.atmos-) | String.Contains(Player.FileNameAndPath,dolby atmos) | String.Contains(Player.FileNameAndPath,dolby-atmos)]]
</expression>
<expression name="IsAudioCodecDTSX">
String.Contains(ListItem.FileNameAndPath,.dts-x.) | String.Contains(ListItem.FileNameAndPath,.dts.x.) | String.Contains(ListItem.FileNameAndPath,.dtsx.) | String.Contains(ListItem.FileNameAndPath,.dts-x-) | String.Contains(ListItem.FileNameAndPath,.dts.x-) | String.Contains(ListItem.FileNameAndPath,.dtsx-)
| [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,.dts-x.) | String.Contains(Player.FileNameAndPath,.dts.x.) | String.Contains(Player.FileNameAndPath,.dtsx.) | String.Contains(Player.FileNameAndPath,.dts-x-) | String.Contains(Player.FileNameAndPath,.dts.x-) | String.Contains(Player.FileNameAndPath,.dtsx-)]]
</expression>
<expression name="IsVideoHDR10Plus">
String.Contains(ListItem.FileNameAndPath,.hdr10plus.)
| [VideoPlayer.IsFullscreen + String.Contains(Player.FileNameAndPath,.hdr10plus.)]
</expression>
<expression name="IsVideoHDR10">
String.Contains(ListItem.FileNameAndPath,.hdr10.)
| [VideoPlayer.IsFullscreen + String.Contains(Player.FileNameAndPath,.hdr10.)]
</expression>
<expression name="IsVideoHDR">
String.Contains(ListItem.FileNameAndPath,.hdr.)
| [VideoPlayer.IsFullscreen + String.Contains(Player.FileNameAndPath,.hdr.)]
</expression>
<expression name="IsVideoHLG">
String.Contains(ListItem.FileNameAndPath,.hlg.)
| [VideoPlayer.IsFullscreen + String.Contains(Player.FileNameAndPath,.hlg.)]
</expression>
<expression name="IsVideoDolbyVision">
String.Contains(ListItem.FileNameAndPath,.dv.) | String.Contains(ListItem.FileNameAndPath,dolbyvision) | String.Contains(ListItem.FileNameAndPath,dolby-vision) | String.Contains(ListItem.FileNameAndPath,dolby vision)
| [VideoPlayer.IsFullscreen + [String.Contains(Player.FileNameAndPath,.dv.) | String.Contains(Player.FileNameAndPath,dolbyvision) | String.Contains(Player.FileNameAndPath,dolby-vision) | String.Contains(Player.FileNameAndPath,dolby vision)]]
</expression>



RE: Arctic: Zephyr - Reloaded - andmc - 2022-01-31

thanks for the quick reply


RE: Arctic: Zephyr - Reloaded - JULIANCONTRERAS - 2022-02-01

Hello. After trying several skins I have decided on this one, since I love its visualization. In the navigation through the widgets in the movies, it does not show the duration and other data, but it does show the plot. In the dropdown menu it does show in Fanart with the actors etc. How can the duration, classification... be displayed? Thanks.


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2022-02-01

(2022-02-01, 15:21)JULIANCONTRERAS Wrote: Hello. After trying several skins I have decided on this one, since I love its visualization. In the navigation through the widgets in the movies, it does not show the duration and other data, but it does show the plot. In the dropdown menu it does show in Fanart with the actors etc. How can the duration, classification... be displayed? Thanks.

The information you get, depends on the home menu viewtype, the data, that is scraped, or provided through the addon, you use. Do you have screenshots of what you mean?


RE: Arctic: Zephyr - Reloaded - JULIANCONTRERAS - 2022-02-01

Thanks. The image that I put is from the internet. In my case it doesn't show the duration on the right. And neither the data that appears under the cover: HD, classification, type of video, type of sound.
Image


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2022-02-01

In your previous post you said you were using widgets. But the image you provided shows a library view. Please provide screenshots/photos of your Kodi installation so I can see which view you mean. Otherwise I can't help you. Thanks.


RE: Arctic: Zephyr - Reloaded - JULIANCONTRERAS - 2022-02-01

Sorry... the same thing happens to me in widgets and de library view. In red circle what does not show me.
Image


RE: Arctic: Zephyr - Reloaded - Baubas - 2022-02-02

(2022-02-01, 18:20)JULIANCONTRERAS Wrote: Sorry... the same thing happens to me in widgets and de library view. In red circle what does not show me.
Image

What are your skin settings? What you have circled shows in my skin but I don't want it to. I have tried everything to remove it.


RE: Arctic: Zephyr - Reloaded - snyft - 2022-02-02

What does script.skin.info.service do for this skin? I keep getting errors when having it installed hm.


RE: Arctic: Zephyr - Reloaded - beatmasterrs - 2022-02-02

(2022-02-02, 17:12)snyft Wrote: What does script.skin.info.service do for this skin? I keep getting errors when having it installed hm.

It's used as fallback in some label controls.


RE: Arctic: Zephyr - Reloaded - webpostkastl - 2022-02-02

Hi everyone! I really need some help on this, maybe you can point me in the right direction:

1. Thumbnail View (View_500_Thumbnails.xml): how can I disable scrolling of video titles / file names?
2. VideoInfo View (Includes_DialogVideoInfo.xml): I'd like to replace the audiolanguage and subtitlelanguage flag icons with plain text. how can I achieve that? I tried some changes in Includes_DialogVideoInfo.xml - like instead of the image control type a label control type, but I'm not getting it right

original:
Code:

 <control type="image"> 
 <top>20</top>
<width>28</width>
 <aligny>center</aligny>
<height>28</height>
<texture>$INFO[ListItem.Property(SubtitleLanguage.1),flags/lang/,.png]</texture>
<visible>!String.IsEmpty(ListItem.Property(SubtitleLanguage.1))</visible>
</control>

my attempt:
Code:

<control type="label>
<font>Tiny</font>
<textcolor>Dark2</textcolor>
<label>$INFO[ListItem.Property(SubtitleLanguage.1)]$INFO[ListItem.Property(SubtitleLanguage.2), / ]$INFO[ListItem.Property(SubtitleLanguage.3), / ]$INFO[ListItem.Property(SubtitleLanguage.4), / ]$INFO[ListItem.Property(SubtitleLanguage.5), / ]$INFO[ListItem.Property(SubtitleLanguage.6), / ]$INFO[ListItem.Property(SubtitleLanguage.7), / ]$INFO[ListItem.Property(SubtitleLanguage.8), / ]$INFO[ListItem.Property(SubtitleLanguage.9), / ]$INFO[ListItem.Property(SubtitleLanguage.10), / ]</label>
<aligny>center</aligny>
<visible>!String.IsEmpty(ListItem.Property(AudioLanguage.1)</visible>
</control>

if someone could help me out I'd really appreaciate it