python - Creating a image browser in PyQt?? Where to start? -
i make using pyqt: https://vimeo.com/110260781
it image sequence player/browser. have basic pyqt knowledge, not enough know how start project this. or qt classes at.
so guess hardest viewer. how go making image sequence viewer. media packages available within qt deals media playback.
any awesome!
here quick mockup http://i67.tinypic.com/5347k3.jpg
you can media playback widgets in phonon
subpackage.
depending on how complex want layout, have few choices. if want show single video @ time, use normal qlayout
classes.
if want more complex stuff in example linked, tiled video players, possibly ability scale each video player , select them, etc., want use qgraphicsview
/qgraphicsscene
. allow draw widget way want, , allows embed other widgets (like phonon
media widgets) using qgraphicsproxywidget
class.
Comments
Post a Comment