iPhone视频播放器例子

iPhone视频播放器例子

时间:2009-06-11 19:46 来源:未知 点击: <script src="/cms/plus/count.php?view=yes&aid=197&mid=1" type="text/javascript"></script> 13次
这篇文章是一个用iPhone播放视频的例子,使用iPhone非官方SDK。 代码的作者是hobbut 原文地址(俄文): http://blog.weho.ru/2008/04/primer-prostogo-videopleera.html main.m: int main( int argc, char *argv[]) { NSAut
  这篇文章是一个用iPhone播放视频的例子,使用iPhone非官方SDK。

 

代码的作者是hobbut

原文地址(俄文):http://blog.weho.ru/2008/04/primer-prostogo-videopleera.html


main.m:

 

int main(int argc, char *argv[])

{

    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

    int ret = UIApplicationMain(argc, argv, [SimpleMoviePlayerApp class]);

    [pool release];

    return ret;

}

 

 


SimpleMoviePlayer.h:

 

 

#import <UIKit/UIKit.h>

#import <GraphicsServices/GraphicsServices.h>

#import <MoviePlayerUI/UIEventObservableWindow.h>

#import <MoviePlayerUI/UIMovieView.h>

#import <MoviePlayerUI/UIMoviePlayerController.h>

 

@interface SimpleMoviePlayerApp : UIApplication

{

UIEventObservableWindow *mainWindow;

UIMoviePlayerController *playerController;

}

 

@end

 


SimpleMoviePlayer.m 

#import "SimpleMoviePlayerApp.h"

 

@implementation SimpleMoviePlayerApp

 

- (void)applicationDidFinishLaunching:(GSEventRef)event;

{

 

struct CGRect mainFrame = CGRectMake(0,0,320,480);

 

mainWindow = [[UIEventObservableWindow alloc] initWithContentRect:mainFrame];

 

playerController = [[UIMoviePlayerController alloc] initWithPlayerSize:[UIHardware mainScreenSize] isFullScreen:YES];

[[playerController playerView] setCanShowControlsOverlay:YES];

[playerController setControlsOverlayVisible:YES disableAutohide:NO animate: YES];

[playerController setAutoPlayWhenLikelyToKeepUp:YES];

    [playerController setDelegate:self];

[playerController prepareAndSetupUI];

[[playerController movieView] setMovieWithPath:@"http://192.168.0.2/video.m4v"];

 

[mainWindow setContentView:[playerController playerView]];

    [mainWindow orderFront:self];

}

 

- (void)moviePlayerDidFinishPlayback: (UIMoviePlayerController *)player userExited: (BOOL)userExited

{

NSLog(@"player normal exit");

[self terminateWithSuccess];

}

 

- (void)applicationWillTerminate;

{

NSLog(@"app normal exit");

[playerController release];

    [mainWindow release];

}

 

@end

 

你可以在这里下载这个源代码。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值