- Timestamp:
- 02/10/17 13:24:04 (5 years ago)
- Location:
- titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/mediathek/localparser_secret/sportsondemand.sh
r39959 r39969 287 287 288 288 if [ `cat $TMP/cache.$PARSER.$INPUT.$FROM.$FILENAME.12 | grep "Authorization required" | wc -l` -eq 1 ];then 289 URL="errormsg= 'add VK User/Pass on settings'"289 URL="errormsg=They need a https://vk.com access to use this Full stream, add VK User/Pass on Tithek Settings" 290 290 else 291 291 cat $TMP/cache.$PARSER.$INPUT.$FROM.$FILENAME.12 | sed 's!<source src=!\nfound=!g' | grep ^found | grep .720. | cut -d'"' -f2 > $TMP/cache.$PARSER.$INPUT.$FROM.$FILENAME.13.720 -
titan/plugins/tithek/tithek.h
r39967 r39969 1492 1492 } 1493 1493 1494 printf("tmpstr1: %s\n", tmpstr1);1494 // printf("tmpstr1: %s\n", tmpstr1); 1495 1495 1496 1496 if(!ostrncmp("errormsg=", tmpstr1, 9)) 1497 1497 { 1498 tmpstr2 = string_resub("errormsg='", "'", tmpstr1, 0); 1499 tmpstr = ostrcat(_("Found error Msg:"), "\n\n", 0, 0); 1500 tmpstr = ostrcat(tmpstr, tmpstr2, 1, 0); 1501 printf("Found error Msg: %s\n", tmpstr2); 1502 textbox(_("Message"), tmpstr, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 0); 1503 free(tmpstr); tmpstr = NULL; 1498 // tmpstr2 = string_resub("errormsg='", "'", tmpstr1, 0); 1499 // tmpstr = ostrcat(_("Found error Msg:"), "\n\n", 0, 0); 1500 // tmpstr = ostrcat(tmpstr, tmpstr2, 1, 0); 1501 1502 tmpstr1 = string_replace_all("errormsg=", "", tmpstr1, 1); 1503 1504 printf("Found error Msg: %s\n", tmpstr1); 1505 textbox(_("Message"), tmpstr1, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 0); 1506 // free(tmpstr); tmpstr = NULL; 1504 1507 free(tmpstr1); tmpstr1 = NULL; 1505 free(tmpstr2); tmpstr2 = NULL;1508 // free(tmpstr2); tmpstr2 = NULL; 1506 1509 } 1507 1510 else if(ostrncmp("http", tmpstr1, 4) && ostrncmp("rtmp", tmpstr1, 4) && ostrncmp("mms", tmpstr1, 3) && ostrncmp("rtsp", tmpstr1, 4)) 1508 1511 { 1509 tmpstr = ostrcat(_(" Error cant find http*|rtmp*|mms*|rtsp* Stream Link"), "\n\n", 0, 0);1512 tmpstr = ostrcat(_("Parsing Error cant find http*|rtmp*|mms*|rtsp* Stream Link"), "\n\n", 0, 0); 1510 1513 tmpstr = ostrcat(tmpstr, tmpstr1, 1, 0); 1511 printf(" Error cant find http*|rtmp*|mms*|rtsp* Stream Link: %s\n", tmpstr1);1514 printf("Parsing Error cant find http*|rtmp*|mms*|rtsp* Stream Link: %s\n", tmpstr1); 1512 1515 textbox(_("Message"), tmpstr, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 0); 1513 1516 free(tmpstr); tmpstr = NULL;
Note: See TracChangeset
for help on using the changeset viewer.