MPMoviePlayerController 를 사용한
오디오 스트리밍 재생
MPMoviePlayerController 를 사용하기 위해 MediaPlayer framework를 프로젝트에 추가 후 예제를 참고하자.
NSURL *url = [NSURL URLWithString:@"http://www.example.com/myvideo.m4v"];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:url];
[player play];
재생할 파일을 변경할 경우 아래를 참고하자.
NSString *path = [[NSBundle mainBundle] pathForResource:@"myvideo" ofType:@"m4v"];
NSURL *url = [NSURL fileURLWithPath:path];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:url];
[player play];
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
Device type check (0) | 2015.07.09 |
---|---|
CATransition - UINavigation push animation (0) | 2015.07.09 |
UIAlertView - TextField 추가 (0) | 2015.07.09 |
NSString - Base64 Encoding/Decoding (0) | 2015.06.30 |
UISwitch - 상태값 가져오기 (0) | 2014.12.04 |
MPMoviePlayerController - 오디오 스트리밍 재생 (0) | 2014.12.04 |
Email 주소 유효성 검사 (0) | 2014.12.02 |
UIWebView - POST request 사용 및 Header 넣기 (0) | 2014.12.02 |
[Deprecated-iOS7] UITextAttributeTextColor (0) | 2014.12.02 |
[APNs, Notification] 알림 설정 (iOS8 SDK 변화) (0) | 2014.10.16 |