IOS plays local video files in the app

Source: Internet
Author: User

You can use MPMoviePlayerController to play local video files

1. Add the Mediaplayer framework and #import <MediaPlayer/MediaPlayer.h> in Viewcontroller

2. Drag the video file to Xcode

3. Get the path where the file is stored

Nsstring*thepath=[[nsbundle Mainbundle] pathforresource:@ "Yourvideo" oftype:@ "MOV"]; Nsurl*theurl=[nsurl Fileurlwithpath:thepath];

4. Initialize the MoviePlayer with this path

Self.movieplayer=[[mpmovieplayercontroller alloc] Initwithcontenturl:theurl]; [Self.moviePlayer.view Setframe:cgrectmake (40, 197, 240, 160)]; [Self.movieplayer Preparetoplay]; [Self.movieplayer Setshouldautoplay:no]; and other options can look through the documentation. [Self.view AddSubview:self.moviePlayer.view];

5. What to do after adding playback control

[[Nsnotificationcenter Defaultcenter] addobserver:self selector: @selector (playbackfinished:) Name: Mpmovieplayerplaybackdidfinishnotification Object:movieplayer]; Playbackfinished'll be your own method.


Translated from:

http://stackoverflow.com/a/9802543/3458781



IOS plays local video files in the app

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.