pyqt4 phonon videoplayer HLS stream play well at local machine(win7 64bit) but cannot play at other machine

403 views Asked by At

I was made VideoPlayer(for HLS stream) with Python(v3.4.3 <32bit> Anaconda3) and PyQT4(v4.8.6). especially I use PyQT4.phonon's videoplayer.

And work hard...work..work...after.. Finally I finished applications. That play well in my local machine(win7 64bit). so I build up to .exe file with cx_freeze(v4.3.4). It play well too in my machine.

but problem occurs... It cannot play start stream at other machine. No error, execution is stable, GUI state good. but just cannot start play video.

My python code includes some modules. (like below)

import sys
import base64
from PyQt4 import QtGui, QtCore
from PyQt4.phonon import Phonon

Player code are simple

...

self.player.setCurrentSource(Phonon.MediaSource(url))

self.player.play()

...

I copied all files and folders that after convert cx_freeze generate files all. The other machine is Windows7 (64, 32), XP, bla..bla... Other machine has not installed Python.

Why cannot play stream at the other machines... please help me.

0

There are 0 answers