streaming channels with iphone? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
can someone help me in how to use MPMoviePlayerController for streaming channels.
My code works well with the Apple links. Now how can I make it for streaming live tv channels. Thanks

Solved the issue partly. The solution is:
Make sure you are member of Apple developer program. Login into your apple account and download
MakeRefMovie software from here. Put it on your server. It will open any streaming channel just by giving the link of the channel and it will create .mov file. Access the .mov files from any Apple device and present it through MPMoviePlayerController. Set the URL of MPMoviePlayerController to .mov file on your server. It will work!!

Related

Music streaming service for iPhone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am working on making an iphone music app. I am wondering from where does apps like Songza, Pandora get their Music Stream from and How can I implement such music stream in my app. Any help is greatly appreciated.
If you are interested in HTTP streaming then take a look at the HTTP Live Streaming Resources from Apple.
There is a sample project on GitHub for a streaming audio player here.

How to Play music in my ios application from a link ( soundcloud ) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
The below is the link where I uploaded my song file "https://soundcloud.com/smkumar84/summa". From here I need to play the music in my iphone application.
How can I do it in my iphone app?
Check out the api for ios from soundcloud. and Apple's Guide on HTTP streaming.
The soundcloud API supports
Getting list of sounds
Playing Sounds
Uploading Sounds
The Apple's example on HTTP live streaming can be utilizes to stream Audio & Video over HTTP. This is also applicable for an ordinary server without much setup.
You can use AVPlayer/AVAudioPlayer for playing songs.
Check AVAudioPlayer API's.
https://developer.apple.com/documentation/avfoundation/avaudioplayer

How to make an iOS app for security by using speech recognition? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to make an iPhone app that will record a voice and than whenever the user starts using my app. It will through some keywords to be spoken and app will record those keywords and match the voice of the existing file and the keywords file. So is there any way so that I can make such an application for security purposes?
OpenEars makes it simple for you to add speech recognition and synthesized speech/TTS to your iPhone app quickly and easily. I hope following link helps you
http://www.politepix.com/openears/

Streaming to adobe media server [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i have adobe media server on my laptop. I want to stream videos to it from some other laptop. How can i do this?
You can use Flash Media Encoder ( FME ) on a computer where you capture a videosource ( camera ) to push the stream to FMS.
With vlc you can transcode almost any video format to x264/rtp.
You can develop flash application which will capture the laptop camera and push it tou your server.
Other server software, like WOwza with its "PushToCdn" plugin, can handle a variety of video sources and push them to your server.

Video conference in iPhone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to implement a kind of video conference on the iPhone. I know that the Faceti e API comes available sometime I can't wait for that..
Does somebody know where to start? Or some sample code would be very welcome!
Thanks in advance!
This website listed some source codes of real apps, including a "Two-way video conferencing for iPhone"
I would start reading this guide it contains brief introduction to the video recording.
Briefl just use UIImagePickerController to record a movie.
Encrypt it and transfer it over the network.