Questions tagged [mpmediapickercontroller]

176 questions
0
votes
2 answers

How to show video files in UITableView with image of video?

I could access mediafiles with MPMediaPickerController, I need to list down all videos I selected from picker. MPMoviePlayerViewController is being used and I have added a player to every cell, but I couldn't use it for more than one cell. I think!…
0
votes
1 answer

MPMediaPickerController - deselecting after selecting in error

Problem is evident in both the code I've written and Apple's sample AddMusic code (http://developer.apple.com/iphone/library/samplecode/AddMusic/index.html runs on Device Only). Once you open MPMediaPickerController when you click on an item it…
NeilInglis
  • 3,431
  • 4
  • 30
  • 31
0
votes
1 answer

Picking video from application and copy them in document directory

I was using UIImagePickerController to select the video files from Image Gallery of IPhone using imagePicker.mediaTypes = [NSArray arrayWithObject:(NSString *)kUTTypeMovie]; and that code is working fine and picker shows me all available videos in…
0
votes
1 answer

How to play two audio files from the iPod library simultaneously?

I know that the MediaPickerConroller can be used to access the iPod library, however I'm not sure that it can play two songs at the same time. AVFoundation would allow this, but then how do you get AVFoundation to access the library? Is there an…
0
votes
0 answers

MPMediaPickerController | Access iPod library's audio files (and no videos)

I am working on a music player app, in which user can create custom playlists. So I want to show a MPMediaPickerController populated with iPod's library audios. The issue am facing is that MPMediaPickerController also shows music videos along with…
Manish Ahuja
  • 4,509
  • 3
  • 28
  • 35
-1
votes
1 answer

How to reduce the itunes music size in swift?

I am working with accessing Itunes Library music. I stored a selected song in my Document directory. The song's size is 13MB, and I need to reduce the song size so that I can easily send it to the server. How do I to it? Here is my overall…
user6777252
-1
votes
1 answer

Possible to disable Search in MPMediaPickerController?

Using an instance of MPMediaPickerController to grab a song as background music to an app I am making. Works great but whenever the search function within the MediaPicker is used, it causes a lag in its presentation every time it is opened after.…
vinchenzio
  • 76
  • 5
-1
votes
1 answer

SWIFT - MPMediaPickerController -init error

I have two view controllers, one with mediapicker and one with the actual player. so i done this code: first view import UIKit import MediaPlayer class WelcomeView: UIViewController, MPMediaPickerControllerDelegate { override func viewDidLoad()…
-1
votes
3 answers

Change NavigationBar Style in MPMediaPickerController

I am having some trouble changing the navigation bar of the MPMediaPickerController. I understand that the Apple Documentation says that: This class does support subclassing. The view hierarchy for this class is private; do not modify the view…
Glavid
  • 1,071
  • 9
  • 19
-1
votes
1 answer

How to upload the ios audio to server?

I have tried to upload the audio files to server. And I have using MPMedia Picker view in list audio, when I am going select the audio I will upload to server(http), How can I do this. Any one can provide any sample tutorial or sample code. I have…
Mohan.C
  • 247
  • 4
  • 13
-2
votes
2 answers

How to play music in background in Swift with MPMediaPickerController chosen songs?

I am trying to allow the user to pick a song from their library and play it across different view controllers. I am able to pick songs currently and play them, but I don't know how to play them in the background. Thanks! class ViewController:…
1 2 3
11
12