Hello all,
We are working on live streaming application. In this application we have to upstream video on server and downstream on android device. We googled alot on live streaming. Finally we found Wowza server. We are successfully able to upstream video on wowza server. The protocol that we are using is RTMP. In output we always get .flv file.
URL IS:-
rtmp://[wowzaIpAddress]:1935/live/test.flv
Output:-
test.flv
But the problem is we are not able to play .flv file in android devices. We searched google alot but did not find any satisfactory result.
Second thing that we can do is we want to save .mp4 file on wowza server, for this i change format from .flv to .mp4
URL is:-
rtmp://[wowzaIpAddress]:1935/live/test.mp4
In output application got crashed.
We tried one thing more
URL is:-rtmp://[wowzaIpAddress]:1935/live/test.mp4
and in FFmpegFrameRecorder we set format .flv as shown below
recorder.setFormat(“flv”);
In result we get two files .mp4 having following names
a)test.mp4
b)test.mp4.tmp
Please help us to sort it out.
Thanks
We .