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

Kodi 19 - Always [SSL: CERTIFICATE_VERIFY_FAILED], can't get it fixed

$
0
0
Hello all,

I am trying to load a file all the time. The certificate of the domain is correct, it has been checked several times, but again and again I get this error. What can do there?

I have already tried to append |verifypeer=false after the URL. No success. It doesn't matter if I use http:// or https://.

Code:
 Error Type: <class 'urllib.error.URLError'>
                                                   Error Contents: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate is not yet valid (_ssl.c:1123)>
                                                   Traceback (most recent call last):
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 1350, in do_open
                                                       h.request(req.get_method(), req.selector, req.data, headers,
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 1255, in request
                                                       self._send_request(method, url, body, headers, encode_chunked)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 1301, in _send_request
                                                       self.endheaders(body, encode_chunked=encode_chunked)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 1250, in endheaders
                                                       self._send_output(message_body, encode_chunked=encode_chunked)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 1010, in _send_output
                                                       self.send(msg)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 950, in send
                                                       self.connect()
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/http/client.py", line 1424, in connect
                                                       self.sock = self._context.wrap_socket(self.sock,
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/ssl.py", line 500, in wrap_socket
                                                       return self.sslsocket_class._create(
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/ssl.py", line 1040, in _create
                                                       self.do_handshake()
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/ssl.py", line 1309, in do_handshake
                                                       self._sslobj.do_handshake()
                                                   ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate is not yet valid (_ssl.c:1123)
                                                   
                                                   During handling of the above exception, another exception occurred:
                                                   
                                                   Traceback (most recent call last):
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/addons/script.cuetv.install/main.py", line 14, in <module>
                                                       script.get_packages()
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/addons/script.cuetv.install/resources/lib/script.py", line 68, in get_packages
                                                       response = urllib.request.urlopen(url)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 222, in urlopen
                                                       return opener.open(url, data, timeout)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 531, in open
                                                       response = meth(req, response)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 640, in http_response
                                                       response = self.parent.error(
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 563, in error
                                                       result = self._call_chain(*args)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 502, in _call_chain
                                                       result = func(*args)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 755, in http_error_302
                                                       return self.parent.open(new, timeout=req.timeout)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 525, in open
                                                       response = self._open(req, data)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 542, in _open
                                                       result = self._call_chain(self.handle_open, protocol, protocol +
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 502, in _call_chain
                                                       result = func(*args)
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 1393, in https_open
                                                       return self.do_open(http.client.HTTPSConnection, req,
                                                     File "/data/user/0/org.xbmc.kodk/cache/apk/assets/python3.8/lib/python3.8/urllib/request.py", line 1353, in do_open
                                                       raise URLError(err)
                                                   urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate is not yet valid (_ssl.c:1123)>
                                                   -->End of Python script error report<--

url = 'http://SEITE.cc/tv/data.zip|verifypeer=false'
response = urllib.request.urlopen(url)

Am grateful for any help.

v19 has replaced year listing, with rating?

$
0
0
Hi!
Validated on both Windows and Android version... v18.9 and before, and movies list showed the year of the movie, where v19 is now showing the rating.
I've dug through interface and skin settings, and can't find any place to fix/adjust that?

Totally cool to be corrected - if it's hiding there somewhere - but I already had the rating badge up over all the artwork before, so we dont' need it in the list. The year (for us) was MUCH more useful. :-)

thanks!
Andrew

Custom TV shows - Vacations - Not Appearing

$
0
0
Providing background as I have tried troubleshooting the issue from the following links to no avail. Below is the folder and file structure. Other TV Shows are present within the root of Shows and those do not have a problem.

/media/HD2/Shows/Vacations/                                                                                                       
├── [-rwxrwxr-x]  fanart.jpg                                                                                                      
├── [-rwxrwxr-x]  folder.jpg                                                                                                      
├── [drwxrwxr-x]  Season 01                                                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E01 - Cruise 2006.mkv                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E01 - Cruise 2006.nfo                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E02 - Winter Trip 2006.mkv                                                                   
│   ├── [-rwxrwxr-x]  Vacations - S01E02 - Winter Trip 2006.nfo                                                                   
│   ├── [-rwxrwxr-x]  Vacations - S01E03 - Cruise 2007.mkv                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E03 - Cruise 2007.nfo                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E03 - Home Remodel 2009.mkv                                                                  
│   ├── [-rwxrwxr-x]  Vacations - S01E03 - Home Remodel 2009.nfo                                                                  
│   ├── [-rwxrwxr-x]  Vacations - S01E04 - Disney 2015.mkv                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E04 - Disney 2015.nfo                                                                        
│   ├── [-rwxrwxr-x]  Vacations - S01E05 - Sanibel 2015.mkv                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E05 - Sanibel 2015.nfo                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E06 - Sanibel 2016.mkv                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E06 - Sanibel 2016.nfo                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E12 - Sanibel 2017.mp4                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E12 - Sanibel 2017.nfo                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S01E13 - Art of Animation 2017.mp4                                                              
│   ├── [-rwxrwxr-x]  Vacations - S01E13 - Art of Animation 2017.nfo                                                              
│   ├── [-rwxrwxr-x]  Vacations - S01E17 - Disney September 2018.mp4                                                              
│   ├── [-rwxrwxr-x]  Vacations - S01E17 - Disney September 2018.nfo                                                              
│   ├── [-rwxrwxr-x]  Vacations - S01E18 - Sanibel 2019.mkv                                                                       
│   └── [-rwxrwxr-x]  Vacations - S01E18 - Sanibel 2019.nfo                                                                       
├── [drwxrwxr-x]  Season 02                                                                                                       
│   ├── [-rwxrwxr-x]  Vacations - S02E01 - xxxx EduVillage Grad.mkv                                                            
│   ├── [-rwxrwxr-x]  Vacations - S02E02 - xxxx EduVillage Rehearsal.mkv                                                       
│   └── [-rwxrwxr-x]  Vacations - S02E03 - xxxx EduVillage SlideShow.mkv                                                       
├── [-rwxrwxr-x]  tvshow.nfo                                                                                                      

These folders and files are viewable  [System > File Manager > Shows]. Updating library doesn't add them and appears like it is only updating Movies and not Shows. Tried updating via Context Menu but only see the "Play" and "Add to Favorites" options. Below is the Kodi log. Your help is greatly appreciated.

https://paste.kodi.tv/cigejohebu.kodi

Error details: u'logo'

$
0
0
I have an paid netflix account for about an year and try to use it on kodi few days ago.

After installation and happy to enjoy the film about 48 hours, an error is just happen few hours before.

It was found i cannot login anymore and the error message is read:

Exception: KeyError
Error details:
u'logo'

and the bottom of the scream show:
The use of this add-on may not be legal in your country of residence - please check with your local laws before installing.

P.S.: i am live in UK

just want to clarify: is the add-on lawful in uk ? as i can't find the relative web article about that, thanks.

Random Albums

$
0
0
What I want is a Random Albums widget that refreshes on a regular basis.  On some skins this works on others it does not

For reference I am on K19 using the old Horizon skin which has been ported over to Matrix and works really well.

I have tried creating a random album playlist but the problem is that it is static (once created never changes).  I have tried using autowidgets but that just threw out errors.

So a simply question, with either a simple or very complicated answer.  How do I create a widget that contains random albums that refreshes ever time I boot up kodi

Kodi plays 2160p material at 1080p

$
0
0
Kodi is set to 3840x2160p in settings, but when I play 2160p content, Kodi switches from 3840x2160p resolution to 1920x1080p.

Both resolutions are in the whitelist.

Looks like there's an error in there (DXGI?) Also get an error about 'scaling method 9 not supported'.

Thanks for looking

Short snippet from the log (not the whole log:

2021-03-31 23:24:58.567 T:6268     INFO <general>: VideoPlayer::OpenFile: smb://DISKSTATION/video/test/Sony Whale in Tonga HDR UHD 4K Demo.mp4
2021-03-31 23:24:58.567 T:7844     INFO <general>: Creating InputStream
2021-03-31 23:24:58.580 T:7844     INFO <general>: Creating Demuxer
2021-03-31 23:24:58.596 T:7844     INFO <general>: Opening stream: 0 source: 256
2021-03-31 23:24:58.596 T:7844     INFO <general>: [WHITELIST] Searching the whitelist for: width: 3840, height: 2160, fps: 59.940, 3D: false
2021-03-31 23:24:58.597 T:7844     INFO <general>: Display resolution ADJUST : Generic PnP Monitor #1: 3840x2160 @ 59.94Hz (122) (weight: 0.000)
2021-03-31 23:24:59.713 T:6268     INFO <general>: VideoPlayer: OnLostDisplay received
2021-03-31 23:24:59.713 T:6268  WARNING <general>: CDVDMessageQueue(audio):Tongueut MSGQ_NOT_INITIALIZED
2021-03-31 23:24:59.713 T:6268  WARNING <general>: CDVDMessageQueue(video):Tongueut MSGQ_NOT_INITIALIZED
2021-03-31 23:24:59.713 T:6268     INFO <general>: VideoPlayer: OnResetDisplay received
2021-03-31 23:24:59.713 T:6268  WARNING <general>: CDVDMessageQueue(audio):Tongueut MSGQ_NOT_INITIALIZED
2021-03-31 23:24:59.713 T:6268  WARNING <general>: CDVDMessageQueue(video):Tongueut MSGQ_NOT_INITIALIZED
2021-03-31 23:24:59.714 T:8864     INFO <general>: CActiveAESink::OpenSink - initialize sink
2021-03-31 23:24:59.777 T:7844     INFO <general>: Creating video codec with codec id: 173
2021-03-31 23:24:59.777 T:7844     INFO <general>: CDVDVideoCodecFFmpeg::Open() Using codec: HEVC (High Efficiency Video Coding)
2021-03-31 23:24:59.777 T:7844     INFO <general>: Creating video thread
2021-03-31 23:24:59.778 T:2856     INFO <general>: running thread: video_thread
...audio process...
2021-03-31 23:25:00.048 T:8864     INFO <general>: CActiveAESink::OpenSink - initialize sink
2021-03-31 23:25:00.251 T:2856     INFO <general>: DXVA::CDecoder::Open: Total video memory available is 6098 MB (dedicated = 4075 MB, shared = 2022 MB)
2021-03-31 23:25:00.315 T:6268     INFO <general>: CWIN32Util::ToggleWindowsHDR: Toggle Windows HDR On (OFF => ON).
2021-03-31 23:25:01.010 T:1504     INFO <general>: CPythonInvoker(5, D:\Kodi Portable\Kodi Matrix 19.0\Kodi\portable_data\addons\script.embuary.info\default.py): script successfully run
2021-03-31 23:25:01.042 T:1504     INFO <general>: Python interpreter stopped
2021-03-31 23:25:01.301 T:2856  WARNING <general>: CRenderManager::Configure - timeout waiting for configure
2021-03-31 23:25:01.970 T:6268    ERROR <general>: DX:Big GrineviceResources::ResizeBuffers: function call at line 578 ends with error: 887A0001 - DXGI_ERROR_INVALID_CALL (The application made a call that is invalid. Either the parameters of the call or the state of some object was incorrect.
                                                   Enable the D3D debug layer in order to see details via debug messages.
                                                   )
2021-03-31 23:25:02.058 T:6268     INFO <general>: DX:Big GrineviceResources::ResizeBuffers: 10 bit swapchain is used with 6 flip discard buffers and HDR output
2021-03-31 23:25:03.431 T:6268     INFO <general>: VideoPlayer: OnLostDisplay received
2021-03-31 23:25:03.431 T:6268     INFO <general>: VideoPlayer: OnResetDisplay received
2021-03-31 23:25:03.431 T:8864     INFO <general>: CActiveAESink::OpenSink - initialize sink
2021-03-31 23:25:03.435 T:6268     INFO <general>: DXVA::CProcessorHD::InitProcessor: supported deinterlace methods: blend:no, bob:yes, adaptive:yes, mocomp:yes.
2021-03-31 23:25:03.449 T:2856    ERROR <general>: CVideoPlayerVideo::OutputPicture - failed to configure renderer
2021-03-31 23:25:03.453 T:6268     INFO <general>: DX:Big GrineviceResources::SetHdrMetaData: RP 1.000 1.000 | GP 1.000 1.000 | BP 1.000 1.000 | WP 1.000 1.000 | Max ML 1 | min ML 0.1000 | Max CLL 0 | Max FALL 0
2021-03-31 23:25:03.453 T:6268     INFO <general>: CRendererBase:TonguerocessHDR: Switching to HDR rendering
2021-03-31 23:25:03.453 T:6268  WARNING <general>: CRendererHQ::CheckVideoParameters: chosen scaling method 9 is not supported by renderer

Smart Playlist referenced in other Smart Playlist, how to hide refernce only list?

$
0
0
Hi,

I have worked out a way to use smart playlists to setup cooking epsiodes (from many series) using rule criteria referencing other smart lists (as a way to use AND/OR logic that was needed).

Here is (working) example:

1) Playlist to filter just Food genre in episodes:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
    <name>Food Series</name>
    <match>one</match>
    <rule field="genre" operator="is">
        <value>Food</value>
    </rule>
</smartplaylist>


2) Playlist to list all episodes with "Chicken" in Title or Plot:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
    <name>z_has_Chicken</name>
    <match>one</match>
    <rule field="plot" operator="contains">
        <value>Chicken</value>
    </rule>
    <rule field="title" operator="contains">
        <value>Chicken</value>
    </rule>
</smartplaylist>

3) The "real" Chicken Playlist now references the previous 2:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
    <name>Chicken</name>
    <match>all</match>
    <rule field="playlist" operator="is">
        <value>Food Series</value>
    </rule>
    <rule field="playlist" operator="is">
        <value>z_has_Chicken</value>
    </rule>
</smartplaylist>


So #1 and #2 are playlists and will work on their own, but are kind of useless on their own. Is there a way to have these available to the "real" (#3) playlists to avoid having all these extra ones not displayed within kodi?

Or if they must display in kodi, is there a way to "list playlists" but somehow filter that to remove the ones I don't want displayed in a list?

FYI I am running Kodi Matrix

Thanks!

Plex For Kodi - Subtitles don't display for first 10 seconds of the video

$
0
0
I'm using the Plex For Kodi addon with my Nvidia Shield Pro and have recently discovered that subtitles no longer display for the first 10 seconds of the video. I noticed this because I'm currently watching a Spanish show, so I need subtitles for the entire thing. But the subtitles don't appear until just after 10 seconds. I then went to check if it did this with all shows, and it does. SRT, PGS and VOBsubs are all affected.

The native Plex app displays subtitles from the start just fine, it's the Plex For Kodi addon that has the problem. I use the Plex For Kodi addon because it lets me boost the audio for my soundbar, which the native Plex app does not. If this is the wrong place to post this, please let me know.

Logfile: https://paste.kodi.tv/wukipediva
This is my first time posting a logfile so hopefully I did it right!  Rofl

The MovieDB scraper...suddenly not scraping movies??

$
0
0
Hi

Suddenly today the MovieDB scaper seems to not be working. At first it scraped a couple of movies...but scraped them incorrectly. Had to fix manually.

Now suddenly anything that is scrapped fails suddenly immediately with no explanation.

Anyone else suddenly today dealing with same issue? Am wondering if its just a site thing?

Thanks

Stutter and smearing on SD Files

$
0
0
Hello,

i just recently had to reinstall Kodi on my Android TV-Box.
I´ve been using the Box from Kodi 17.x onwards and never had a problem with playback of older SD Files.

Since the reinstall, those files only play with stuttering and smearing of the video.
Strangely enough, when an overlay comes into play (e.g. Menue of Kodi or the Debug Logger) the playback seems to smoothen a bit.
I already tested a bunch of configuration changes on Kodi as well as on Android itself. Nothing works.

I didn´t change anything of the hardware components whatsoever.

Here are two Logs to clarify the situation. In both Log Files there is always the same file played, while changing some of the Settings.

http://paste.kodi.tv/etumuxamez
http://paste.kodi.tv/yeripuyeda

Anyone got an Idea on this?

Kodi 19 add movie set

$
0
0
Hello, I would like to automatically add fanart and poster when I add a new movie set to Kodi but they don't show up when I add movie set

I saw this link : https://kodi.wiki/view/Movie_sets_artwork

But I don't really understand...

is it what I have to do ? : create a Movies- Sets Art folder in my hdd where I want then I  add the folder with my movie set name (which is : Code Geass: Lelouch of the Rebellion - Trilogie) and in this folder I add the fanart and poster .jpg file.

Thanks

Sorting by full date

$
0
0
I'm just trying to better understand the issue.

Sorting by full date seem to be readily available in a number of places across Kodi, in general (sorting by date added, by last played, etc).

What would be required for sorting by full date to be available in more places? Audio albums (which have 'Original Date' by not actual date, if different than original; there is only Year or Artist/Year), Music videos (only Year), etc. I find it very messy when there's no way to sort properly between what's released in January vs December, within the same year.

Is it a related to how a skin is designed? Does it require some extra help from Kodi itself (extra dbase fields, indexes... I'm just speculating). And above all, is it doable?

Depositsbo Situs Judi Slot Online, JOIN

$
0
0
Depositsbo - Slot pulsa online yakni rujukan permainan taruhan lewat online yang langkah mainnya paling gampang. Slots permainan online yakni versus kekinian dan terakhir dari taruhan mesin slots di dalam rumah - rumah kasino. Oleh karena ada permainan slots online, karena itu bettors tidak usah kembali datang ke rumah kasino buat menempatkan taruhan slot. Yang dikerjakan cukup hanya dengan memakai handphone telephone seluler atau handphone, lalu membuka situs slots online pulsa sah. Seterusnya dapat bermain pada website itu, sesudah penuhi prasyarat jadi peserta.
Permainan slots online terkait di jaringan internet, jadi harus memakai jaringan yang konstan biar permainan berjalan secara lancar. Bermain slots online betul-betul ringkas, namun benar-benar dikuasai oleh akses internet. Karenanya pakai internet dengan jaringan tanda yang baik, bakal lebih baik kembali bila bermain dengan akses internet dari wifi. Buat type mesin slots online dan off line tak ada ketaksamaan yang banyak, namun mesin slots online diperlengkapi dengan prosedur RNG. Arahnya biar permainan dapat berjalan dengan adil dan tak memperberat bettors online yang bermain.
Kekeliruan Yang Harus Dijauhi Dalam Bermain Slot Pulsa Online
Mengenal tata langkah bermain slot online yakni basic yang perlu dipunyai oleh seluruh bettors online. Tidak hanya itu, bila mau menang, karena itu harus bermain dengan bersungguh - benar-benar. Juga lihat cara ketika bermain, jangan pernah sering melaksanakan kekeliruan maka tidak berhasil buat menang. Supaya bisa menghindar hal semacam itu, berikut di bawah ini kekeliruan yang perlu dijauhi ketika bermain slots pulsa online biar tak ringan kalah.
Tak Memakai Kiat
Bettors perlu kiat yang pas buat dapat menang bermain slot online. Realitas penting ini seringkali diacuhkan oleh bettors awam. Hasilnya, bettors awam itu jadi kerap tidak berhasil mencapai kemenangan. Bermain slots online tanpa mempersiapkan kiat yang masak bakal membikin bettors larut dalam permainan dan selesai tanpa bawa hasil yang pasti. Soal ini bakal berlainan bila Anda bermain dengan mempersiapkan kiat yang tepat. Karenanya, jauhi bermain tanpa mempersiapkan kiat yang tepat.
Begitu Memercayakan Peruntungan
Tak dapat di sanggah masihlah banyak bettors awam yang kerap melaksanakan kekeliruan no dua ini. Slots betul-betul taruhan yang kuat jalinannya dengan peruntungan. Namun bila cuma memercayakan peruntungan, karena itu kesempatan Anda buat menang sangat kecil. Cuma bila Anda mempunyai peruntungan besar sekali, karena itu dapat menang. Soal ini tidak pasti dan kurang terang, karena itu buat memprediksi peruntungan yang tak terang itu. Anda diperlukan opsi anyar adalah bermain dengan memakai kiat yang masak. Tersebut mengapa bettors pandai selalu mempersiapkan kiat tepat sesaat akan mulai bermain.
Bermain Selalu - Terusan
Ketika bermain slots online, tentu bettors bakal terasa suka dan mau bermain selalu. Ini yakni realitas yang banyak dirasa sendiri oleh beberapa bettors online. Namun gak boleh melaksanakan hal semacam itu, dikarenakan tergolong kekeliruan yang membikin bettors sukar buat menang. Mengatur waktu dengan pas kapan harus stop main. Dengan demikian, Anda dapat bermain tanpa memaksain diri, dan memaksain bankroll yang dipunyai. Anda dapat juga lebih konsentrasi ketika bermain bila tak memaksain diri.
Tersebut barusan daftar kekeliruan yang perlu dijauhi ketika bermain slot pulsa online biar tak enteng kalah. Tidak cuman tiga kekeliruan di atas, juga ada satu kembali yang perlu dijauhi adalah serakah. Serakah yakni sumber dari semua kekeliruan di saat bermain taruhan online. Jauhi sikap serakah ketika bermain slots online biar Anda tidaklah sampai merasakan rugi besar.

Content folder that contains individual DVD/BD folder structure

$
0
0
I have several DVDs and BDs that are copies of the original discs. That is (generally) you have the entire DVD (or BD) folder structure. That is under a folder with the title of the movie. I want to have a source content, one for DVDs, one for BDs. But I can't set the scanner appropriately . I set the flag that says "movies are in selected folder with movie title". Also set no recursive scan. But when I scan content to library, it uses  "VIDEO.TS" (or STREAM for BD) as the movie title.

How should I do this?

TIA

ken

XBOX serier x After installing emby plug-in, click the video to stop playing

$
0
0
[font][font]https://paste.kodi.tv/oxahitoloj[/font][/font]



Crash exit

Using NextPVR with HD PVR Rocket? Setting Up "HDMI Channel"?

$
0
0
TLDR: How do I setup an "HDMI Channel" in NextPVR with an HD PVR Rocket?

I've been searching for the better part of an hour...about to be driven crazy by what I would think is a very straightforward setup.  I have zero experience with modern PVR server; the last time I used a capture card was Windows XP MCE, and both XBMC and WMC simply detected the stream and I moved on with my life.  Easy Peasy...anyways...

I just purchased a Hauppauge HD PVR Rocket.  This device has no IR blaster.  All over Kodi and NextPVR forums, I see various posts implying the Rocket works fine with NextPVR...I've even seen sub3 post about it.  However, I have been unable to find out HOW to make it work...reading the NextPVR wiki and various forums has gotten me nowhere.

So far, the best I can find is a quote from sub3 here: https://forum.kodi.tv/showthread.php?tid...pid2512597
(2017-01-30, 23:04)sub3 Wrote: With NextPVR, you can setup a "HDMI" channel to represent an HDMI input on a Hauppauge capture device. If you use a Hauppauge Rocket, NextPVR will be able to work around the HDCP, without the need for extra hardware. If you're using another HDMI capture device, you'll probably need one of the HDMI splitters that remove the HDCP.

After that you can watch the "HDMI" channel in Kodi, or NextPVR itself, and see the output of your set top box.

That said, you've indicated you're not going to use an IR blaster, so this setup is going to be useless for recording etc, since the PVR software will have no way to change channels on the set top box when it needs to.

Whenever I try and scan channels, I get nothing of course.  And I cannot find a way to add a channel manually...short of maybe editing some config file somewhere.

Essentially, I just want to be able to see the current stream in Kodi and I do not want or care to use DVR functionality or change channels.  How do I setup an "HDMI channel" as sub3 notes?

Kodi 18.5 -inputstream adaptive is absent

$
0
0
Hi guys, happy holidays
I installed kodi 18.5 from repostory on MX linux (debian 10 buster)
Some contents require the adaptive imputstream library, which in mine
kodi is missing.
What to do to install the component safely?
Thanks

VIAPLAY in Baltic

$
0
0
Hi,
In march 2021 Viaplay started service in Baltic states.
How can the Viaplay add-on for KODI/OSMC be modified to support Viaplay.lt, Viaplay.lv and Viaplay.ee ie to choose correct source/subtitles?
Regards

add the program add-on

$
0
0
how can i add a program add-on on my home? see my picture. my wish is : 1. to add it under add-ons and or -to learn - 2.next to add-ons. i had -programs - under add-ons but its better to have directly this add-on...i tried but its not that easy.pls tell me step by step ...
Image

Eminence skin for Matrix (Not revived)

$
0
0
Since Matrix have deprecated python v2 scripts, many abandoned add-ons is also deprecated, including our loved eminence. But worry not, as someone pointed out that upgrading (not clean install) Kodi may carry over all previous skins and add-ons, but some add-ons are broken due to lack of support or other thing.
Please note I'm here not to revive eminence. I'm not a programmer so it's out of my reach, so don't ask any support.
Somehow I've managed to make it work in Matrix, although some features are still deprecated. So I'm sharing this add-ons with some other thing too.
I've made a backup, so you guys just need to restore it.


What's included?
Eminence (v 3.0.4)
Eminence 2 Mod
Playstation 4 (without GUI sound. Here is the GUI sound. Credit)

Link:
Here


How to restore:

1. Search for Backup script by robweber
Image

2. Set your backup script settings and point your backup saves (in my case I'm using my NAS)
Image

3. Put the backup file in the appointed directory (unzipping is unnessecary)
Image

4. Run the backup script and choose "Restore"
Image

5. Select the 5 April restore file
Image

6. Wait for the backup to load

7. Select "yes" on this windows, select "addons" and "addons data" on next windows
Image

Image

8. Your restore will now start. Wait until it finished
Image

9. Your addons will be in disabled state. Go to skin addons and enable it
Image

Note: some dependencies are deprecated and no longer supported. This warning will pop-out. You can ignore it.
Image

10. Now select your flavor, do a setting reset, and enjoy
I haven't cleaned all skin settings so it will use my customization. Do a reset and customize.
Image

Image

What is working?
I think the essentials features are working. Please note: I provide no support.

What's not working?
Skin backup and restore due to deprecated supporting add-ons.
Some dependency are still deprecated, but I think it won't bothering.

P.S. : Due to image post limitation, I will post the home screens on next post.
Viewing all 85461 articles
Browse latest View live


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