Here's the newest log
https://paste.kodi.tv/wihetoviqi
And here's the content from the job folder
# -*- coding: utf-8 -*-
import os, subprocess, time
import xbmc,xbmcvfs,xbmcgui
xbmcgui.Dialog().notification("Recording: FR : EURONEWS", "Prime Edition", sound=True)
cmd = ['/data/data/org.xbmc.kodi/ffmpeg', '-i', u'http://8******.***:6969/live/m#####@yahoo.com/Q0f5d###/1550.ts', '-reconnect', '1', '-reconnect_at_eof', '1', '-reconnect_streamed', '1', '-reconnect_delay_max', '300', '-y', '-t', '630', '-c', 'copy', '-f', 'mpegts', '-']
stdout = open(r'/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.video.iptv.recorder/jobs/744e6bdc-b91a-11e8-8a7d-9d2531df79e6.py.stdout.txt','w+')
stderr = open(r'/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.video.iptv.recorder/jobs/744e6bdc-b91a-11e8-8a7d-9d2531df79e6.py.stderr.txt','w+')
p = subprocess.Popen(cmd, stdout=stdout, stderr=stderr, shell=False)
f = open(r'/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/userdata/addon_data/plugin.video.iptv.recorder/jobs/744e6bdc-b91a-11e8-8a7d-9d2531df79e6.py.pid', 'w+')
f.write(repr(p.pid))
f.close()
video = xbmcvfs.File(r'/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/temp/Other/Prime Edition - FR %3A EURONEWS - 2018-09-15 14-00.ts','wb')
while True:
data = p.stdout.read(1000000)
video.write(data)
video.close()
stderr.close()
stdout.close()
xbmcgui.Dialog().notification("Recording finished: FR : EURONEWS", "Prime Edition", sound=True)