Jump to content


Photo

OpenWebif [E2OpenPlugins]


  • Please log in to reply
1459 replies to this topic

Re: OpenWebif [E2OpenPlugins] #1401 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 10 January 2015 - 13:16

and

 


Edited by Dima73, 10 January 2015 - 19:12.

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1402 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 11 January 2015 - 13:44

Requires optional patch, if the timer is currently recording.

--- a/plugin/controllers/models/timers.py
+++ b/plugin/controllers/models/timers.py 
@@ -314,8 +314,14 @@
 				timer.enable()
 				effect = "enabled"
 			else:
-				timer.disable()
-				effect = "disabled"
+				if timer.isRunning():
+					return {
+						"result": False,
+						"message": _("The timer '%s' now recorded! Not disabled!") % (timer.name)
+					}
+				else:
+					timer.disable()
+					effect = "disabled"
 			rt.timeChanged(timer)
 			return {
 				"result": True,

Sorry for my terrible English...


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1403 ims

  • PLi® Core member
  • 13,608 posts

+211
Excellent

Posted 11 January 2015 - 16:11

When is created timer via partnerbox ( = using openwebif routines ), timer's icon is visible on remote receiver in EPG list, but it is not editable with Green. It seems, still some parameters are not sended ?


Kdo nic nedělá, nic nezkazí!

Re: OpenWebif [E2OpenPlugins] #1404 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 11 January 2015 - 16:41

When is created timer via partnerbox ( = using openwebif routines ), timer's icon is visible on remote receiver in EPG list, but it is not editable with Green. It seems, still some parameters are not sended ?

Need fix partnerbox.

PartnerboxEPGSelection.py

def Partnerbox_onCreate(self):
	try:
		if not hasattr(self, 'partnerboxentry'):
			self.PartnerboxInit(True)
		baseonCreate(self)
		self.GetPartnerboxTimerlist()
	except:
		pass

I almost finished it.


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1405 gabrielinio_39

  • Member
  • 7 posts

0
Neutral

Posted 14 January 2015 - 13:51

OPENWEBIF solose version can t stream chanels with vlc on my pc ?



Re: OpenWebif [E2OpenPlugins] #1406 SpaceRat

  • Senior Member
  • 1,030 posts

+65
Good

Posted 14 January 2015 - 14:04

Try setting the Option "Add service name to stream information" to No.
1st box: Vu+ Ultimo 4k 4xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
2nd box: Gigablue Quad 4k 2xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
testing boxes: Vu+ Duo² + AX Quadbox HD2400 + 2x Vu+ Solo² + Octagon SF4008
Sats & Pay-TV: Astra 19.2°E + Hotbird 13°E with Redlight / SCT HD / SES Astra HD- / Sky V14 / 4th empire propaganda TV
Card-Server: Raspberry Pi + IPv6-capable oscam
Router: Linksys WRT1900ACS w/ LEDE + Fritz!Box 7390

Re: OpenWebif [E2OpenPlugins] #1407 gabrielinio_39

  • Member
  • 7 posts

0
Neutral

Posted 14 January 2015 - 16:13

Try setting the Option "Add service name to stream information" to No.                 i dont have this option



Re: OpenWebif [E2OpenPlugins] #1408 gabrielinio_39

  • Member
  • 7 posts

0
Neutral

Posted 14 January 2015 - 16:33

ok i find in plugin but not work:(



Re: OpenWebif [E2OpenPlugins] #1409 Kirillm

  • Member
  • 12 posts

0
Neutral

Posted 14 January 2015 - 22:00

Update Ukrainian locale

Attached Files


Formuler F3+USB DVB-C Sundtek


Re: OpenWebif [E2OpenPlugins] #1410 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 19 January 2015 - 07:21

update russian locale

--- a/locale/ru.po
+++ b/locale/ru.po
@@ -1161,10 +1161,13 @@
 msgstr "Таймер '%s' не сохранен из-за конфликта"
 
 msgid "Could not find timer '%s' with given start and end time!"
-msgstr ""
+msgstr "Не удалось найти таймер '%s' с заданным временем начала и окончания!"
 
+msgid "The timer '%s' now recorded! Not disabled!"
+msgstr "Таймер '%s' сейчас записывается! Невозможно отключить!"
+
 msgid "The timer '%s' has been deleted successfully"
-msgstr "Не удалось найти таймер '%s' с заданным временем начала и окончания!"
+msgstr "Таймер '%s' был успешно удален"
 
 msgid "No matching Timer found"
 msgstr "Не найден соответствующий таймер"

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1411 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 21 January 2015 - 22:19

and

--- a/plugin/controllers/models/timers.py
+++ b/plugin/controllers/models/timers.py
@@ -313,12 +313,25 @@
 			if timer.disabled:
 				timer.enable()
 				effect = "enabled"
+				sanity = TimerSanityCheck(rt.timer_list, timer)
+				if not sanity.check():
+					timer.disable()
+					return {
+						"result": False,
+						"message": _("Timer '%s' not enabled while Conflict") % (timer.name)
+					}
+				elif sanity.doubleCheck():
+					timer.disable()
+					return {
+						"result": False,
+						"message": _("Timer '%s' already exists!") % (timer.name)
+					}
 			else:
 				if timer.isRunning():
 					return {
 						"result": False,
 						"message": _("The timer '%s' now recorded! Not disabled!") % (timer.name)
-						}
+					}
 				else:
 					timer.disable()
 					effect = "disabled"

GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1412 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 30 January 2015 - 06:36

 

and

--- a/plugin/controllers/models/timers.py
+++ b/plugin/controllers/models/timers.py
@@ -313,12 +313,25 @@
 			if timer.disabled:
 				timer.enable()
 				effect = "enabled"
+				sanity = TimerSanityCheck(rt.timer_list, timer)
+				if not sanity.check():
+					timer.disable()
+					return {
+						"result": False,
+						"message": _("Timer '%s' not enabled while Conflict") % (timer.name)
+					}
+				elif sanity.doubleCheck():
+					timer.disable()
+					return {
+						"result": False,
+						"message": _("Timer '%s' already exists!") % (timer.name)
+					}
 			else:
 				if timer.isRunning():
 					return {
 						"result": False,
 						"message": _("The timer '%s' now recorded! Not disabled!") % (timer.name)
-						}
+					}
 				else:
 					timer.disable()
 					effect = "disabled"

Please add this patch :( .


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1413 gabrielinio_39

  • Member
  • 7 posts

0
Neutral

Posted 24 February 2015 - 15:20

vusolose openpli last image vlc not stream wit openwebif ?



Re: OpenWebif [E2OpenPlugins] #1414 mavis07

  • Member
  • 24 posts

0
Neutral

Posted 21 May 2015 - 20:09

Hi, how can i change to port "8001" for openwebif.

 

Please help.



Re: OpenWebif [E2OpenPlugins] #1415 gerard0610

  • Senior Member
  • 939 posts

+41
Good

Posted 21 November 2015 - 12:09

I would like to adjust my rotating dish via OpenWebif/Mobile  (Smartphone or Tablet) by a possibility to select a service via a new to creating possibility “Satellites”.

 

In the receiver menu I do this as follows:
Channel list – Satellites (green button) – select the required Satellite position (e.g. 53 East) – select the required service (e.g.  Al-Anwar 2).

Then the dish will rotate to position 53 East and I can fine adjust the rotating dish mechanical in combination with my smartphone.

 

Is it possible to introduce this option in OpenWebif/Mobile?



Re: OpenWebif [E2OpenPlugins] #1416 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 23 November 2015 - 14:05

OpenWebif/Mobile how to install it to the test?


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1417 SpaceRat

  • Senior Member
  • 1,030 posts

+65
Good

Posted 23 November 2015 - 17:58

Just add "/mobile" to the URL to open the mobile version even inside a normal browser.

 

E.g.:

http://vusolo2.fritz.box/mobile


1st box: Vu+ Ultimo 4k 4xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
2nd box: Gigablue Quad 4k 2xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
testing boxes: Vu+ Duo² + AX Quadbox HD2400 + 2x Vu+ Solo² + Octagon SF4008
Sats & Pay-TV: Astra 19.2°E + Hotbird 13°E with Redlight / SCT HD / SES Astra HD- / Sky V14 / 4th empire propaganda TV
Card-Server: Raspberry Pi + IPv6-capable oscam
Router: Linksys WRT1900ACS w/ LEDE + Fritz!Box 7390

Re: OpenWebif [E2OpenPlugins] #1418 Dimitrij

  • PLi® Core member
  • 9,967 posts

+335
Excellent

Posted 23 November 2015 - 20:10

The question  ask here https://github.com/E...ebif/issues/new


GigaBlue UHD Quad 4K /Lunix3-4K/Solo 4K


Re: OpenWebif [E2OpenPlugins] #1419 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 19 December 2015 - 22:32

Hi,

Trying to make a backup wih bouqueteditor fails with the following mesage:

Error while preparing backup file, /etc/tuxbox/cables.xml does not exists.
It seems that cables/terrestrial/satellites are mandatory, although if we only have DVB-S2 makes no sense to backup cables and terrestrial.

			files.append(checkfile)
			files.append("/etc/enigma2/bouquets.tv")
			files.append("/etc/enigma2/bouquets.radio")
			files.append("/etc/enigma2/userbouquet.favourites.tv")
			files.append("/etc/enigma2/userbouquet.favourites.radio")
			files.append("/etc/enigma2/lamedb")
			files.append("/etc/tuxbox/cables.xml")
			files.append("/etc/tuxbox/terrestrial.xml")
			files.append("/etc/tuxbox/satellites.xml")
			if config.ParentalControl.configured.value:
				if config.ParentalControl.type.value == "blacklist":
					files.append("/etc/enigma2/blacklist")
				else:
					files.append("/etc/enigma2/whitelist")
			files += self.getPhysicalFilenamesFromServicereference(eServiceReference('1:7:1:0:0:0:0:0:0:0:FROM BOUQUET "bouquets.tv" ORDER BY bouquet'))
			files += self.getPhysicalFilenamesFromServicereference(eServiceReference('1:7:1:0:0:0:0:0:0:0:FROM BOUQUET "bouquets.radio" ORDER BY bouquet'))
			tarFiles = ""
			for arg in files:
				if not path.exists(arg):
					return (False, "Error while preparing backup file, %s does not exists." % arg)
Can we add those only when they exist? (And also backup the user xml if exists under enigma2 folder)?

			for xml in ("/etc/tuxbox/cables.xml", "/etc/tuxbox/terrestrial.xml", "/etc/tuxbox/satellites.xml"):
				if os.path.exists(xml):
					files.append(xml)
			for xml in ("/etc/enigma2/cables.xml", "/etc/enigma2/terrestrial.xml", "/etc/enigma2/satellites.xml"):
				if os.path.exists(xml):
					files.append(xml)
What do you think?
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: OpenWebif [E2OpenPlugins] #1420 marqo

  • Member
  • 1 posts

0
Neutral

Posted 13 January 2016 - 01:17

Is there any log for openwebif where I can find information about users conected and streaming?




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users