Hi Ankit,
There is the “Livu” app which I have read can stream from iPhone.
Hi Randall,
Is this project having a source code available. I am trying to look for the same, but yet no luck.
And I have tried the sample code using “RTMP Communication Library”, but there also when we are sending the streams in array and on Java side, when we are trying to read the same from ADFArray class, like this :
BASE64Decoder decoder = new BASE64Decoder();
byte decodedBytes = decoder.decodeBuffer(streamName);
IVHost vhost = VHostSingleton.getInstance(VHost.VHOST_DEFAULT);
Publisher publisher = Publisher.createInstance(vhost, “ios”);
publisher.setFileExtension(“mp4”);
publisher.setStreamType(“live”);
publisher.publish(“myStream1”, “append”);
AMFPacket amfPacket = new AMFPacket();
amfPacket.addData(decodedBytes, amfPacket.getSize(), decodedBytes.length);
switch (amfPacket.getType())
{
case IVHost.CONTENTTYPE_AUDIO:…
case IVHost.CONTENTTYPE_VIDEO:
case IVHost.CONTENTTYPE_DATA:
}
But the output is comming as IVHost. CONTENTTYPE_FUNCTION0
Thanks
Ankit