• 1
  • 82
  • 83
  • 84(current)
  • 85
  • 86
  • 90
Release IPTV Recorder
(2021-01-20, 14:58)mpetit480 Wrote: Hi
ts file have a size of 0.
Could you help me to make work IPTV Recorder ?
in Kodi 18.9 , kodi.log
2021-01-20 13:31:45.045 T:2880512880   ERROR: /storage/.kodi/addons/plugin.video.iptv.recorder/main.py:2330: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
                                              if channelname not in favourites and channelid:
2021-01-20 13:32:18.803 T:2451616624   ERROR: GetDirectory - Error getting plugin://plugin.video.iptv.recorder/record_once/7709/C111.api.telerama.fr/Arte
2021-01-20 13:32:22.097 T:2451616624   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <type 'exceptions.AttributeError'>
                                            Error Contents: 'NoneType' object has no attribute 'read'
                                            Traceback (most recent call last):
                                              File "/storage/.kodi/userdata/addon_data/plugin.video.iptv.recorder/jobs/8926de54-5b1b-11eb-ab61-dca6329255ad.py", line 28, in <module>
                                                data = p.stdout.read(1000000)
                                            AttributeError: 'NoneType' object has no attribute 'read'
                                            -->End of Python script error report<--
2021-01-20 13:41:57.443 T:2498745200   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <class 'locale.Error'>
                                            Error Contents: unsupported locale setting
                                            Traceback (most recent call last):
                                              File "/storage/.kodi/addons/plugin.video.iptv.recorder/contextEPG.py", line 54, in <module>
                                                usedLocale = locale.setlocale(locale.LC_TIME, "")
                                              File "/usr/lib/python2.7/locale.py", line 581, in setlocale
                                            Error: unsupported locale setting
                                            -->End of Python script error report<--

Hi, 

I created this modified version with encoding and locale fix. You only need to replace the polish weekdays and months with french (see how the month endings is differrent in polish language) in contextEPG.py.

If the weekdays and months are correct you only need to hashtag lookup_table date:
python:
#date = lookup_table(date)

plugin.video.iptv.recorder.zip
https://drive.google.com/file/d/1-7nF6WPH9KluKGOZQZozEaH-dK7n24Kt/view?usp=sharing

python:
def lookup_table(s):
   lookup_table = {
    "Stycznia": "Styczeń",   "Lutego": "Luty",
    "Marca": "Marzec",       "Kwietnia": "Kwiecień",
    "Maja": "Maj",           "Czerwca": "Czerwiec",
    "Lipca": "Lipiec",       "Sierpnia": "Sierpień",
    "Wrze\xc5\x9bnia": "Wrzesień",  "Pa\xc5\xbadziernika": "Październik",
    "Listopada": "Listopad", "Grudnia": "Grudzień",
    "Poniedzia\xc5\x82ek" : "Poniedziałek", "Wtorek" : "Wtorek",
    "\xc5\x9aroda": "Środa", "Czwartek" : "Czwartek",
    "Pi\xc4\x85tek" : "Piątek", "Sobota" : "Sobota",
    "Niedziela" : "Niedziela",
    }

    for k, v in lookup_table.items():
        s = s.replace(k, v)

    return s

It's also possible that your system is missing locale then you need to install them manually.
https://discourse.osmc.tv/t/locale-error/89141

On OSMC:
xml:
export LC_ALL="pl_PL.UTF-8"
export LC_CTYPE="pl_PL.UTF-8"
sudo dpkg-reconfigure locales
Reply
Hi there,

I get following error when trying to record (e.g. via pvr simple iptv client channels list):
Quote:2021-04-15 10:52:12.506 T:16172    INFO <general>: initializing python engine.
2021-04-15 10:52:12.814 T:16172   ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'AttributeError'>
                                                   Error Contents: 'str' object has no attribute 'decode'
                                                   Traceback (most recent call last):
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.iptv.recorder/context.py", line 13, in <module>
                                                       channel = channel.decode("utf8")
                                                   AttributeError: 'str' object has no attribute 'decode'
                                                   -->End of Python script error report<--
                                                   
2021-04-15 10:52:12.932 T:16172    INFO <general>: Python interpreter stopped
2021-04-15 10:56:15.307 T:14283    INFO <general>: CWinSystemAndroid:Big GrinestroyWindow

my setup is:
- chromecast with google tv (must be armv7-a architecture; at least droid hardware info says so)
- kodi 19 (matrix)
- installed pvr simple iptv client
- installed iptv recorder plugin for kodi matrix
- pointed to armv7-a-full ffmpeg (extracted -> not the one with .tar.bz2 extension) in iptv recorder settings
- set recording folder to internal storage of chromecast in iptv recorder settings

My guess is that there is still something wrong with the ffmpeg integration (btw i cannot find tools.ffmpeg-tools folder under /storage/.kodi/addons/)...
can anyone help? thanks in advance Smile
Reply
(2021-04-15, 11:22)jjojjo Wrote: Hi there,

I get following error when trying to record (e.g. via pvr simple iptv client channels list):
Quote:2021-04-15 10:52:12.506 T:16172    INFO <general>: initializing python engine.
2021-04-15 10:52:12.814 T:16172   ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'AttributeError'>
                                                   Error Contents: 'str' object has no attribute 'decode'
                                                   Traceback (most recent call last):
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.iptv.recorder/context.py", line 13, in <module>
                                                       channel = channel.decode("utf8")
                                                   AttributeError: 'str' object has no attribute 'decode'
                                                   -->End of Python script error report<--
                                                   
2021-04-15 10:52:12.932 T:16172    INFO <general>: Python interpreter stopped
2021-04-15 10:56:15.307 T:14283    INFO <general>: CWinSystemAndroid:Big GrinestroyWindow

my setup is:
- chromecast with google tv (must be armv7-a architecture; at least droid hardware info says so)
- kodi 19 (matrix)
- installed pvr simple iptv client
- installed iptv recorder plugin for kodi matrix
- pointed to armv7-a-full ffmpeg (extracted -> not the one with .tar.bz2 extension) in iptv recorder settings
- set recording folder to internal storage of chromecast in iptv recorder settings

My guess is that there is still something wrong with the ffmpeg integration (btw i cannot find tools.ffmpeg-tools folder under /storage/.kodi/addons/)...
can anyone help? thanks in advance Smile

A string can't be decoded, the problem is that this addon is not compatible with python 3 (Kodi v19). It needs to be translated. Translating it is not that hard, but it's a lot of work to do.
Reply
A translated version for Matrix you can find here: https://github.com/Publish3r/repository....v.recorder
It's working good, but there are still some issues. I don't know, if i can fix the few issues.
You can give it a try.
Reply
(2021-04-15, 16:52)Publish3r Wrote: A translated version for Matrix you can find here: https://github.com/Publish3r/repository....v.recorder
It's working good, but there are still some issues. I don't know, if i can fix the few issues.
You can give it a try.

Hi,

thanks a lot for your help!! Unfortunately it wasn't succesful so far. I'm getting a bit further and i'm able to hit "record and play" now but then I get following error:
Quote:16 12:18:29.353 T:11692   ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'xbmcswift2.urls.NotFoundException'>
                                                   Error Contents: No matching view found for /record_and_play/DE%3A+Das+Erste+HD
                                                   Traceback (most recent call last):
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.iptv.recorder/main.py", line 3433, in <module>
                                                       plugin.run()
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.xbmcswift2/lib/xbmcswift2/plugin.py", line 338, in run
                                                       items = self._dispatch(self.request.path)
                                                     File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.xbmcswift2/lib/xbmcswift2/plugin.py", line 324, in _dispatch
                                                       raise NotFoundException('No matching view found for %s' % path)
                                                   xbmcswift2.urls.NotFoundException: No matching view found for /record_and_play/DE%3A+Das+Erste+HD
                                                   -->End of Python script error report<--
                                                   
2021-04-16 12:18:29.639 T:11692    INFO <general>: Python interpreter stopped
2021-04-16 12:18:29.646 T:11691   ERROR <general>: GetDirectory - Error getting plugin://plugin.video.iptv.recorder/record_and_play/DE%3A+Das+Erste+HD
2021-04-16 12:18:29.655 T:10888   ERROR <general>: CGUIMediaWindow::GetDirectory(plugin://plugin.video.iptv.recorder/record_and_play/DE%3A+Das+Erste+HD) failed
2021-04-16 12:18:35.195 T:10860    INFO <general>: CAndroidUtils: Current resolution: 1920x1080 1920x1080 @ 59.940060 - Full Screen
2021-04-16 12:18:35.390 T:10888    INFO <general>: CWinSystemAndroid:Big GrinestroyWindow
2021-04-16 12:18:37.770 T:10860    INFO <general>: Got device sleep intent
2021-04-16 12:18:38.094 T:10888    INFO <general>: OnSleep: Running sleep jobs
2021-04-16 12:18:38.096 T:10888    INFO <general>: PumpPowerEvents: OnSleep called
Maybe some kind of incompatibility with the m3u?

greetings and once again: thank you very much :-)
Reply
Really happy to use every Day kodi and find many function i appreciate.
I actually use kodi 18.8 on my nvidia shield tv with catchup tv and more and iptv manager, work really fine and it's à real pleasure.
Now i will try to record some program with iptv recorder, after some problem with ffmpeg i was able to find the Good android version and my epg show fine in iptv recorder.
Try to put my record on a network attached storage and seems the config work well.
But.....
When i try to record a programm in iptv recorder screen, this one begins, create the folder for this programm, a json file and a ts file but the ts file was empty.
When i want to record something, i have a notification for the begining of the record and just after a notification for the end of the record, but like i said before only have create thé file but do not record anything.....
Where can be the issue ?
Reply
(2021-04-27, 16:38)MrPatate Wrote: Really happy to use every Day kodi and find many function i appreciate.
I actually use kodi 18.8 on my nvidia shield tv with catchup tv and more and iptv manager, work really fine and it's à real pleasure.
Now i will try to record some program with iptv recorder, after some problem with ffmpeg i was able to find the Good android version and my epg show fine in iptv recorder.
Try to put my record on a network attached storage and seems the config work well.
But.....
When i try to record a programm in iptv recorder screen, this one begins, create the folder for this programm, a json file and a ts file but the ts file was empty.
When i want to record something, i have a notification for the begining of the record and just after a notification for the end of the record, but like i said before only have create thé file but do not record anything.....
Where can be the issue ?
I'm having the same problem on Kodi 19.  

I used the plugin.video.iptv.recorder-1.0.zip file from here:
https://github.com/Publish3r/repository....v.recorder

I used the prebuilt-binaries armeabi-v7a ffmpeg file from here:
https://github.com/WritingMinds/ffmpeg-a...tag/v0.3.4

I created a folder for IPTV recordings on my USB hard drive that is attached to my Shield TV and used for OTA recordings.  

Did I use the right files for my Shield TV?
2019 Shield TV Pro with Tvheadend Client (Kodi) | Ugoos X3 Cube with CoreELEC as a Tvheadend server
Samsung UN65JS8500 TV | Onkyo TX-NR646 Receiver | HD Homerun Quatro Tuner
Reply
(2021-05-04, 02:56)RKCRLR Wrote:
(2021-04-27, 16:38)MrPatate Wrote: Really happy to use every Day kodi and find many function i appreciate.
I actually use kodi 18.8 on my nvidia shield tv with catchup tv and more and iptv manager, work really fine and it's à real pleasure.
Now i will try to record some program with iptv recorder, after some problem with ffmpeg i was able to find the Good android version and my epg show fine in iptv recorder.
Try to put my record on a network attached storage and seems the config work well.
But.....
When i try to record a programm in iptv recorder screen, this one begins, create the folder for this programm, a json file and a ts file but the ts file was empty.
When i want to record something, i have a notification for the begining of the record and just after a notification for the end of the record, but like i said before only have create thé file but do not record anything.....
Where can be the issue ?
I'm having the same problem on Kodi 19.  

I used the plugin.video.iptv.recorder-1.0.zip file from here:
https://github.com/Publish3r/repository....v.recorder

I used the prebuilt-binaries armeabi-v7a ffmpeg file from here:
https://github.com/WritingMinds/ffmpeg-a...tag/v0.3.4

I created a folder for IPTV recordings on my USB hard drive that is attached to my Shield TV and used for OTA recordings.  

Did I use the right files for my Shield TV?
I found this which discusses a similar problem:
https://github.com/primaeval/plugin.vide.../issues/27
I tried this file but the problem didn't change:
https://github.com/Khang-NT/ffmpeg-binar...ll.tar.bz2
2019 Shield TV Pro with Tvheadend Client (Kodi) | Ugoos X3 Cube with CoreELEC as a Tvheadend server
Samsung UN65JS8500 TV | Onkyo TX-NR646 Receiver | HD Homerun Quatro Tuner
Reply
(2021-05-04, 19:51)RKCRLR Wrote:
(2021-05-04, 02:56)RKCRLR Wrote:
(2021-04-27, 16:38)MrPatate Wrote: Really happy to use every Day kodi and find many function i appreciate.
I actually use kodi 18.8 on my nvidia shield tv with catchup tv and more and iptv manager, work really fine and it's à real pleasure.
Now i will try to record some program with iptv recorder, after some problem with ffmpeg i was able to find the Good android version and my epg show fine in iptv recorder.
Try to put my record on a network attached storage and seems the config work well.
But.....
When i try to record a programm in iptv recorder screen, this one begins, create the folder for this programm, a json file and a ts file but the ts file was empty.
When i want to record something, i have a notification for the begining of the record and just after a notification for the end of the record, but like i said before only have create thé file but do not record anything.....
Where can be the issue ?
I'm having the same problem on Kodi 19.  

I used the plugin.video.iptv.recorder-1.0.zip file from here:
https://github.com/Publish3r/repository....v.recorder

I used the prebuilt-binaries armeabi-v7a ffmpeg file from here:
https://github.com/WritingMinds/ffmpeg-a...tag/v0.3.4

I created a folder for IPTV recordings on my USB hard drive that is attached to my Shield TV and used for OTA recordings.  

Did I use the right files for my Shield TV?
I found this which discusses a similar problem:
https://github.com/primaeval/plugin.vide.../issues/27
I tried this file but the problem didn't change:
https://github.com/Khang-NT/ffmpeg-binar...ll.tar.bz2
I moved the ffmpeg (the arm64-v8a version) file to my Documents folder on my Shield TV.  I've had other issues wit access permissions on the Shield.  
It now will start recording however the recordings stop before the show is over.  This may be because I'm recording from Locast but I haven't donated yet (I still have another problem to solve before I commit).  
Also, Pluto.TV just won't record.  Should I expect to be able to record Pluto.TV?
2019 Shield TV Pro with Tvheadend Client (Kodi) | Ugoos X3 Cube with CoreELEC as a Tvheadend server
Samsung UN65JS8500 TV | Onkyo TX-NR646 Receiver | HD Homerun Quatro Tuner
Reply
(2021-05-04, 02:56)RKCRLR Wrote:
(2021-04-27, 16:38)MrPatate Wrote: Really happy to use every Day kodi and find many function i appreciate.
I actually use kodi 18.8 on my nvidia shield tv with catchup tv and more and iptv manager, work really fine and it's à real pleasure.
Now i will try to record some program with iptv recorder, after some problem with ffmpeg i was able to find the Good android version and my epg show fine in iptv recorder.
Try to put my record on a network attached storage and seems the config work well.
But.....
When i try to record a programm in iptv recorder screen, this one begins, create the folder for this programm, a json file and a ts file but the ts file was empty.
When i want to record something, i have a notification for the begining of the record and just after a notification for the end of the record, but like i said before only have create thé file but do not record anything.....
Where can be the issue ?
I'm having the same problem on Kodi 19.  

I used the plugin.video.iptv.recorder-1.0.zip file from here:
https://github.com/Publish3r/repository....v.recorder

I used the prebuilt-binaries armeabi-v7a ffmpeg file from here:
https://github.com/WritingMinds/ffmpeg-a...tag/v0.3.4

I created a folder for IPTV recordings on my USB hard drive that is attached to my Shield TV and used for OTA recordings.  

Did I use the right files for my Shield TV?

I use an IPTV Recorder 0.0.131 version (for a kodi 18 from primaeval's repo!?!) and my ffmpeg version seems to be well recognised. My record start well (no ffmpeg issue notification or something els) but end soon and give me a 0ko file.
Can I try to use Publish3r version (for Matrix) on a Kodi Leia?
Reply
Thanks Work on Octagon sx88 4k KODi 18.9

Thanks ! Wink
Reply
(2021-07-01, 13:28)Bua12120 Wrote: Thanks Work on Octagon sx88 4k KODi 18.9

Thanks ! Wink

What version of the addon did you install? Did you make any specific change?
Windows 11 x64 | Kodi 19 | Developer of Orange TV addon
Reply
helllo i am new here
how to Point to the ffmpeg exe in Settings in windows 10?thx
Reply
(2020-05-07, 10:33)kibtu Wrote: Hi!

I am trying this great addon on two pc, but no luck so far. When it starts to record, after 1 second it say "Recording finished". What am I doing wrong?
Win10, Kodi 18.6, Ffmpeg installed on desktop and linked, I tried on Estuary and Xonfluence skin. I tried with only IPTV PVR Simple Client and IPTV Recorder installed.

This is how my m3u file looks like:
Code:
#EXTM3U tvg-shift=2
#EXTINF:-1 group-title="Slovenski" tvg-id="1000259" tvg-name="1000259" tvg-logo="SLO_1.png",[COLOR gold]SLO 1[/COLOR]
https://tv.si/ts/Slo1/stream_multi.m3u8|User-Agent="AppleCoreMedia/1.0.0.8C148 (iPad; U; CPU OS 4_2_1 like Mac OS X; en_us)"

RECORD ONCE - starts recording and immediately stops it.
REMIND ONCE - works fine.
WATCH ONCE - stops other stream, but does not and play the channel.
PLAY CHANNEL - works fine.

I tried NUKE, reset ...

I will appreciate any help. Thanks!

UPDATE:
Here is my logfile: http://paste.kodi.tv/rekifanufo

I have the same problem .

On Android systems it works perfectly for me,

on Windows 10 it doesn't ...
Reply
@primaeval  any solution ?
Reply
  • 1
  • 82
  • 83
  • 84(current)
  • 85
  • 86
  • 90

Logout Mark Read Team Forum Stats Members Help
IPTV Recorder4