IOS calls music playback and video player

Source: Internet
Author: User

Music playback

NSString *path = [[nsbundlemainbundle] pathforresource:@ " premeditated " ofType:@ "MP3"];

if (path) {

nsurl *url = [nsurlfileurlwithpath:p Ath];

player= [[avaudioplayeralloc]initwithcontentsofurl: URL Error:nil];

[playersetdelegate:Self];

player. Volume =1;

player. Pan =1;

player. numberofloops =-1;

if ([playerpreparetoplay]) {

NSLog (@ "preparetoplay:%@", Path);

[playerplay];

} Else {

NSLog(@ "no preparetoplay");

}

//[player release];

}

Be sure to note the player's reference, if you request a temporary variable directly inside the function, then the player will be released when the function is executed, and if it needs to be used inside the function, sleep, but it will block the main thread's operation.

Video player

Nsurl * Movieurl = [nsurlurlwithstring:@ "http://v.youku.com/player/ Getrealm3u8/vid/xnduwnjc4mza4/type/video.m3u8 "];

mpmovieplayerviewcontroller *player = [[mpmovieplayerviewcontrolleralloc] Initwithcontenturl: Movieurl];

[self presentmovieplayerviewcontrolleranimated:p layer];


IOS calls music playback and video player

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.