-
Member
[RESOLVED] standalone player for linux 32 bit?
Hi I am trying acouple flash players for linux, I have one extension I wrote for chromium (libpepflashplayer.so) that launches an swf standalone but it takes like 25 seconds to start...
so I went to python which allowed me to create a browser standalone script that launches in 2 seconds :OOO
only thing the swf runs soooo slow with this python script
PHP Code:
from PyQt5.QtCore import QUrl from PyQt5.QtWidgets import QApplication from PyQt5.QtWebKitWidgets import QWebView from PyQt5.QtWebKit import QWebSettings import sys app = QApplication(sys.argv) view = QWebView()
view.show() view.setUrl(QUrl("http://google.com")) app.exec()
so does anyone know how to make a standalone window that will just run a flash shared object plugin? linux 32 bit processor architecture: armhf
the normal flash projectors wont run either
Last edited by Alloy Bacon; 09-08-2017 at 07:45 PM.
Need a freelancer to make you a custom android app? Find me at fiverr for as little as $5/android app for your business: fiverr
-
maybe you best need the linux or the python forumss
-
Member
No I might be fine, the thing with python thats really allowing it to work well with flash is getting an understanding of the shell its self
Here is how I use the script logged in to linux as root, you are going to need to get the pyqt webkit modules as well they dont come with a clean python install:
PHP Code:
from PyQt5.QtCore import QUrl from PyQt5.QtWidgets import QApplication from PyQt5.QtWebKitWidgets import QWebView from PyQt5.QtWebKit import QWebSettings import sys app = QApplication(sys.argv) view = QWebView() view.show() view.setUrl(QUrl("file:///root/Desktop/test.swf")) app.exec()
Last edited by Alloy Bacon; 09-11-2017 at 04:31 PM.
Need a freelancer to make you a custom android app? Find me at fiverr for as little as $5/android app for your business: fiverr
-
Member
I found something here also, there is some application called zinc to run it in a window on linux.
http://board.flashkit.com/board/show...ighlight=linux
Need a freelancer to make you a custom android app? Find me at fiverr for as little as $5/android app for your business: fiverr
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|