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

Unable to create GUI

$
0
0
I am getting error messages when attempting to launch KODI for Windows (W-7 Ultimate)
message- "Error: Unable to Create GUI. Exiting"

I'd upload a screenshot; but unable to find an upload link here...

Moving from XBMC Gotham to Kodi Helix??

$
0
0
Hi all,

I have been using the final release of XBMC Gotham, now with XBMC renamed to Kodi, including the executable file, and the new version Helix, how can i migrate my movies db, and all the customizations i have done to the Aeon MQ5 Theme? I am sure just copying all of the content of the XBMC Appdata into Kodi will not work. I tried and it did not. Kodi did not pick up the movies db.

Bug? Scraper clearbuffers

$
0
0
There appears to be a difference in behavior between a full directory refresh (reset content and then update files in the directory again) and selecting Refresh on a file from the information screen.

In the first case, setting clearbuffers="no" allows buffer values saved in the first stage (CreateSearchUrl) to be propogated to each additional stage (GetSearchResults and GetDetails).

In the second case, buffers propogate from CreateSearchUrl to GetSearchResults, but are cleared when it reaches GetDetails.

The value in question is the year, which is provided buffer $$2 when calling CreateSearchUrl, if it was found by the cleandatetime regex.


Because of this, attempting to simply update individual files may end up with incorrect results. In order to update any given file, you have to update the entire directory it's contained in.

I'm fairly sure this is a bug, but it's difficult to be certain I'm understanding what all is happening. However I can't log in to the trac system, so figured I'd check here first in case I'm misunderstanding something.

Currently using Kodi 14.0.

Behavior with Setting Up TV Content

$
0
0


Setup: issue can be duplicated on multiple end-user PCs running Windows 8.1.

Issue seen with clean install of Kodi 14.0 or an update from XBMC 13. Issue was also recently noticed on XBMC 13 (back to 13.1) as well (which prompted me to try Kodi 14.0 release to see if the issue persisted).

Steps to duplicate:
1. Setup: content files reside on local network home server (WHS 2011)
2. Go to folder containing TV show folders (each show has it's own folder) [Example: Main folder = 'Television', Subfolder = '90210' (without the single quotes)].
3. Right-click on a folder and select 'Set content'
4. Select (TV shows) in the top left quadrant for "This directory contains...". Use default TVDB scraper. Use default Content Scanning Options. Select OK.
5. Select Yes when prompted with "Do you want to refresh info for all items within this path?"
6. Let scanning complete
7. Right-click folder, select "TV show information"
8. Nothing happens <-- this is the issue where I can't access the TV information for the folder.

I can do the exact same steps for setting content for Movies in my movies folder and it works fine
, but for some reason it doesn't work for TV content.

Any suggestions or advice on how to fix this (if the issue is on my side) is greatly appreciated. Of if it's a known bug, my apologies in advance. I did a search in both the Forum and But Tracker and did not see this topic in my review of the search results.

FireTV with Kodi 14 does not play Video_TS

$
0
0
Among my Videos I have several in Audio_TS/Video_TS format.
If I try to Playback such a folder, I get the waiting cursor, but nothing happens.

This problem I hab not with the current release of SPMC on the same FireTV.

Has anybody the Same problem, an da solution?

xbmc stopped owrking

$
0
0
I need help.my xbmc stopped working correctly. I have an android box and xbmc re loads as of first time but no add ons or programs settings come on.
I have not tried to delete because I don't know how to re download
help

Cleandatetime

$
0
0
The default regex for cleandatetime is really bad. To clarify some details for anyone searching for info:

CUtils::CleanStrings first pulls the <cleandatetime> regex that you can specify in advancedsettings.xml.

Only one regex string is allowed in that field.

The first group matched is determined to be the title. The second group matched is determined to be the year (and is passed in to the scraper in buffer $$2). Any additional groups matched are discarded. If the regex isn't matched at all, nothing is inserted into the year group and the entire file name string is passed on to the <cleanstrings> portion of name handling. If a match is found, everything other than the year and first group found (generally everything before the start of the year info) is discarded.


I'll list a number of possible year labels on films, and explain what happens with the default regex, and with mine (shown below). The films aren't generally real, I'm just listing different patterns.

'no match' means it will use the entirety of the provided file name, and not provide any year. Otherwise, I will show the captured title, then a slash, then the year that was determined.

My Movie
- default: no match
- mine: no match

My Movie 2004
- default: My Movie / 2004
- mine: My Movie / 2004

My Movie (2004)
- default: no match
- mine: My Movie / 2004

My_Movie_2004
- default: My_Movie / 2004
- mine: My_Movie / 2004

My Movie[2004]
- default: no match
- mine: My Movie / 2004

My TV Show (2004-2005)
- default: no match
- mine: My TV Show / 2004

My TV Show ( 2004 - 2005 )
- default: My TV Show ( 2004 / 2005
- mine: My TV Show / 2004

2001: A Space Odyssey
- default: no match
- mine: no match

2001: A Space Odyssey (1968)
- default: no match
- mine: 2001: A Space Odyssey / 1968

Knives: 2000 Ways to Kill Someone
- default: Knives: / 2000
- mine: Knives: 2000 Ways to Kill Someone

Knives: 2000 Ways to Kill Someone.2001
- default: Knives: 2000 Ways to Kill Someone / 2001
- mine: Knives: 2000 Ways to Kill Someone / 2001

Knives: 2000 Ways to Kill Someone-2001
- default: Knives: 2000 Ways to Kill Someone / 2001
- mine: Knives: 2000 Ways to Kill Someone / 2001

Knives: 2000 Ways to Kill Someone[2001]
- default: Knives: / 2000
- mine: Knives: 2000 Ways to Kill Someone / 2001

1999.S00E01
- default: no match
- mine: no match

1999.S00E01.1974
- default: 1999.S00E01 / 1974
- mine: 1999.S00E01 / 1974

1999 - S00E01 (1974)
- default: no match
- mine: 1999 - S00E01 / 1974

Umika - Sincerity [AKROSS_Con_2012]
- default: no match
- mine: Umika - Sincerity / 2012

The 1975 Show (1975)
- default: The, 1975
- mine: The 1975 Show / 1975

The Tonight Show of 1995 (1995)
- default: The Tonight Show of / 1995
- mine: The Tonight Show of / 1995



As you can see, there are quite a few patterns that are just broken using the default regex.

The following is the regex that I've built up to handle as many different cases as feasible, from the various testing that I've been able to manage. It handles everything that I've been able to throw at it except for that last pattern, and I'm not sure there's any reasonable way to deal with that except completely disallowing dates that are only preceded by spaces (something I would not object to, but since the default allows simple spaces as delimiters, I'm allowing that in mine).

Code:
<cleandatetime>(.+?)(?:\s*(?:(?:[[({])(?:[^)}\]]*?))|[ _,.-]\s*)(?:(?<=_)|\b)((?:19|20)\d{2})(?:(?:_|\s)*-(?:_|\s)*(?:19|20)\d{2})?\b(?!(?:\s*\w)+)[^\\/]*?$</cleandatetime>

A version that doesn't allow simple spaces to be a delimiter for a year:
Code:
<cleandatetime>(.+?)(?:\s*(?:(?:[[({])(?:[^)}\]]*?))|[_,.-]\s*)(?:(?<=_)|\b)((?:19|20)\d{2})(?:(?:_|\s)*-(?:_|\s)*(?:19|20)\d{2})?\b(?!(?:\s*\w)+)[^\\/]*?$</cleandatetime>


And for reference, here's the default regex:

Code:
<cleandatetime>(.+[^ _\,\.\(\)\[\]\-])[ _\.\(\)\[\]\-]+(19[0-9][0-9]|20[0-1][0-9])([ _\,\.\(\)\[\]\-][^0-9]|$)</cleandatetime>

MODEM RESET = NAS Gone/Nightmare

$
0
0
Hi all, setup is: minix x8h plus, router, synology nas.

Did a modem reset (turned off and on) which normally is required once a per week for various reasons.
First time with a XMBC device connected (normally boxee box, never a drama).

When I select to play a movie from the library it says "This files no longer available would you like to remivevfrom the library".

Issue is nothing XMBC and network related works anymore, when I go to select new share I get a "connection timed out" error. The path IP is correct nothing has changed accept I turned the router /modem off/on.

You tube/google etc still work on the minix.

PS: the media centre app finds everything and works fine.

Thanks.

No Network After Config Change

$
0
0
After the upgrade to Kodi yesterday, I started having problems with my wifi not starting up when Kodi was rebooted. This led me to a search at this page:

http://weworkweplay.com/play/automatical...i-network/

Which had me modify my interfaces file and wpa_supplicant.conf

Please note there was no data in the interfaces file before I made the modifications and there was not wpa_supplicant.conf file. I created a new file and followed the directions from the url above.

After rebooting my system it would my wifi would not connect ever after doing an Update Now and OK to confirm network changes.

I then moved my device to my office where I have a Wired connection and setup the Raspberry Pi for a Wired Static IP connection on the same LAN. I cannot get a network connection with wired or wireless so I can't ssh into my Pi to back out the changes that I made.

Am I going to have to rebuild this Pi from scratch?

I have a backup from last week, which had Gotham 13.2 loaded on it.

Running out of application memory

$
0
0
iMac (27-inch, Late 2013
3.4 GHz Intel Core i5
24 GB 1600 MHz DDR3
NVIDIA GeForce GTX 775M 2048 MB
Mac OS X 10.10.1

Kodi Version 14.0

I seem to be having a problem in which if Kodi is left running for a few hours (either playing a video file, or sitting idle) the System will pause all running applications, and inform me that I have run out of 'Application Memory'.

I had been running Release Candidates 1 and 3 of Kodi prior to the official release, with the same results, hoping this would be fixed in the release version.

Has anyone else run into this problem, and if so, is there a fix?

If not, what steps might I take to help troubleshoot this problem?

xbmc won't install.

$
0
0
Ok I'm hoping someone can help me please. I've Jailbreak my second AT2 , but can't install XBMC on it. 3 year go I use the AH script to put XBMC on. Now it's as 123. I have tried everything from reinstall my ATV 3 time and nothing. Yes I've use nito to install a few time. I can't understand it, t's driving me crazy. I don't know what do anymore. I watch youtube video over and over for the last 3 hour. Please can someone help me Thanks you.

Any way to have one shortcut for MySQL shared/one for unshared?

$
0
0
I have a shared library via MySQL, just wondering if I can "bypass" the advancedsettings.xml file for my laptop with a shortcut so when I'm home, I can run the shared Kodi, and when out XBMC takes ages to start and do anything as it's searching for the library/IP of MySQL, so if I can have one shortcut that ignores the advancedsettings.xml that'd be sweet. Is this possible? Thanks for any help Smile

Kodi 14.0 and Netflix

$
0
0
Forum,

I am having trouble with XBMC 14.0 and Netflix playing nicely. They both work fine independently of each other but together they do not work. After launching XBMC 14.0 and then launch Netflix it only loads 99% and hangs. The only way to fix this issue is to quit XBMC 14.0 and then Netflix works no problem. I know this may seem like a simple answer but this wasn't and issue when I was running XBMC 13.2. I was hoping someone had a fix since its nice to not have to wait for XBMC to load when I finish watching Netflix. Any ideas would be awesome. Thanks!

Josh

[Mod] extendedinfo Actor and Video Panels - Nox 5

$
0
0
This is a modification of Steveb's original extended info panels for Aeon Nox 5. Steve was nice enough to lend me an advanced version that I furnished with new content. The extendedinfo script provides extra information accessible from the cast section such as actor biographies, filmographies, pictures, videos and trailers.

You will need the most recent copy of the extendedinfo script to access this content. The script is a work-in-progress, so check back here for updates as bugs are fixed and new features added.

To use:
  1. Highlight an actor in the cast section.
  2. Press down and the following panels should appear.
    Tip: I would suggest using ChannelUp & ChannelDown to explore larger panels:

Extra Info on down:
[Image: extendedinfo-15_zpsbe1777b6.jpg]

Filmography:
[Image: extendedinfo-16_zps8784a48e.jpg]

Fanart:
[Image: extendedinfo-17_zpsbf0267a6.jpg]

The video info screen is accessed by selecting a title from the actor's filmography:

DialogVideoInfo:
[Image: extendedinfo-18_zpsf1dd254d.jpg]

Trailers:
[Image: extendedinfo-19_zps256552c8.jpg]

Movie Set:
[Image: extendedinfo-20_zps5601dde1.jpg]

Current Known Quirks/Bugs of the ExtendedInfo Script
  1. The wrong movie poster and art may load for multiple titles.
  2. Actor age may load as "Unavailable."
  3. Choosing a TV Show will bring-up an intermediary dialog. Choose "TV Show Info." The other option will take you nowhere.
  4. Cinema Experience is not working with library items.
  5. Occasional freezes and crashes are not uncommon.

If you discover any other issues, please report them to me. I will pass them on to the script's creater, phil65.

If someone can come up with a better layout for the YouTube section (all 50 videos of it) or find a way to have the YouTube content open in a new window, please share. As this section is not very user-friendly at this point.

You will need:
The xml files are dropped into the skin/1080i folder while the images are placed in the media folder. Extract script.extendedinfo.zip and place it in the Kodi/addons folder. You can also install the addon from zip from the Kodi gui.

Extended Info Mod:

https://drive.google.com/file/d/0B2LAr9I...sp=sharing

Companion Mod - Standard Video Info Screen:

A companion mod is available for those who wish to keep the video info screens consistent across standard Aeon Nox 5 and extended info: http://forum.kodi.tv/showthread.php?tid=198316.

Audio Not Working For All Files

$
0
0
Hi,

I moved to Kodi at Beta2 and since then I have been having troubles playing some files, the video is working fine, the problem is there is no associated audio. I originally thought it might be some Beta issue but I have upgraded to the released version and am still facing the same issue. I then thought that the system may be configured incorrectly so went back to Gotham and tried playing the file which worked, I have uploaded my Kodi and Gotham log files and from what I can tell it looks like there is a problem with my audio passthrough, no idea what that means or how to fix it so hoping someone on here could help.

Thanks,

Christopher

PleXBMC & Kodi

$
0
0
Hi guys,

I followed these instructions to install KODI on my NUC

http://kodi.wiki/view/HOW-TO:Install_KOD...ourself.29

So I'm running Ubuntu 14.04

And Kodi as an XSession

I've also added the PleXBMC repository, then added the PleXBMC add-on, following these steps:

http://kodi.wiki/view/Add-on:PleXBMC

Most of the time, the PleXBMC add-on will not work, displaying that there's an error with the script.


I have another HTPC (an ATV1 running OpenELEC and XBMC Gotham) and my PleXBMC add-on is still working, and it has been installed following the same procedure.


So I'm wondering if it's related to the latest version of XBMC (now KODI) and I should just install Gotham and wait for the PleXBMC add-on to be updated?

Quick question about ASUS ChromeBox M004U

$
0
0
I just took advantage of a boxing day deal and bought a ASUS ChromeBox M004U

I'm going to follow this and install Kodi on it:
http://kodi.wiki/view/ASUS_Chromebox

Now I have one questions for you guys.

This tutorial seems to recommend installing OpenELEC + Kodi

However I'd like to install Ubuntu Desktop 14.04 + Kodi as an XSession

I like the idea of logging off Kodi and having a full desktop environnement for browsing the web and stuff, using my Logitech K400.

I was wondering if you think the ChromeBox can take it or the performance will be significantly altered?

The specs are:
1.4 GHz Intel Celeron 2955U Processor
2GB DDR3 RAM
16 GB SSD HDD
Intel HD graphics (not sure which one though)


Thanks!

4.2.2, Amlogic mbox kodi 14.0- video playback zoomed incorrectly

$
0
0
Hello folks,

I have upgraded from xbmc Gotham to kodi helix and I'm having an issue, any video I play comes out incorrectly zoomed, as if my screen was bigger. For example, the WB logo you see on every Warner bros. movie, appears offset towards the bottom right corner. The only way to fix it is when I turn off hardware acceleration, but then the video is choppy.

Any ideas? I can't go back to Gotham as any video goes blank exactly at minute 10, so it's useless. I posted about it before and was told to upgrade to helix.

Sorry for being sounding so illiterate in the information I'm providing, but I can't explain it any better.

Thanks.

Buffering on ADT-1

$
0
0
I have an adt-1 with the Helix release and im getting issues with a lot of buffering playing local content from a nfs share through wifi, my router, pc and adt are almost next to each other so this is not the issue

the only way to make it somehow watchable for a while is to tweak the advancesettings.xml but i can't find good values to make the buffering go away any idead how to fix it?

Replace Favorites

$
0
0
Hello all,

I am trying to make a add-on that will download a favorites.xml from my website and replace the exiting favorites.xml in the userdata folder. I am stuck at the point of coding to figure out how to tell the add-on where that file is. Can anyone help? it will be primarily on a android box but some of my friends run it on their mac.


Thanks for any information. I greatly appreciate it.
Viewing all 82092 articles
Browse latest View live




Latest Images