Using libcurl with rtsp url - libcurl

I'm writing a small utility to download video using rtsp url. I would like to know if it is possible
to directly download using libcurl given rtsp url.
I know that I can use ffmpeg to write directly to a video file.
But I want to do this using libcurl.

rtsp is a streaming protocol, there is nothing to dowload

Related

play .flv stream video from rtmp URL in android

I am working on upstream and downstream. I upstream video on wowza server. Problem that i am getting is video saved on server with .flv extension is not getting played. To play video URL is:
rtmp://WowzaserverIPAddress:1935/live/test.flv
I searched on how to play .flv file in android. But it is not played. Please help me out how to either save video on wowza server with .mp4 or how to play .flv stream video from rtmp url.
I tried to change the above url with following
rtmp://10.8.23.79:1935/live/test.mp4
But it does not create file.
Please help me out. I am not asking for code but please give some ideas to sort it out.
Thanks in advance
Guys help me out please. suggest me something..
If the file is on your Wowza server it can be used by following these steps:
Make sure server is set up to play VOD: http://www.wowza.com/forums/content.php?35-How-to-play-a-video-on-demand-file)
Copy the file into the Wowza server's content directory, [install-dir]/content.
It should work then with the url rtmp://wowza-ipadress:1935/vod/flv:test.flv
Good Luck.

HTTP Live Streaming like UStream and Wowza GoCoder app

I have to upload live video to wowza server. I don't have any idea about live streaming. I read apple document for HTTP Live streaming still I am not getting how to live stream video. Some one please help me on this.
Using AVFoundation I can get video Buffer/frames while recording
I am trying to upload the frames to the server. How to do the uploading part?
You should read this support article from Wowza to see what to do: http://www.wowza.com/forums/content.php?37-How-to-publish-and-play-a-live-stream-(MPEG-TS-based-encoder)

Is there any API or JNI wrapper that enables Glass to decode a raw H.264 video stream over a network?

We are wondering if there is any API or JNI wrapper that enables Glass to decode raw H.264 video stream over network?
Our understanding is that API 16 has the MediaCodec api which supports En/Decoding of the H.264 format but since glass runs on API 15, it complains about media class not found.
We have also tried other third party libraries but of no avail. Any help is appreciated, thanks.
It looks like your research is correct. This isn't something that's available as of on Glass a this time.
If this is something that you'd like GDK to support, please let Google know by creating an issue in the official issue tracker.

C++ lib for FTP upload over FTP proxy

I'm trying to write a C++ component to upload a file on a FTP server through a FTP proxy (specified by host/port/user/password).
In a first time I tried using Qt (QNetworkAccessManager/QNetworkProxy) but for an unknown reason it does not work (when I try to upload the same file with FileZilla using the same connection parameters, it works). My code also works when I have no proxy.
In a second time, I tried with libcurl but it seems this lib does not support FTP proxy.
Any suggestion of another C++ lib I could try? or a Win32 (winsock) example?
If you're targeting Windows, you can try using the Windows Internet APIs to implement the FTP client. I'd imagine you'll have an easier time using them rather than manually implement an FTP client atop sockets.
I haven't looked at them, but there seem to be a few samples here.

Tweepy and streaming

im playing with django and tweepy, and im really don't know how i can use this example about Streaming with django
how i can pass the streaming data to my context?
I would suggest that you investigate using websockets for this type of thing, run the linked tweet streaming script as a separate service using django-websocket (or something similar) and push the content back to the open html5 websocket.