Polish EPG - New source
Re: Polish EPG - New source #21
Posted 27 March 2023 - 22:38
Octagon SF8008, OATV 7.3
Re: Polish EPG - New source #22
Posted 28 March 2023 - 07:18
I do not have any problems on how you do it.
In this case IPTV channels: This sort of channels are always a problem. IPTV does not have service refs. They have to be assigned by the user.
In the past I have used fake ones, by the lack of something better.
Now you have used the DVB-T service refs for the TVP-3 regional channels. This is perfectly OK. In fact even better.
(I did not have these to begin with).
So no problem here.
And if some-one wants to stick to other service refs for some channels. There is a solution. They can be added to the custom.channels.xml file.
Channels entered in this file will always be linked.
Edited by doglover, 28 March 2023 - 07:20.
~~Rytec Team~~
Maxytec Multibox SE OpenPli (used as mediaplayer)
Mutant HD2400 OpenPli
Vu+ Duo OpenPli (backup)
Synology NAS
Sat: 13E, 19.2E, 23.5E and 28.2E
*Pli/Rytec EPG POWERED*
Re: Polish EPG - New source #23
Posted 20 November 2023 - 17:04
azman, it seems that at least these channels are showing wrong description (<desc> tag), could you please check what could be wrong with the grabber? Thanks
TVP 1 TVP 2 TVP HD TVP Historia TVP Kultura TVP Seriale TVP Dokument TVP Wilno TVP Kobieta Canal+ Sport Canal+ Sport 2 Canal+ Sport 3 Canal+ Sport 4 Eleven Sports 1 Ale Kino+ Filmbox Extra Filmbox Premium Filmbox Family Filmbox Action Filmbox Arthouse FOX HD Kino TV Paramount Channel
Re: Polish EPG - New source #24
Posted 20 November 2023 - 20:55
Edited by azman, 20 November 2023 - 21:01.
Octagon SF8008, OATV 7.3
Re: Polish EPG - New source #25
Re: Polish EPG - New source #26
Posted 26 December 2023 - 18:03
Edited by azman, 26 December 2023 - 18:08.
Octagon SF8008, OATV 7.3
Re: Polish EPG - New source #27
Re: Polish EPG - New source #28
Re: Polish EPG - New source #29
Re: Polish EPG - New source #30
Posted 1 January 2024 - 20:36
Hi Willy
EPGImport] Selected sources: ["Polska - Dodatkowy", "Polska - Podstawowy"] [EPGImport] Downloading: http://www.topolowa4...an_basic.xml.xz to local path: /media/hdd/epgimport.tmp [EPGImport] checkValidServer server url: http://www.topolowa4...an_basic.xml.xz [EPGImport] download failed: <twisted.python.failure.Failure builtins.Exception: checkValidServer: wrong date format in LastUpdate.txt. Rejecting server: http://www.topolowa4.pl> [EPGImport] Downloading: http://www.topolowa4...man_misc.xml.xz to local path: /media/hdd/epgimport.tmp [EPGImport] checkValidServer server url: http://www.topolowa4...man_misc.xml.xz [EPGImport] download failed: <twisted.python.failure.Failure builtins.Exception: checkValidServer: wrong date format in LastUpdate.txt. Rejecting server: http://www.topolowa4.pl> [EPGImport] Save the EPGchache to database file /media/hdd/epg.dat ... [EPGImport] EPG cache time updated ...
Octagon SF8008, OATV 7.3
Re: Polish EPG - New source #31
Posted 2 January 2024 - 08:15
@azman:
I checked yesterday your LastUpdate.txt file. And this looked OK to me.
I am generating this with bash script (Cygwin):
rm $EPGDIR/LastUpdate.txt echo $(date -I) > $EPGDIR/LastUpdate.txt
~~Rytec Team~~
Maxytec Multibox SE OpenPli (used as mediaplayer)
Mutant HD2400 OpenPli
Vu+ Duo OpenPli (backup)
Synology NAS
Sat: 13E, 19.2E, 23.5E and 28.2E
*Pli/Rytec EPG POWERED*
Re: Polish EPG - New source #32
Posted 2 January 2024 - 21:36
Hi Willy
@echo off REM -------------------Create LastUpdate txt file ----------------------------------- rem The four lines below will give you reliable YY DD MM YYYY HH Min Sec MS variables in XP Pro and higher. for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a" set "YY=%dt:~2,2%" & set "YYYY=%dt:~0,4%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%" set "HH=%dt:~8,2%" & set "Min=%dt:~10,2%" & set "Sec=%dt:~12,2%" & set "MS=%dt:~15,3%" set "datestamp=%YYYY%-%MM%-%DD%" echo datestamp: "%datestamp%" >"LastUpdate.txt" echo %datestamp% REM ---------- Compress XML to XZ with 7Zip ----------------------------------- cd C:\Users\azman\GOTOWE_EPG for %%a in (*.xml) do "\Program Files\7-Zip\7z.exe" a "%%~na.xml.xz" "%%a" REM --------------------------------------------------------------------------- REM ---------- Transfer XZ File to FTP with WinSCP ---------------------------- "C:\Program Files (x86)\WinSCP\WinSCP.com" ^ /log="C:\Users\azman\GOTOWE_EPG\WinSCP.log" /ini=nul ^ /command ^ "open ftp://xxxxx:yyyyyyy@ftp.cluster026.hosting.ovh.net/" ^ "lcd C:\Users\azman\GOTOWE_EPG" ^ "cd /www" ^ "put azman_basic.xml.xz" ^ "put azman_misc.xml.xz" ^ "put azman_iptv.xml.xz" ^ "put azman_radio.xml.xz" ^ "put azman_itvn.xml.xz" ^ "put azman_vod_pb.xml.xz" ^ "put LastUpdate.txt" ^ "exit" set WINSCP_RESULT=%ERRORLEVEL% if %WINSCP_RESULT% equ 0 ( echo Success ) else ( echo Error ) exit /b %WINSCP_RESULT% REM ---------------------------------------------------------------------------
This confuses me a bit, if the manual launch works ok, why is it not ok in the W10 task scheduler?
Octagon SF8008, OATV 7.3
Re: Polish EPG - New source #33
Posted 2 January 2024 - 22:02
Strange.
But I have seen also strange behaviour of the taskscheduler in W10.
(not lately, though)
I am uploading (and creating the LastUpdate file) with my Linux receiver.
It is more a matter of convenience.
(the uploads are with curl)
Creating LastUpdate:
rm $EPGDIR/LastUpdate.txt echo $(date -I) > $EPGDIR/LastUpdate.txt
Uploading files:
curl -T $EPGDIR/filename.xz --max-time 120 --user user:password ftp://rytec.epgspot.com:21/rytec_epg/ and curl -T $EPGDIR/LastUpdate.txt --max-time 30 --user user:password ftp://rytec.epgspot.com:21/rytec_epg/
Hope this helps.
BTW: I have not written any .bat files for several years. Not since I am using cygwin on Windows.
cygwin has the bash script built in and so I can use all the powerfull commands of Linux on Windows.
~~Rytec Team~~
Maxytec Multibox SE OpenPli (used as mediaplayer)
Mutant HD2400 OpenPli
Vu+ Duo OpenPli (backup)
Synology NAS
Sat: 13E, 19.2E, 23.5E and 28.2E
*Pli/Rytec EPG POWERED*
Re: Polish EPG - New source #34
Re: Polish EPG - New source #35
Posted 18 February 2024 - 13:33
~~Rytec Team~~
Maxytec Multibox SE OpenPli (used as mediaplayer)
Mutant HD2400 OpenPli
Vu+ Duo OpenPli (backup)
Synology NAS
Sat: 13E, 19.2E, 23.5E and 28.2E
*Pli/Rytec EPG POWERED*
Re: Polish EPG - New source #36
Re: Polish EPG - New source #37
Re: Polish EPG - New source #38
Re: Polish EPG - New source #39
Re: Polish EPG - New source #40
10 user(s) are reading this topic
0 members, 10 guests, 0 anonymous users