[mythtv-commits] Ticket #12536: Mythbrowser youtube and video html5

MythTV noreply at mythtv.org
Wed Nov 11 22:55:55 UTC 2015


#12536: Mythbrowser youtube and video html5
----------------------------------+-----------------------------
 Reporter:  morriscavestro@…      |          Owner:
     Type:  Bug Report - General  |         Status:  closed
 Priority:  major                 |      Milestone:  unknown
Component:  Plugin - MythBrowser  |        Version:  Unspecified
 Severity:  medium                |     Resolution:  Invalid
 Keywords:                        |  Ticket locked:  0
----------------------------------+-----------------------------
Changes (by natanojl):

 * status:  new => closed
 * resolution:   => Invalid


Comment:

 MythBrowser supports HTML5 but it requires one or several GStreamer
 libraries.  On my Debian system the gstreamer1.0-plugins-good package is
 required.  The full screen mode does not work but MythBrowser most likely
 cannot be blamed for that since it is broken in the Python code below as
 well.  If you want the full screen mode you should check out
 MythNetvision.  It still uses Flash but I will add support for HTML5 via
 #11092.

 {{{
 from PyQt5.QtCore import QUrl
 from PyQt5.QtWidgets import QApplication
 from PyQt5.QtWebKitWidgets import QWebView

 import sys

 def main():
     app = QApplication(sys.argv)
     webview = QWebView()
     webview.load(QUrl("http://www.youtube.com"))
     webview.show()
     app.exec_()

 if __name__ == "__main__":
     main()
 }}}

--
Ticket URL: <https://code.mythtv.org/trac/ticket/12536#comment:1>
MythTV <http://www.mythtv.org>
MythTV Media Center


More information about the mythtv-commits mailing list