How to create RTSP player in iPhone - ios

Is it possible to view video stream (H.264 live feed) over RTP/RTSP in native iPhone ? If not,is it possible to write an application and then I have rtsp url how to get streaming video in iPhone.
"rtsp://192.168.2.148:1935/live/test.stream"
I got code Streaming Video in Android using above url, but now I tried iPhone I don't know
which frameworks are used and how to get Video Streaming please give me any Idea

I have the same issue,and I found an excellent ffmpeg player for iOS, IJKPlayer.
You can change the build script in config/module.sh to support RTSP.
If you want to play rtsp real time stream.I have already fock another version IJKPlayer to support that.

Yeah Sure. You can do RTSP stream in iPhone but with the help of some libraries. You can use the DFURTSPPlayer for that purpose
https://github.com/durfu/DFURTSPPlayer

Related

how to streaming h.264 video send to WOWZA using rtsp with live555

I am new for capturing video, encoding in h.264, WOWZA server.
I have checked so many solutions on stack-overflow and google but not get perfect that I can use.
Basic functionality:
continue capturing from iPhone (Video should be in h.264 encoded)
using live555 library, generate RTSP url
send that same video to WOWZA server for live-broadcast video
Note: Video should be continuously play on server from iphone device without major delay.
My Question:
How to capture video which is encoded in h.264 format?
How to integrate live555 library to VideoCapture class for generate RTSP URL?
How to send that video to WOWZA using RTSP protocol?
For capturing video on ios am using AV Framework.
Please correct me if my way of think is wrong.
Thanks,
Punita
I have successfully compile both MobileVLCKit and Live555 library in same project.
Solution:
I have re-compile both library with same Architecture (armv7 & armv7s) and generate DynamicFramework.
And Then used into same xcode project.

How to play webm file in iOS video player

I want to give support of webm file in iOS , but iOS doesn't support this format to play a video. i Even tried to play it through HTML5 video tag but safari doesn't support webm format in HTML5 video tag that means i also cant make it work through UIWebView. But i have seen an app that is supporting this format in their media player , that means there should be some way.
Thanks in advance for help!
Have you tried integrating MediaVLCKit by VLC?
As per VLC for an iOS device: The app claims to be able to play a veritable cornucopia of different video formats, including .mkv, .vob, .wmv, and WebM .
PFA link for VLC for iOS 2.5.1 which includes MediaVLCKit library as well.
Hope this works :)

Vuforia Live Streaming

I'm using vuforia SDK in IOS for showing video on markers. SDK supports only Local videos because it uses AVAssetReader(it supports only local video) to decode the video. But my requirement is to support live streaming. I'm looking for alternative. How can we decode video without using AVAseetReader??
Can we make use of FFMPeg library to achieve this?? please reply. i'm a new bee.

Sound Manager 2 or JPlayer for Android and iOS

Can someone please advise me which one is better for Mobile App, targeting Android as well as iOS, using JQuery Mobile?
I need to run mp3 audios as well as rtmp live stream.
Thanks
MP3 audios will run good in both libraries but not RTMP live streams because RTMP protocol is flash based streaming.
Mobile webapp for iOS and Android will not play rtmp streams.
SoundManager 2 RTMP feature (needs Flash player 9): http://www.schillmania.com/projects/soundmanager2/doc/#smsound-serverurl

How to play mp4 in iOS Flex application

I'm developing a Flex application to iOS devices and I can't find a way to play mp4 video inside it...
I know it works with navigate to URL command but it's open browser and then the vieo player, which is not what I'm intending...
Thanks
If you work with audio and video streaming, one of the worst limitation of AIR 2.6 for iOS is that it is not possible to stream video encoded in H.264 (and audio in AAC) inside your AIR application. AIR 2.6 for iOS supports NetConnection and NetStream but can decode only Spark, VP6, MP3, NellyMoser and Speex formats. So no H.264 and no AAC.
I've tried play .flv video fine in flex app on iOS.

Resources