Hi All,
I've been developing a RTSP app for Asha 311. I am using platform request to call rtsp url.
The problem is the RTSP url cannot be played with error message "Video format not supported".
It was using mp4 video formats. I've tried to print the supported rtsp content type with some apps using these lines of codes:
I run the code in the device and it shows that Asha 311 support for:Code:String rtsp[] = Manager.getSupportedContentTypes("rtsp"); if (rtsp != null && rtsp.length > 0) { append("RTSP protocol supported:\n"); for(int i = 0;i<rtsp.length;i++){ append(rtsp[i] + "\n"); } }
I wonder why can my rtsp link cannot be played because it returns that mp4 streaming are already supported by the device. Also I still don't know what the different between application/3gp vs video/3gp. Does that mean i can only call platformRequest for 3gp format?Code:application/octet-stream video/3gpp video/3gp application/3gp video/3gpp2 video/mp4 video/x-msvideo
We then tried to provide 3gp format for the rtsp url. And turns out the problem now, the device keep saying "Not enough bandwidth, Quality less than normal".
Is there anyone have faced the same problem?
How to solve this?
Really appreaciate for your future help.
---
Regards,
Ray Rizaldy

Reply With Quote

