Quantcast
Channel: Kodi Community Forum - All Forums
Viewing all 85241 articles
Browse latest View live

TITANIUM 1.6 - help with addon process

$
0
0
First time building and adding apps to Kodi.  I was able to build Titanium using Kodi default skin.  Very logical.  When I try using Titaniun to install an addon: I am able to add the source but can not find the menu track to install the source from zip.  Process doesn't seem very intuitive.  Where do I go to find Titanium Users Manual (lol)?  Is there a Titanium forum?  I need help from one of you seasoned, patient Titanium Experts.
thanks,slotplate

What causes the TV main menu item to appear/dis-appear?

$
0
0
I am using the Confluence skin. What exactly causes the main menu TV item to appear? I am having trouble with my LibreElec system. It looks like the TvHeadEnd client is starting and connecting to the backend, but no TV menu item is showing up. What line(s) do I look for in the debug log?

Replace fanart images

$
0
0
Anyone know if this is possible?

i've already scanned my entire library and pulled the fan art from a few months back but i'm now wanting to pull the 4k versions. Just rescanning seems to skip over the existing ones as they already exist.

is there any settings to force it?

cheers

Matrix visualization support thread

$
0
0
Kodi 19 will feature a Matrix inspired visualization (source: https://github.com/sarbes/visualization.matrix). It features 8 different presets with varying effects.

The visualization is pretty light weight, resulting in 40 to 50 FPS on a Raspberry Pi 1, depending on the preset. This keeps the power consumption to a minimum on faster systems. There is a performance optimization setting to sacrifice a bit of visual quality to get a small boost.

There are a lot of settings, allowing to alter the visual presentation (like rain speed or color).

Screenshot:
Image

dynamically changing height of list???

$
0
0
I'm trying to adjust the height of a list depending on the type of Season art i want to show, either poster or landscape.

This is what i managed so far:
Originally in this view they did not show any of the season art. So i created two different image controls that will display the Season art or revert to Show art if no Season art is available. Did this for Poster and Landscape. This all works and i can change which image is visible by changing the visible property.

Next thing i tried was to make the correct image appear depending on a variable set by my (Eventually i will try to turn this into a skin setting). Here i already ran into problems Smile

This is the syntax i used to make the variable

    <!-- Variable for choice between Season Landscape or Poster Try to turn this into a skin property later-->
    <variable name="View525SeasonLandscapeOrPoster">
        <!-- <value>poster</value> -->
        <value>landscape</value>
    </variable>

my idea was that whatever i put there as value can be read later by using $VAR[View525SeasonLandscapeOrPoster], like this:


            <!-- Season Landscape -->
            <control type="image">
                <visible>String.Contains($VAR[View525SeasonLandscapeOrPoster],landscape)</visible>
                <left>150</left>
                <width>550</width>
                <height>305</height>
                <bottom>50</bottom>
                <aspectratio aligny="center" align="left">keep</aspectratio>
                <include condition="!String.Contains(Skin.String(SkinHelper.StudioLogos.Path),colo)">videoInfoColorDiffuse</include>
                <texture background="true">$VAR[View525SeasonOrShowLandscape]</texture>
            </control>

But that doesn't seem to work, to get around that i created a label with ID set the visible to false and just set the label to landscape or poster, but that makes the variable obsolete.


            <!-- Hidden Label for Landscape/Poster choice -->
            <control type="label" id="12345">
                <visible>false</visible>
                <left>50</left>
                <width>100</width>
                <height>40</height>
                <bottom>50</bottom>
                <label>poster</label>
            </control>            

changing the visible tag in the image to this made it work as expected:
 

<visible>String.Contains(Control.GetLabel(12345),landscape)</visible>

So now i can change the layout depending on what it type in the "hidden" label

The result looks like this for poster:
Image

And like this for landscape:
Image

So now we are getting to the problem im struggling with. There is much more space when you use the landscape view so i wanted to extend the season list back to 5 rows when using landscape and 4 rows for poster(originally there were 7 rows)

Ive tried to add a condition the the height just like above for making the images visible,  but that didn't work


<height condition="String.Contains(Control.GetLabel(12345),poster)">260</height>
<height condition="String.Contains(Control.GetLabel(12345),landscape)">325</height>

Then i tried a variable again and some includes:


    <!-- Variable for Height of SeListItem   For now i manually set height here-->
    <variable name="SeasonListHeight">
        <value>325</value>
        <value>260</value>
    </variable>
    
    <!-- Height for Poster View -->
    <include name="View525_PosterHeight">
        <height>260</height>
    </include>
        <!-- Height for Landscape View -->
    <include name="View525_LandscapeHeight">
        <height>325</height>
    </include>

And tried to use it like this, but again no luck


<height>$VAR[SeasonListHeight]</height>

<include condition="String.Contains(Control.GetLabel(12345),poster)">View525_PosterHeight</include>
<include condition="String.Contains(Control.GetLabel(12345),landscape)">View525_LandscapeHeight</include>


Nothing of what i tried so far seems to work. Can anybody shed any light on what i might be doing wrong.

Here you can see the layout of part i'm trying to edit:

Image
 
Below is more detail of the list and the height i would like to change:

Image

Sorry for the massively long post but i wanted to give as much info as possible since i'm still very new at all this

File Manager remember last paths after Kodi restart

$
0
0
I would love a feature which makes File Manager remember the last used paths in both panels, even after Kodi have been restarted. This can of course be made optional via a setting, if people prefer the current way of it starting in the "home" path in both panels after restart. I doubt this would be more than a quick update needed for this feature.

If this is possible via a skin or an addon, I'm sorry, but I haven't found anything like this, and if it does, please inform me.

Thanks in advance.

difference between eminence 2.0 and the eminewnce 2.0 mod ?

$
0
0
Hello, someone explains to me the difference between eminence 2.0 and the eminewnce 2.0 mod, which one they recommend, I have an rpi3. Thank you

Video stuttering for 4k/1080p h264 video files on raspi 4 with Kodi

$
0
0
Hello everyone,

I've searched on google this issue for some time and I couldn't find any conclusive results.

So my issue so far:

Each time on raspi4 (regardless of the Kodi settings) when I play a 4k/1080p h264 file (hdd or usb), the video stutters and sometimes just skip frames and audio

I've also installed Kodi on my TV, and played the same files (via usb3) but here, the video would play flawlessly while "buffering" after 4-5 seconds

To be honest, I don't know what to do next and I would appreciate if someone would advise me how to proceed/what to do.

Mu current setup:
- Raspberry 4 using Raspbian Buster
- Kodi (latest version) installed
- HDMI 2.0 cable between the TV and Raspi4
- Memory allocated to GPU: 516 MB

Kodi logfiles:
http://paste.kodi.tv/unegijabay
- http://paste.kodi.tv/eqanacawif


Thank you,
Tydir

Can not use local subtitles if ISO has NO subtitles

$
0
0
I can select an SRT file after starting playback of a DVD ISO file, and it works fine (subtitles display) if the DVD itself has any subtitles defined.

BUT if the DVD has no 'native' subtitles at all, the local subtitles either don't display, or -- at best -- flicker and then disappear completely.

This is with Kodi 18.7.200.

Creating Posters from Text?

$
0
0
Before I reinvent the wheel: does a tool exist that would take a movie title (and, perhaps, other information) and create a properly-dimensioned poster, with the text presented legibly on a colored background, for a video that doesn't have an official one? Ideally (for me), this would be a command-line tool for Linux-like systems that would work in the Mac terminal and Windows WSL, or a cross-platform GUI.

personal skin

$
0
0
I am not sure if this is the place to ask this so feel free to let me know where to post this question if this place is wrong. I have Leia installed on a FireStick. I have a skin on my Mac that I like that I updated to run on Leia so it is not in a repository. How can I get the skin on the FireStick? On the Mac it is easy because I have access to the file structure.

Chapters in flac files

$
0
0
Hello:

My natural language is Spanish.

I have a flac file with many songs. The file contains tags in the format "CHAPTERnnn" indicating the beginning of each song and "CHAPTERnnnNAME" indicating the name of each song. With the VLC media player this information is displayed and you can advance to a specific song as if it were chapters in a vido file. Is there a way to do this with KODI. What I want is to be able to view the names of all the tracks and eventually start playing on a specific one. Thank you very much.

Amazon Fire TV Cube with KODI?

$
0
0
Hi guys

Has anyone on here got an Amazon Fire TV Cube and use KODI 18.7 on it with no issues?

I still have my Fire TV Box 2nd generation, but want HDR and the echo features, plus I think the cube has a few more audio codecs support than my 2nd Gen box? I got a good deal on a cube for £75 brand new and got a potential buyer for my old tv box for £50

I may have to send the cube back if it’s not gonna work properly or has issues with KODI

Anyone use a Amazon Fire TV Cube with KODI? any issues?

$
0
0
Hi guys

Has anyone on here got an Amazon Fire TV Cube and use KODI 18.7 on it with no issues?

I still have my Fire TV Box 2nd generation, but want HDR and the echo features, plus I think the cube has a few more audio codecs support than my 2nd Gen box? I got a good deal on a cube for £75 brand new and got a potential buyer for my old tv box for £50

I may have to send the cube back if it’s not gonna work properly or has issues with KODI

New SFTP configuration

$
0
0
I am trying to connect several Windows and Android Kodi 18.7 clients to a Buffalo LinkStation LS-WVL (firmware 1.74) via SFTP. I was using FTP for external access, but after upgrading my router or OpenWRT, it rightly limits use of insecure protocols. (SMB used for local Kodi clients.) The SFTP add-on is enabled. When I try to create the source, I get "Unable to connect: Couldn't retrieve directory information. This could be due to the network not being connected. Would you like to add it anyway?" then "Remote share: Couldn't connect to the the network server". The Buffalo's SFTP server is working, and I can connect to it via various SFTP clients on three Android TV boxes (which are the primary concern of this post), two Windows 10 machines, and a Raspberry Pi running Raspbian, but I cannot configure Kodi to connect to the SFTP server on any machine. Filezilla on Windows 10 machines, and the SFTP plugin for Total Commander and Admin Hands on Android have allowed me to log in with only a password, but as a SSH noob, I even tried generating a key and putting the public key in /sdcard/Android/data/org.kodi.files/.ssh/, as I read on several other posts. I also uninstalled and reinstalled both kodi and the SFTP add-on. The Buffalo NAS only allows connections via SMB, AFS, FTP, and SFTP, but if I must consider other protocols, the Raspberry Pi is available to pursue those suggestions. What am I doing wrong? Thanks

log: https://paste.kodi.tv/exugirovix.kodi

Adding subtitles to STRM files

$
0
0
Hello, 
I'm often using subtitles for my strm files but unfortunately their subtitles are not shown automatically like for normal videos.
When adding the same name for the subtitles and the video, for a normal video, would suffice to show the subtitles automatically :
Code:

Video File: The Matrix.avi
Subtitle: The Matrix.srt
How to name subtitles in Kodi
It's not working with strm files, I know that it's not a "normal" format of videos but that would be great to make this feature also available for it  Blush
For the moment when playing a strm file, I'm searching manually the subtitles in the current folder every time.

A couple of questions regarding youtube addon and cast info script...

$
0
0
1. i have youtube working very nicely after resetting my api, but the behavior seems a bit odd when selecting a trailer for a movie... if i select a movie poster (which then takes me to the dialog video info screen) and then select trailer, the trailer launches and plays fine but i'm kicked out of the  dialog video info screen and automatically returned to the movie poster wall, albeit i land on the movie poster i had previously selected... shouldn't the code keep me in the dialog video info screen during a youtube/trailer playback so when i close the trailer i don't have to select the poster again?

2. all of the scripts rows (cast, cast and crew, director, similar, etc.) below the main dialog video info screen work great (altho i would like to figure out a way to replace the ugly green "powered by the movie db" poster that appears when info can't be found), however the keyboard home/end keys don't work as expected with the cast member poster row... if i scroll right through the posters i have to then scroll left in order to get back to the first one rather than use home/end to take me to the first and last posters... what's weird is that the home/end keys work as expected for all other script rows, it works perfectly, just not for the cast row.

3. when i select a poster from the script row the previous page's "poster wall" flashes before taking me to the item that i selected, and the same thing happens when i page back to the dialog video info screen, the "poster wall" flashes before returning to the dialog video info screen... is there any way to prevent this so that it looks/feels like i'm being taken directly to these destinations rather than looking/feeling like the code first had to go through the "poster wall" to get to these destinations?

thanks!

can't get downloads to enable

$
0
0
Leia on Mac HS.
Tried to enable Downloads on Exodus and Exodus Redux.
Can't select Downloads, sort of like it is grayed out.

Is there a way to make the bootable volume huge?

$
0
0
Hi all. I have LibreElec installed on a 32GB card. Of course this leaves tons of it empty. Is there a way to make that space usable by LibreElec & Kodi?

Thanks!

Audio passthrough does not start initially if Adjust Display Refresh Rate is enabled

$
0
0
I‘m currently experiencing the above issue. As stated in this thread https://github.com/xbmc/xbmc/issues/15490# “I have installed 18beta4 and can confirm that Refresh on, and passthrough enabled, does indeed work properly. So I am using 18beta4 Windows for the time being until the issue is fixed.“ Can anyone post a link to a download of 18beta4 please?, or provide a more future proof solution?
Viewing all 85241 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>