Stream video from ftp server to iphone? - objective-c

I tried to search much but I can't figure out any tut or anything to do that. I only see stream video from server to iphone through http protocol.
I want to ask if ftp can stream video from ftp server to iphone ? And if the answer is YES then how to do ?
Please suggest me anything to do that.
Thank in advance.

Have you gone through this Apple FTP Example.
Hope this will give you some clue how to work with FTP

I realized that is impossible to stream video from ftp server to iphone. The APIs does not support this.
Thank you for your interest in the matter.

Related

red5 rtmp stream not smooth

I get a problem using red5 server.
I use red5 server (1.0.5 version) to play an mp4 file with RTMP streeam.
However, the video is not smooth; at first, I thought it could be caused by the bandwidth, then I run red5 on localhost, the video is not smooth there either.
The mp4 file is in streams folder, and I use JW player to play it. What's more the audio is OK.
Because I am a beginner with red5 and I even don't know where to start to solve the problem, so any help or suggestion will be appreciated, Thanks!
Here is the
log
ps: forgive me for my poor English。

Lot of noise in webrtc audio/video

I have developed a video chat app with webrtc api. I have fallowed the steps given by webrtc. Video working fine. But there is a lot of noice from my laptop. sound is not clear.
But in google developed demo site https://apprtc.appspot.com/ works with out any noise(better compare with us).
I fallowed the same procedure what they did. But no luck.
But in headset this echo is not hearing. This happens when we haering the sound from laptop without headset.
Please give me some suggestion on this.
Thanks in advance. Looking foward for the response.
Give a look at this demo webrtc conferencing supports four callers. This link describes the implentation details architecture

Download listener in symbian60

Is it possible to monitor the HTTP download operation in symbian.
I mean is it possible to know the successful download in symbian.
I am a new geek. Please help me.
Provide some suggestion.
I am using Symbian 60.
Check out RConnectionMonitor class.
(P.S. There is no point in starting to learn Symbian - it's dead platform)

connect to rtmp server from objective C

How do i use rtmp protocol for continously watch the server for any changes and when i upload a file to server from my cocoa desktop application?
its already there in lcds.
I need to notify the user of the app when some new file is uploaded to the ftp. I need to connected to rtmp so that when i upload a file other need to get notification about the file i uploaded. it should a real time.
is there any suggestions or alternatives? it would be a great help.
Thanks a lot in advance :)

File transfer over the air with iPad

I have an iPad app that outputs a PDF file that needs to be uploaded to a remote server. What are my options here? Is there a sFTP or FTP implementation for iOS that would help me achieve this? Can it be done using other protocol?
Thanks!
FTP Client Wrapper in Objective-C for iPhone
ConnectionKit (might not be iOS compatible)
How about HTTP? http://www.cocoadev.com/index.pl?HTTPFileUpload
EDIT:
SCP using libssh2? http://www.libssh2.org/examples/scp_write.html
This on costs money: http://www.chilkatsoft.com/ssh-sftp-objc.asp
Haven't tried it myself yet.
(And a duplicate on SO: Upload file from iphone using SFTP protocol)