Create Interactive Videos on iPad - Product Demo Application

I would like to create videos that need to be run in the iPad app. The application should demonstrate the demonstration of the product via the iPad. It should also be interactive. I know that we can do this in Flash, since Flash is not supported on the iPad, what are my options?

I appreciate any advice or tips. Thank you in advance

+5
source share
3 answers

The easiest way to create interactive videos for iOS is to use Apple HTTP Live Streaming technology . You need to create the video, embed the metadata , play it with MPMoviePlayerControlleror AVPlayerItem, and then display the areas with interactive access in response to the notification metadata.

The metadata must contain the coordinates for the item being tracked, for example: dress and product identifier. You view this information using an interactive subquery that displays more product information. There are several applications of this type in iTunes, here is one .

, . - Adobe After Effects, - OpenCV.

+1

:

MPMoviePlayerController , .

, HTML- :

(, NSDictionary), . , popover .

:

@interface InteractivePopover : NSObject
{
    NSString *snippetTitle;
    NSString *htmlData; // could include links etc.
    CGPoint popoverDisplayPoint;
    // other styling attributes etc.
}

, , "" ( ) () , .

, , , , ( ..) popovers. UIWebView HTML. popover.

, , .. HTML popovers.

, .

0

Although the flash will not work on the ipad, you can still create applications for it with the cs5 flash.

0
source

All Articles