I am using MPMoviePlayerViewController
for playing the sound and video. I am streaming the song from the url. It is working fine.But the problem is, MPMoviePlayerViewController
is not showing the time progress for the song I playing. That bar is disabled. How to make the time progress bar active? I have following code to play the song.
mediaPlayerController = [[MPMoviePlayerViewController alloc] initWithContentURL:songUrl];
[self presentModalViewController:mediaPlayerController animated:YES];
[[mediaPlayerController moviePlayer] play];