Re: fullscreen quicktime across multiple monitors
Re: fullscreen quicktime across multiple monitors
- Subject: Re: fullscreen quicktime across multiple monitors
- From: Memo Akten <email@hidden>
- Date: Fri, 17 Oct 2008 22:40:10 +0100
I ended up writing a little app that plays a movie across all
displays. If anyone else needs it (or has some advice to make it
better) its here
http://www.memo.tv/msa_qt_player_fullscreen_quicktime_player_across_multiple_video_outs
-------------------------------------------
Memo (Mehmet S. Akten)
www.memo.tv
email@hidden
mob: +44 (0) 7958 783 832
landline: +44 (0) 20 8123 9986
29 Ironworks
Dace Rd
London E3 2NX, UK
On 22 Sep 2008, at 11:52, Memo Akten wrote:
ah thanks, will try it out.
On 21 Sep 2008, at 23:19, Jean-Daniel Dupas wrote:
You are free to setup a window yourself , add a QTMovieView in it,
and display it as you need.
NSRect contents = [aScreen frame];
contents.origin = NSZeroPoint;
NSWindow *window = [super initWithContentRect:contents
styleMask:NSBorderlessWindowMask
backing: NSBackingStoreRetained
defer:NO screen:aScreen];
[window setContentView:myMovieView];
SetSystemUIMode(kUIModeAllSuppressed, kUIOptionAutoShowMenuBar);
[window makeKeyAndOrderFront];
Le 21 sept. 08 à 23:58, Memo Akten a écrit :
hmm, yea does seem a bit problematic..... so is it not possible
to play quicktime across multiple monitors then? those threads
seem to have not come to a solution...
On 19 Sep 2008, at 17:48, Sean McBride wrote:
It does, doesn't it. However, it has lots of little problems,
and is
only really useful for the simplest of cases. Search the list
archives
for "enterFullScreenMode".
On 9/19/08 9:42 AM, Memo Akten said:
wow that looks perfect thanks..
On 19 Sep 2008, at 05:10, John C. Randolph wrote:
On Sep 17, 2008, at 12:03 PM, Memo Akten wrote:
Hi All, I'd like to create a little app the runs a quicktime
movie
(prores) fullscreen across multiple monitors. I think I can
figure
out the QTKit stuff, but couldn't find upto date documentation
on
going fullscreen. I've found some code snippets to do it, but
they
are all pre-leopard and I have a feeling that its a bit more
straightforward on leopard (i'm hoping). Can anyone point me
in the
right direction? (or has this already been done?) Its for
personal
use and not distribution so min specs 10.5.5 etc. is fine.
Leopard introduced a new API for this. See NSView's
enterFullScreenMode:withOptions: method.
--
____________________________________________________________
Sean McBride, B. Eng email@hidden
Rogue Research www.rogue-research.com
Mac Software Developer Montréal, Québec, Canada
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden