ffmpeg throwing “Output file #0 does not contain any stream” when trying to make a slideshow out of images

Your present command doesn’t specify any input, so use phantomjs runner.js | ffmpeg -f image2pipe -i pipe:.png -c:a copy -c:v libx264 -f flv rtmp://localhost/mystream There’s no audio input, so setting an audio codec is pointless. If your output needs an audio stream, use phantomjs runner.js | ffmpeg -f image2pipe -i pipe:.png -f lavfi -i anullsrc … Read more

Streaming live camera video from iOS (iPhone/iPad) to remote PC / server

I have developed such a library, and you can find it at github.com/jgh-/VideoCore I am updating this answer because I have created a simplified iOS API that will allow you to easily setup a Camera/Mic RTMP session. You can find it at https://github.com/jgh-/VideoCore/blob/master/api/iOS/VCSimpleSession.h. Additionally, VideoCore is now available in CocoaPods.