[ANN] SqueakMovieMorph (Alpha) plays any video file playable by QuickTime

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[ANN] SqueakMovieMorph (Alpha) plays any video file playable by QuickTime

Sean P. DeNigris
Administrator
Installation:
Gofer new
    squeaksource: 'MetacelloRepository';
    package: 'ConfigurationOfFFI';
    load.

((Smalltalk at: #ConfigurationOfFFI) project latestVersion) load.

Gofer new
    squeaksource: 'SophieGoldDig';
    package: 'SpdQT';
    load.

Then, blow your mind by playing a video in-image with:
aURI := URI fromString: 'file:///path/to/video.ext'.
movie := QuickTimeMovie openMovieFromURI: aURI.
m := SqueakMovieMorph openOn: movie.

Pharo 1.1.1 - there will be two errors – for both, go into the debugger and remove the isFinalizationSupported checks.


Sean DeNigris
[hidden email]





Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: [ANN] SqueakMovieMorph (Alpha) plays any video file playable by QuickTime

Sean P. DeNigris
Administrator
Forgot to mention, right now the prototype only works on Mac.  I'm not sure how hard it would be to have it work on other platforms.  It may be easy as I just hardcorded the Mac platform references and there was other-platform code that can be re-enabled.

Sean
Cheers,
Sean