Streaming to adobe media server [closed] - streaming

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.

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.

Use iPhone camera as webcam on PC [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 would like to use the iphone camera as webcam on PC programatically.
Is this possible ?
If it is possible can anyone suggest me any example or giv me few ideas on how to go foward on this.
Thanks
Abhishek
This is how I can imagine the story (sorry, it's not trivial to implement, but at least it's certainly possible):
Use the AVFoundation and CoreVideo frameworks to capture live video data from the device;
Open a TCP/IP connection (you can use raw BSD sockets, CFNetwork, etc.) and stream the video data through that connection;
Write a client application that runs on the PC, receives the data and reconstructs it on the screen (for example). There are various libraries perfectly usable for media playback... You can also make a kernel module if you're using Linux or a driver if you're using Windows and make your client application pretend to be a webcam.

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

streaming channels with iphone? [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 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!!

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.