A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: [RESOLVED] standalone player for linux 32 bit?

  1. #1
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404

    resolved [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 AS3.0; 09-08-2017 at 07:45 PM.

  2. #2
    Member
    Join Date
    Oct 2016
    Posts
    54
    maybe you best need the linux or the python forumss

  3. #3
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404
    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 AS3.0; 09-11-2017 at 04:31 PM.

  4. #4
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center