Manlio
Manlio

Reputation: 10865

Webcam stream with FFMpeg on iPhone

I'm trying to send and show a webcam stream from a linux server to an iPhone app. I don't know if it's the best solution, but I downloaded and installed FFMpeg on the linux server (following, for those who want to know, this tutorial). FFMpeg is working fine. After a lots of wandering, I managed to send a stream to the client launching

ffmpeg  -s 320x240 -f video4linux2 -i /dev/video0 -f mpegts -vcodec libx264 udp://192.168.1.34:1234

where 192.168.1.34 is the address of the client. Actually the client is a Mac, but it is supposed to be an iPhone. I know the stream is sent and received correctly (tested in different ways).
However I didn't managed to watch the stream directly on the iPhone.
I thought of different (possible) solutions:


I don't know which one of this solution is the best for my purpose. ANY suggestion would be appreciate.


Besides, there's also another problem: I didn't use any segmenter program to send the video. Now, if I'm not getting wrong, segmenter needs to split the source video in smaller/shorter video easier to send. If it is right, then maybe it's not strictly necessary to make things work (may be added later). However, since the server is running under linux, I cannot use Apple's mediastreamsegmeter. May someone suggest an opensource segmenter to use in association with FFMpeg?


UPDATE: I edited my question adding more informations on what I did since now and what my doubts are.

Upvotes: 1

Views: 6082

Answers (4)

FractalDoctor
FractalDoctor

Reputation: 2546

Carson McDonald has implemented an excellent solution for HTTP Live Streaming which he uses from Linux to iOS. He's a user here and his site is Ion Cannon.

See this question for more details.

Upvotes: 1

Mahadevan Sreenivasan
Mahadevan Sreenivasan

Reputation: 1132

Instead of sending the stream as UDP, try sending the stream with RTSP .. MPMoviePlayerController will play it.

Upvotes: 1

Anomie
Anomie

Reputation: 94794

MPMoviePlayerController can handle streaming video, try just handing it the URL directly.

As for the video not playing even when it is saved, are you sure the video is in a supported format? Quoth the documentation:

This class plays any movie or audio file supported in iOS. This includes both streamed content and fixed-length files. For movie files, this typically means files with the extensions .mov, .mp4, .mpv, and .3gp and using one of the following compression standards:

  • H.264 Baseline Profile Level 3.0 video, up to 640 x 480 at 30 fps. (The Baseline profile does not support B frames.)
  • MPEG-4 Part 2 video (Simple Profile)

Try using -vcodec libx264 -vpre baseline on your ffmpeg command line to use the baseline profile.

Upvotes: 1

Related Questions