views:

389

answers:

2

Doe anybody know where i can get a sample silvelight mediaelement cloud similar to mojaveexperiment.com?

A: 

MojaveExperiment used Vertigo BigPicture

The company site is here

Graeme Bradbury
Hi Graeme,Thanks for the response. I know it was created by vertigo by the source for BigPicture is not public yet. I'm wonderring if there's a sample app that i could look at that mimics the behaviour of BigPicture.Thanks,Keith
Keith Rull
A: 

Answer and source code example here here

and in code:instead of

    Uri collectionUri;
        if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
            image.Source = collectionUri;

have

   Uri collectionUri;
        if (Uri.TryCreate(App.Current.Host.Source, "/Collection/items.bin", out collectionUri))
            msi.Source = new DeepZoomImageTileSource(collectionUri);

Found a thread that related to same question here

TStamper
@TStamper: The link that you sent is about reading data in the Azure cloud. I'm talking about building a MediaElement cloud similar to what is on the mojaveexperiment.com site. Thanks.
Keith Rull