Hi
Im trying to write proper application on N95 to capture video in available encodings for N95.
To detects which codecs available for capturing I'm using
String[] act = Manager.getSupportedContentTypes("capture");
so results is
video/3gpp
video/3gpp2
video/mp4
so my locators were
capture://video?encoding=3gpp
capture://video?encoding=3gpp2
capture://video?encoding=mp4
All the time Im getting MediaException : Not supported
Only way to make video is using
capture://video
then it's creating player. When I tried to detect content type it detected as video/3gpp.
Any ideas how to use all supported encodings?
Thanks

Reply With Quote

